Merge branch 'main' into feature/ctrl-k-for-hyperlink

This commit is contained in:
Amruth Pillai
2024-03-10 10:07:26 +01:00
committed by GitHub
110 changed files with 10390 additions and 7152 deletions

View File

@ -93,3 +93,9 @@ Reactive Resume is packaged and distributed using the [MIT License](/LICENSE.md)
_By the community, for the community._ _By the community, for the community._
A passion project by [Amruth Pillai](https://www.amruthpillai.com/) A passion project by [Amruth Pillai](https://www.amruthpillai.com/)
<p>
<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>

View File

@ -84,13 +84,13 @@ const Summary = () => {
</div> </div>
<div className="mb-2 hidden items-center gap-x-2 text-center font-bold text-primary group-[.sidebar]:flex"> <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> <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>
<main className={cn("relative space-y-2", "border-l border-primary pl-4")}> <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 <div
className="wysiwyg" className="wysiwyg"
@ -167,9 +167,9 @@ const Section = <T,>({
</div> </div>
<div className="mx-auto mb-2 hidden items-center gap-x-2 text-center font-bold text-primary group-[.sidebar]:flex"> <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> <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>
<div <div
@ -207,7 +207,7 @@ const Section = <T,>({
{url !== undefined && <Link url={url} />} {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> </div>
); );
})} })}

View File

@ -99,7 +99,7 @@ const Rating = ({ level }: RatingProps) => (
{Array.from({ length: 5 }).map((_, index) => ( {Array.from({ length: 5 }).map((_, index) => (
<div <div
key={index} 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> </div>
@ -231,7 +231,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -253,7 +253,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -276,7 +276,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -297,7 +297,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -343,7 +343,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -364,7 +364,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -401,7 +401,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -442,7 +442,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -100,7 +100,7 @@ const Rating = ({ level }: RatingProps) => (
<div <div
key={index} key={index}
className={cn( 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", level > index && "bg-primary group-[.sidebar]:bg-background",
)} )}
/> />
@ -200,7 +200,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -222,7 +222,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -277,7 +277,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -298,7 +298,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -344,7 +344,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -365,7 +365,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -402,7 +402,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -443,7 +443,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -46,7 +46,7 @@ const Header = () => {
<i className="ph ph-bold ph-map-pin text-primary" /> <i className="ph ph-bold ph-map-pin text-primary" />
<div>{basics.location}</div> <div>{basics.location}</div>
</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} {basics.phone}
</a> </a>
</div> </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 && ( {basics.email && (
@ -69,13 +69,13 @@ const Header = () => {
{basics.email} {basics.email}
</a> </a>
</div> </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) && ( {isUrl(basics.url.href) && (
<> <>
<Link url={basics.url} /> <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) => ( {basics.customFields.map((item) => (
@ -84,7 +84,7 @@ const Header = () => {
<i className={cn(`ph ph-bold ph-${item.icon}`, "text-primary")} /> <i className={cn(`ph ph-bold ph-${item.icon}`, "text-primary")} />
<span>{[item.name, item.value].filter(Boolean).join(": ")}</span> <span>{[item.name, item.value].filter(Boolean).join(": ")}</span>
</div> </div>
<div className="bg-text h-1 w-1 rounded-full last:hidden" /> <div className="bg-text size-1 rounded-full last:hidden" />
</Fragment> </Fragment>
))} ))}
</div> </div>
@ -258,7 +258,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -280,7 +280,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -303,7 +303,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -324,7 +324,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -370,7 +370,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -391,7 +391,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -428,7 +428,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -469,7 +469,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -227,7 +227,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -249,7 +249,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -272,7 +272,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -293,7 +293,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -339,7 +339,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -360,7 +360,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -397,7 +397,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -438,7 +438,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -205,7 +205,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -227,7 +227,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -282,7 +282,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -303,7 +303,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -349,7 +349,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -370,7 +370,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -407,7 +407,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -448,7 +448,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -94,7 +94,7 @@ const Summary = () => {
<div className="col-span-3"> <div className="col-span-3">
<div className="relative"> <div className="relative">
<hr className="mt-3 border-primary pb-3" /> <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>
<div <div
@ -162,7 +162,7 @@ const Section = <T,>({
<div className="col-span-3"> <div className="col-span-3">
<div className="relative"> <div className="relative">
<hr className="mt-3 border-primary" /> <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> </div>
</div> </div>

View File

@ -128,7 +128,7 @@ const Rating = ({ level }: RatingProps) => (
{Array.from({ length: 5 }).map((_, index) => ( {Array.from({ length: 5 }).map((_, index) => (
<div <div
key={index} 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> </div>
@ -226,7 +226,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -248,7 +248,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -271,7 +271,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -292,7 +292,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -338,7 +338,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -359,7 +359,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -396,7 +396,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -437,7 +437,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -49,7 +49,7 @@ const Header = () => {
<i className="ph ph-bold ph-map-pin" /> <i className="ph ph-bold ph-map-pin" />
<div>{basics.location}</div> <div>{basics.location}</div>
</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 && ( {basics.phone && (
@ -60,7 +60,7 @@ const Header = () => {
{basics.phone} {basics.phone}
</a> </a>
</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.email && ( {basics.email && (
@ -71,13 +71,13 @@ const Header = () => {
{basics.email} {basics.email}
</a> </a>
</div> </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) && ( {isUrl(basics.url.href) && (
<> <>
<Link url={basics.url} /> <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) => ( {basics.customFields.map((item) => (
@ -86,7 +86,7 @@ const Header = () => {
<i className={cn(`ph ph-bold ph-${item.icon}`)} /> <i className={cn(`ph ph-bold ph-${item.icon}`)} />
<span>{[item.name, item.value].filter(Boolean).join(": ")}</span> <span>{[item.name, item.value].filter(Boolean).join(": ")}</span>
</div> </div>
<div className="h-1 w-1 rounded-full bg-background last:hidden" /> <div className="size-1 rounded-full bg-background last:hidden" />
</Fragment> </Fragment>
))} ))}
</div> </div>
@ -258,7 +258,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -280,7 +280,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -303,7 +303,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -324,7 +324,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -370,7 +370,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -391,7 +391,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -428,7 +428,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -469,7 +469,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(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="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -100,7 +100,7 @@ const Rating = ({ level }: RatingProps) => (
{Array.from({ length: 5 }).map((_, index) => ( {Array.from({ length: 5 }).map((_, index) => (
<div <div
key={index} 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> </div>
@ -230,7 +230,7 @@ const Experience = () => {
return ( return (
<Section<Experience> section={section} urlKey="url" summaryKey="summary"> <Section<Experience> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.company}</div> <div className="font-bold">{item.company}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -252,7 +252,7 @@ const Education = () => {
return ( return (
<Section<Education> section={section} urlKey="url" summaryKey="summary"> <Section<Education> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.institution}</div> <div className="font-bold">{item.institution}</div>
<div>{item.area}</div> <div>{item.area}</div>
@ -275,7 +275,7 @@ const Awards = () => {
return ( return (
<Section<Award> section={section} urlKey="url" summaryKey="summary"> <Section<Award> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.title}</div> <div className="font-bold">{item.title}</div>
<div>{item.awarder}</div> <div>{item.awarder}</div>
@ -296,7 +296,7 @@ const Certifications = () => {
return ( return (
<Section<Certification> section={section} urlKey="url" summaryKey="summary"> <Section<Certification> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.issuer}</div> <div>{item.issuer}</div>
@ -342,7 +342,7 @@ const Publications = () => {
return ( return (
<Section<Publication> section={section} urlKey="url" summaryKey="summary"> <Section<Publication> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.publisher}</div> <div>{item.publisher}</div>
@ -363,7 +363,7 @@ const Volunteer = () => {
return ( return (
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary"> <Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.organization}</div> <div className="font-bold">{item.organization}</div>
<div>{item.position}</div> <div>{item.position}</div>
@ -400,7 +400,7 @@ const Projects = () => {
return ( return (
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords"> <Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>
@ -441,7 +441,7 @@ const Custom = ({ id }: { id: string }) => {
keywordsKey="keywords" keywordsKey="keywords"
> >
{(item) => ( {(item) => (
<div className="flex items-center justify-between"> <div className="flex items-start justify-between">
<div className="text-left"> <div className="text-left">
<div className="font-bold">{item.name}</div> <div className="font-bold">{item.name}</div>
<div>{item.description}</div> <div>{item.description}</div>

View File

@ -5,14 +5,14 @@
"esModuleInterop": false, "esModuleInterop": false,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"strict": true, "strict": true,
"types": ["vite/client"] "types": ["vite/client"],
}, },
"files": [], "files": [],
"include": [], "include": [],
"references": [ "references": [
{ {
"path": "./tsconfig.app.json" "path": "./tsconfig.app.json",
} },
], ],
"extends": "../../tsconfig.base.json" "extends": "../../tsconfig.base.json",
} }

View File

@ -78,4 +78,3 @@
}, },
"tags": ["frontend"] "tags": ["frontend"]
} }

View File

@ -60,7 +60,7 @@ export const LocaleCombobox = ({ value, onValueChange }: Props) => {
> >
<Check <Check
className={cn( className={cn(
"mr-2 h-4 w-4 opacity-0", "mr-2 size-4 opacity-0",
value === original.locale && "opacity-100", value === original.locale && "opacity-100",
)} )}
/> />
@ -101,7 +101,7 @@ export const LocaleComboboxPopover = ({ value, onValueChange }: Props) => {
</span> </span>
<CaretDown <CaretDown
className={cn( 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", open && "rotate-180",
)} )}
/> />

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: af\n" "Language: af\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Afrikaans\n" "Language-Team: Afrikaans\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: am\n" "Language: am\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Amharic\n" "Language-Team: Amharic\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ar\n" "Language: ar\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-03 00:07\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Arabic\n" "Language-Team: Arabic\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@ -150,7 +150,7 @@ msgstr "يمكن لأي شخص لديه هذا الرابط مشاهدة وتن
msgid "API Key" msgid "API Key"
msgstr "مفتاح واجهة برمجة التطبيقات (API)" 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?" msgid "Are you sure you want to delete this item?"
msgstr "هل أنت متأكد من أنك تريد حذف هذا العنصر؟" msgstr "هل أنت متأكد من أنك تريد حذف هذا العنصر؟"
@ -235,7 +235,7 @@ msgstr "بنيت باستخدام"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "من قبل المجتمع، من أجل المجتمع." msgstr "من قبل المجتمع، من أجل المجتمع."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "انسخ الرابط للسيرة الذاتية"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "نسخ إلى الحافظة" msgstr "نسخ إلى الحافظة"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "إنشاء" msgstr "إنشاء"
@ -328,7 +328,7 @@ msgstr "إنشاء"
msgid "Create a new account" msgid "Create a new account"
msgstr "إنشاء حساب جديد" msgstr "إنشاء حساب جديد"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "إنشاء عنصر جديد" msgstr "إنشاء عنصر جديد"
@ -377,15 +377,15 @@ msgstr "داكن"
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "التاريخ أو النطاق الزمني" msgstr "التاريخ أو النطاق الزمني"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "حذف"
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "الوصف" msgstr "الوصف"
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bg\n" "Language: bg\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Bulgarian\n" "Language-Team: Bulgarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bn\n" "Language: bn\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Bengali\n" "Language-Team: Bengali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "গোপন করা" msgstr "গোপন করা"
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "মার্চ ২০২৩ - বর্তমান" msgstr "মার্চ ২০২৩ - বর্তমান"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "এমআইটি লাইসেন্স" msgstr "এমআইটি লাইসেন্স"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "OpenAI ইন্টিগ্রেশন"
msgid "Options" msgid "Options"
msgstr "বিকল্পসমূহ" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr "প্রতিটি জীবনবৃত্তান্তের(resu
msgid "Phone" msgid "Phone"
msgstr "ফোন" msgstr "ফোন"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ca\n" "Language: ca\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Catalan\n" "Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: cs\n" "Language: cs\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: da\n" "Language: da\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-14 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Danish\n" "Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -20,7 +20,7 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
msgid "You have enabled two-factor authentication successfully." 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 #: apps/client/src/pages/home/sections/features/index.tsx:57
msgid "{templatesCount} resume templates to choose from" 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" msgid "API Key"
msgstr "API nøgle" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Er du sikker på, at du vil slette dette element?" msgstr "Er du sikker på, at du vil slette dette element?"
@ -235,7 +235,7 @@ msgstr "Lavet med"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Af fællesskabet, for fællesskabet." msgstr "Af fællesskabet, for fællesskabet."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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" msgid "Copy to Clipboard"
msgstr "Kopiér til Udklipsholder" msgstr "Kopiér til Udklipsholder"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Opret" msgstr "Opret"
@ -328,7 +328,7 @@ msgstr "Opret"
msgid "Create a new account" msgid "Create a new account"
msgstr "Opret en ny konto" msgstr "Opret en ny konto"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Opret et nyt emne" msgstr "Opret et nyt emne"
@ -377,15 +377,15 @@ msgstr "Mørk"
msgid "Date" msgid "Date"
msgstr "Dato" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Dato eller datointerval" msgstr "Dato eller datointerval"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Slet"
msgid "Delete Account" msgid "Delete Account"
msgstr "Slet Konto" msgstr "Slet Konto"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Beskriveslse" msgstr "Beskriveslse"
@ -462,7 +462,7 @@ msgstr "Download PDF"
msgid "Downloads" msgid "Downloads"
msgstr "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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Downloads"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplikér" 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" msgid "Duplicate an existing item"
msgstr "Duplikér et eksisterende element" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Skjult" msgstr "Skjult"
@ -788,10 +788,10 @@ msgstr "anders.andersen@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Nøgleord" msgstr "Nøgleord"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Brev" msgstr "Brev"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Niveau" msgstr "Niveau"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON CV osv."
msgid "List" msgid "List"
msgstr "Liste" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Marts 2023 - nutid" msgstr "Marts 2023 - nutid"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT-licens" msgstr "MIT-licens"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "OpenAI-integration"
msgid "Options" msgid "Options"
msgstr "Indstillinger" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "eller fortsæt med" msgstr "eller fortsæt med"
@ -1030,7 +1030,7 @@ msgstr "Personlige noter til hvert CV"
msgid "Phone" msgid "Phone"
msgstr "Telefon" msgstr "Telefon"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Foto af Patrick Tomasso" msgstr "Foto af Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Rig på funktioner, ikke på priser."
msgid "Rounded" msgid "Rounded"
msgstr "Afrundet" msgstr "Afrundet"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Tema"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Der opstod en fejl ved forbindelsen til browseren. Sørg for, at 'chrome' kører og er tilgængelig." msgstr "Der opstod en fejl ved forbindelsen til browseren. Sørg for, at 'chrome' kører og er tilgængelig."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Denne handling kan annulleres ved at klikke på fortryd-knappen i den flydende værktøjslinje." msgstr "Denne handling kan annulleres ved at klikke på fortryd-knappen i den flydende værktøjslinje."
@ -1531,7 +1531,7 @@ msgstr "Hvis du låser et CV op, kan du ændre det igen."
msgid "Unverified" msgid "Unverified"
msgstr "Ikke verificeret" msgstr "Ikke verificeret"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Opdater et eksisterende element" msgstr "Opdater et eksisterende element"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Hvad er nyt i den seneste version" msgstr "Hvad er nyt i den seneste version"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter." msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter."
@ -1688,4 +1688,3 @@ msgstr "Zoom ind"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Zoom ud" msgstr "Zoom ud"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: de\n" "Language: de\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-28 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: German\n" "Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "Jeder, der den Link hat, kann den Lebenslauf ansehen und herunterladen.
msgid "API Key" msgid "API Key"
msgstr "API-Schlüssel" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Sicher, dass Du diesen Eintrag löschen möchtest?" msgstr "Sicher, dass Du diesen Eintrag löschen möchtest?"
@ -235,7 +235,7 @@ msgstr "Gebaut mit"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Von der Gemeinschaft, für die Gemeinschaft." msgstr "Von der Gemeinschaft, für die Gemeinschaft."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "Link zum Lebenslauf kopieren"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "In die Zwischenablage kopieren" msgstr "In die Zwischenablage kopieren"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Erstellen" msgstr "Erstellen"
@ -328,7 +328,7 @@ msgstr "Erstellen"
msgid "Create a new account" msgid "Create a new account"
msgstr "Neues Konto erstellen" msgstr "Neues Konto erstellen"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Neuen Eintrag erstellen" msgstr "Neuen Eintrag erstellen"
@ -377,15 +377,15 @@ msgstr "Dunkel"
msgid "Date" msgid "Date"
msgstr "Zeitraum" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Darum oder Zeitraum" 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Löschen"
msgid "Delete Account" msgid "Delete Account"
msgstr "Konto löschen" msgstr "Konto löschen"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Beschreibung" msgstr "Beschreibung"
@ -462,7 +462,7 @@ msgstr "PDF herunterladen"
msgid "Downloads" msgid "Downloads"
msgstr "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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Downloads"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplizieren" 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" msgid "Duplicate an existing item"
msgstr "Vorhandenen Eintrag duplizieren" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Ausgeblendet" msgstr "Ausgeblendet"
@ -788,10 +788,10 @@ msgstr "max.mustermann@beispiel.de"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Schlüsselwörter" msgstr "Schlüsselwörter"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "US Letter" msgstr "US Letter"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Niveau" msgstr "Niveau"
@ -852,7 +852,7 @@ msgstr "LinkedIn, Lebenslauf als JSON, etc."
msgid "List" msgid "List"
msgstr "Listenansicht" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "März 2023 Heute" msgstr "März 2023 Heute"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT Lizenz" msgstr "MIT Lizenz"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "OpenAI Integration"
msgid "Options" msgid "Options"
msgstr "Optionen" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "oder anmelden mit" msgstr "oder anmelden mit"
@ -1030,7 +1030,7 @@ msgstr "Persönliche Notizen zu jedem Lebenslauf"
msgid "Phone" msgid "Phone"
msgstr "Telefon" msgstr "Telefon"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Foto: Patrick Tomasso" msgstr "Foto: Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Nur die Anzahl der Funktionen ist hoch, nicht der Preis."
msgid "Rounded" msgid "Rounded"
msgstr "Abgerundet" msgstr "Abgerundet"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Design"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Beim Herstellen der Verbindung zum Browser ist ein Fehler aufgetreten. Bitte stelle sicher, dass 'chrome' läuft wird und erreichbar ist." msgstr "Beim Herstellen der Verbindung zum Browser ist ein Fehler aufgetreten. Bitte stelle sicher, dass 'chrome' läuft wird und erreichbar ist."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Du kannst diese Aktion rückgängig machen, indem Du auf Knopf \"Rückgängig\" in der Symbolleiste unten klickst." msgstr "Du kannst diese Aktion rückgängig machen, indem Du auf Knopf \"Rückgängig\" in der Symbolleiste unten klickst."
@ -1531,7 +1531,7 @@ msgstr "Wenn Du Deinen Lebenslauf entsperrst, kannst Du wieder Änderungen daran
msgid "Unverified" msgid "Unverified"
msgstr "Noch nicht verifiziert" msgstr "Noch nicht verifiziert"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Vorhandenen Eintrag verändern" msgstr "Vorhandenen Eintrag verändern"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Was ist neu in der aktuellsten Version" msgstr "Was ist neu in der aktuellsten Version"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst." msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst."
@ -1688,4 +1688,3 @@ msgstr "Hineinzoomen"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Herauszoomen" msgstr "Herauszoomen"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: el\n" "Language: el\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-04 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Greek\n" "Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Δημιουργία" msgstr "Δημιουργία"
@ -328,7 +328,7 @@ msgstr "Δημιουργία"
msgid "Create a new account" msgid "Create a new account"
msgstr "Δημιουργία νέου λογαριασμού" msgstr "Δημιουργία νέου λογαριασμού"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Δημιουργία νέου στοιχείου" msgstr "Δημιουργία νέου στοιχείου"
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -150,7 +150,7 @@ msgstr "Anyone with this link can view and download the resume. Share it on your
msgid "API Key" msgid "API Key"
msgstr "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?" msgid "Are you sure you want to delete this item?"
msgstr "Are you sure you want to delete this item?" msgstr "Are you sure you want to delete this item?"
@ -235,7 +235,7 @@ msgstr "Built with"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "By the community, for the community." msgstr "By the community, for the community."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "Copy Link to Resume"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "Copy to Clipboard" msgstr "Copy to Clipboard"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Create" msgstr "Create"
@ -328,7 +328,7 @@ msgstr "Create"
msgid "Create a new account" msgid "Create a new account"
msgstr "Create a new account" msgstr "Create a new account"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Create a new item" msgstr "Create a new item"
@ -377,15 +377,15 @@ msgstr "Dark"
msgid "Date" msgid "Date"
msgstr "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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Date or Date Range" msgstr "Date or Date Range"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Delete"
msgid "Delete Account" msgid "Delete Account"
msgstr "Delete Account" msgstr "Delete Account"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Description" msgstr "Description"
@ -462,7 +462,7 @@ msgstr "Download PDF"
msgid "Downloads" msgid "Downloads"
msgstr "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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Downloads"
msgid "Duplicate" msgid "Duplicate"
msgstr "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" msgid "Duplicate an existing item"
msgstr "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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Hidden" msgstr "Hidden"
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Keywords" msgstr "Keywords"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Letter" msgstr "Letter"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Level" msgstr "Level"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON Resume, etc."
msgid "List" msgid "List"
msgstr "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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "March 2023 - Present" msgstr "March 2023 - Present"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT License" msgstr "MIT License"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "OpenAI Integration"
msgid "Options" msgid "Options"
msgstr "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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "or continue with" msgstr "or continue with"
@ -1030,7 +1030,7 @@ msgstr "Personal notes for each resume"
msgid "Phone" msgid "Phone"
msgstr "Phone" msgstr "Phone"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Photograph by Patrick Tomasso" msgstr "Photograph by Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Rich in features, not in pricing."
msgid "Rounded" msgid "Rounded"
msgstr "Rounded" msgstr "Rounded"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Theme"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "This action can be reverted by clicking on the undo button in the floating toolbar."
@ -1531,7 +1531,7 @@ msgstr "Unlocking a resume will allow you to make changes to it again."
msgid "Unverified" msgid "Unverified"
msgstr "Unverified" msgstr "Unverified"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Update an existing item" msgstr "Update an existing item"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "What's new in the latest version" msgstr "What's new in the latest version"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "You can add multiple keywords by separating them with a comma or pressing enter."

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: es\n" "Language: es\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-26 00:07\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "Cualquier persona que tenga este enlace puede ver y descargar el curríc
msgid "API Key" msgid "API Key"
msgstr "Clave API" 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?" msgid "Are you sure you want to delete this item?"
msgstr "¿Seguro que deseas eliminar este elemento?" msgstr "¿Seguro que deseas eliminar este elemento?"
@ -235,7 +235,7 @@ msgstr "Creado con"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Por la comunidad, para la comunidad." msgstr "Por la comunidad, para la comunidad."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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" msgid "Copy to Clipboard"
msgstr "Copiar al portapapeles" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Crear" msgstr "Crear"
@ -328,7 +328,7 @@ msgstr "Crear"
msgid "Create a new account" msgid "Create a new account"
msgstr "Crear una nueva cuenta" msgstr "Crear una nueva cuenta"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Crear un elemento nuevo" msgstr "Crear un elemento nuevo"
@ -377,15 +377,15 @@ msgstr "Oscuro"
msgid "Date" msgid "Date"
msgstr "Fecha" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Fecha o rango de fechas" msgstr "Fecha o rango de fechas"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Eliminar"
msgid "Delete Account" msgid "Delete Account"
msgstr "Eliminar cuenta" msgstr "Eliminar cuenta"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Descripción" msgstr "Descripción"
@ -462,7 +462,7 @@ msgstr "Descargar PDF"
msgid "Downloads" msgid "Downloads"
msgstr "Descargas" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Descargas"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" 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" msgid "Duplicate an existing item"
msgstr "Duplicar un elemento existente" msgstr "Duplicar un elemento existente"
@ -524,7 +524,7 @@ msgstr "Errores"
#: apps/client/src/pages/home/sections/support/index.tsx:78 #: 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!" 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 #: 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." 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Oculto" msgstr "Oculto"
@ -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 #: 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." 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 #: apps/client/src/services/errors/translate-error.ts:33
msgid "It looks like the resume you're looking for doesn't exist." 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 #: 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." msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe" msgid "John Doe"
msgstr "" msgstr "Juan Nadie"
#: apps/client/src/pages/auth/register/page.tsx:130 #: 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." msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe" msgid "john.doe"
msgstr "" msgstr "Juan.Nadie"
#: apps/client/src/pages/auth/register/page.tsx:151 #: 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." 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" msgid "john.doe@example.com"
msgstr "" msgstr "juan.nadie@ejemplo.es"
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Palabras clave" msgstr "Palabras clave"
@ -820,10 +820,10 @@ msgstr "Aprende más"
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44
msgid "Letter" msgid "Letter"
msgstr "" msgstr "Carta"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Nivel" msgstr "Nivel"
@ -852,7 +852,7 @@ msgstr "LinkedIn, currículum JSON, etc."
msgid "List" msgid "List"
msgstr "Lista" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Marzo 2023 - Presente" msgstr "Marzo 2023 - Presente"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "Licencia MIT" msgstr "Licencia MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "Integración con OpenAI"
msgid "Options" msgid "Options"
msgstr "Opciones" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "o continuar con" msgstr "o continuar con"
@ -1030,7 +1030,7 @@ msgstr "Notas personales para cada currículum"
msgid "Phone" msgid "Phone"
msgstr "Teléfono" msgstr "Teléfono"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Fotografía de 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 #: apps/client/src/pages/home/sections/features/index.tsx:97
msgid "Powered by" 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:98
msgid "Powered by <0>Simple Icons</0>" 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 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43
msgid "Primary Color" msgid "Primary Color"
@ -1121,15 +1121,15 @@ msgstr "Reactive Resume"
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39
msgid "Reactive Resume has helped people land jobs at these great companies:" 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 #: apps/client/src/pages/home/sections/support/index.tsx:12
msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe." msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe."
msgstr "" 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 #: 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." 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 #: apps/client/src/pages/home/sections/contributors/index.tsx:22
msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience." msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience."
@ -1194,7 +1194,7 @@ msgstr "Rico en funciones, no en precios."
msgid "Rounded" msgid "Rounded"
msgstr "Redondeado" msgstr "Redondeado"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1236,7 +1236,7 @@ msgstr "Seguridad"
#: apps/client/src/pages/home/sections/features/index.tsx:50 #: apps/client/src/pages/home/sections/features/index.tsx:50
msgid "Self-host with Docker" msgid "Self-host with Docker"
msgstr "" msgstr "Auto alojamiento con Docker"
#: apps/client/src/pages/auth/forgot-password/page.tsx:98 #: apps/client/src/pages/auth/forgot-password/page.tsx:98
msgid "Send Email" msgid "Send Email"
@ -1282,36 +1282,36 @@ msgstr "Barra lateral"
#: apps/client/src/pages/auth/login/page.tsx:116 #: apps/client/src/pages/auth/login/page.tsx:116
#: apps/client/src/pages/auth/verify-otp/page.tsx:92 #: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in" msgid "Sign in"
msgstr "" msgstr "Iniciar sesión"
#: apps/client/src/pages/auth/register/page.tsx:77 #: apps/client/src/pages/auth/register/page.tsx:77
msgid "Sign in now" 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:55
#: apps/client/src/pages/auth/login/page.tsx:60 #: apps/client/src/pages/auth/login/page.tsx:60
msgid "Sign in to your account" msgid "Sign in to your account"
msgstr "" msgstr "Inicia sesión a tu cuenta"
#: apps/client/src/pages/home/sections/features/index.tsx:55 #: apps/client/src/pages/home/sections/features/index.tsx:55
msgid "Sign in with Email" msgid "Sign in with Email"
msgstr "" msgstr "Inicia sesión con Email"
#: apps/client/src/pages/home/sections/features/index.tsx:53 #: apps/client/src/pages/home/sections/features/index.tsx:53
msgid "Sign in with GitHub" msgid "Sign in with GitHub"
msgstr "" msgstr "Inicia sesión con GitHub"
#: apps/client/src/pages/home/sections/features/index.tsx:54 #: apps/client/src/pages/home/sections/features/index.tsx:54
msgid "Sign in with Google" msgid "Sign in with Google"
msgstr "" msgstr "Inicia sesión con Google"
#: apps/client/src/pages/auth/register/page.tsx:185 #: apps/client/src/pages/auth/register/page.tsx:185
msgid "Sign up" msgid "Sign up"
msgstr "" msgstr "Registrarse"
#: apps/client/src/pages/auth/register/page.tsx:85 #: apps/client/src/pages/auth/register/page.tsx:85
msgid "Signups are currently disabled by the administrator." 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:72
msgid "Size (in px)" msgid "Size (in px)"
@ -1323,15 +1323,15 @@ msgstr ""
#: apps/client/src/services/errors/translate-error.ts:39 #: 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." 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 #: 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." 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 #: 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." 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:94
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137 #: 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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Tema"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Se ha producido un error al conectar con el navegador. Por favor, asegúrate de que 'chrome' se está ejecutando y es accesible." msgstr "Se ha producido un error al conectar con el navegador. Por favor, asegúrate de que 'chrome' se está ejecutando y es accesible."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Esta acción puede revertirse pulsando el botón deshacer de la barra de herramientas flotante." msgstr "Esta acción puede revertirse pulsando el botón deshacer de la barra de herramientas flotante."
@ -1484,19 +1484,19 @@ msgstr "Seguimiento de visitas y descargas"
#: apps/client/src/pages/auth/verify-otp/page.tsx:57 #: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication" msgid "Two-Factor Authentication"
msgstr "" msgstr "Autenticación de doble factor"
#: apps/client/src/services/errors/translate-error.ts:23 #: apps/client/src/services/errors/translate-error.ts:23
msgid "Two-factor authentication is already enabled for this account." 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 #: apps/client/src/services/errors/translate-error.ts:21
msgid "Two-factor authentication is not enabled for this account." 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 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84
msgid "Type <0>delete</0> to confirm deleting your account." 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 #. For example, Bachelor's Degree or Master's Degree
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 #: 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" msgid "Unverified"
msgstr "Sin verificar" 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" msgid "Update an existing item"
msgstr "Actualizar un elemento existente" msgstr "Actualizar un elemento existente"
@ -1588,7 +1588,7 @@ msgstr "Verificada"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159
msgid "Verify that two-factor authentication has been setup correctly" 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48 #: 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Novedades en la última versión" msgstr "Novedades en la última versión"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter." msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter."
@ -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 #: 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." 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 #: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully." msgid "Your email address has been verified successfully."
@ -1688,4 +1688,3 @@ msgstr "Aumentar"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Disminuir" msgstr "Disminuir"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fa\n" "Language: fa\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -20,35 +20,35 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
msgid "You have enabled two-factor authentication successfully." msgid "You have enabled two-factor authentication successfully."
msgstr "" msgstr "احراز هویت دو مرحله ای را با موفقیت فعال کردید."
#: apps/client/src/pages/home/sections/features/index.tsx:57 #: apps/client/src/pages/home/sections/features/index.tsx:57
msgid "{templatesCount} resume templates to choose from" msgid "{templatesCount} resume templates to choose from"
msgstr "" msgstr "{templatesCount} قالب رزومه برای انتخاب"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
msgid "{value, plural, one {Column} other {Columns}}" msgid "{value, plural, one {Column} other {Columns}}"
msgstr "" msgstr "{value, plural, one {ستون} other {ستون}}"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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>" 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 #: 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>" 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 #: 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." 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 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>" msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
msgstr "" msgstr "<0>جامعه Reactive Resume زمان زیادی را صرف نوشتن مستندات کرده است، و من مطمئن هستم که به شما در شروع کار با برنامه کمک خواهد کرد.</0> <1>همچنین مثال‌ها و تمپلت‌های زیادی وجود دارد که به شما در شروع کار کمک می‌کند، و شاید این مثال‌ها در شناخت امکاناتی که ممکن است در روند ساختن رزومه ندانید مفید باشند.</1>"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account." msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
msgstr "" msgstr "<0> احراز هویت دو مرحله‌ای در حال حاضر غیرفعال است.</0> می توانید با نصب یک اپلیکیشن احراز هویت (مثل Google Authenticator یا Microsoft Authenticator) و افزودن آن به حساب خود، ورود دو مرحله‌ای را فعال کنید."
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in." msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,12 +235,12 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "انصراف"
#: apps/client/src/components/ai-actions.tsx:103 #: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106 #: apps/client/src/components/ai-actions.tsx:106
@ -282,168 +282,168 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50
msgid "Code must be exactly 6 digits long." msgid "Code must be exactly 6 digits long."
msgstr "" msgstr "کد باید دقیقاً 6 رقمی باشد."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108
msgid "Columns" msgid "Columns"
msgstr "" msgstr "ستون‌ها"
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39
msgid "Company" msgid "Company"
msgstr "" msgstr "شرکت"
#: apps/client/src/components/ai-actions.tsx:115 #: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118 #: apps/client/src/components/ai-actions.tsx:118
msgid "Confident" msgid "Confident"
msgstr "" msgstr "مطمئن"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
msgid "Confirm New Password" 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:232
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239
msgid "Continue" msgid "Continue"
msgstr "" msgstr "ادامه"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
msgid "Copy" msgid "Copy"
msgstr "" msgstr "کپی"
#: apps/client/src/pages/builder/_components/toolbar.tsx:132 #: apps/client/src/pages/builder/_components/toolbar.tsx:132
msgid "Copy Link to Resume" msgid "Copy Link to Resume"
msgstr "" msgstr "کپی لینک به رزومه"
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78
msgid "Copy to Clipboard" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr "ایجاد"
#: apps/client/src/pages/auth/register/page.tsx:67 #: apps/client/src/pages/auth/register/page.tsx:67
#: apps/client/src/pages/auth/register/page.tsx:72 #: apps/client/src/pages/auth/register/page.tsx:72
msgid "Create a new account" 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" msgid "Create a new item"
msgstr "" msgstr "ساخت آیتم جدید"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:177 #: 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/grid/_components/create-card.tsx:24
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19
msgid "Create a new resume" msgid "Create a new resume"
msgstr "" msgstr "ساخت رزومه جدید"
#: apps/client/src/pages/auth/login/page.tsx:65 #: apps/client/src/pages/auth/login/page.tsx:65
msgctxt "This is a link to create a new account" msgctxt "This is a link to create a new account"
msgid "Create one now" msgid "Create one now"
msgstr "" msgstr "اکنون یکی ایجاد کنید"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:258 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:258
msgid "Create Sample Resume" msgid "Create Sample Resume"
msgstr "" msgstr "ایجاد نمونه رزومه"
#: apps/client/src/pages/home/sections/features/index.tsx:62 #: apps/client/src/pages/home/sections/features/index.tsx:62
msgid "Custom resume sections" msgid "Custom resume sections"
msgstr "" msgstr "بخش‌های رزومه شخصی‌سازی شده"
#: apps/client/src/stores/resume.ts:45 #: apps/client/src/stores/resume.ts:45
msgid "Custom Section" msgid "Custom Section"
msgstr "" msgstr "بخش شخصی‌سازی شده"
#: apps/client/src/pages/home/sections/features/index.tsx:60 #: apps/client/src/pages/home/sections/features/index.tsx:60
msgid "Customisable colour palettes" msgid "Customisable colour palettes"
msgstr "" msgstr "پالت‌های رنگی قابل تنظیم"
#: apps/client/src/pages/home/sections/features/index.tsx:61 #: apps/client/src/pages/home/sections/features/index.tsx:61
msgid "Customisable layouts" msgid "Customisable layouts"
msgstr "" msgstr "طرح‌های قابل تنظیم"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62
msgid "Danger Zone" msgid "Danger Zone"
msgstr "" msgstr "محدوده خطر"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82
msgid "Dark" msgid "Dark"
msgstr "" msgstr "تاریک"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr "تاریخ دقیق یا محدوده تاریخ"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198
msgid "Delete" msgid "Delete"
msgstr "" msgstr "حذف"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr "توضیحات"
#: apps/client/src/pages/home/sections/features/index.tsx:58 #: apps/client/src/pages/home/sections/features/index.tsx:58
msgid "Design single/multi page resumes" msgid "Design single/multi page resumes"
msgstr "" msgstr "طراحی رزومه تک / چند صفحه‌ای"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
msgid "Disable" msgid "Disable"
msgstr "" msgstr "غیرفعال"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155
msgid "Disable 2FA" msgid "Disable 2FA"
msgstr "" msgstr "غیرفعالسازی ورود دو مرحله‌ای"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 #: 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/profile.tsx:128
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard" msgid "Discard"
msgstr "" msgstr "صرف‌نظر"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr "مستندات"
#: apps/client/src/pages/auth/login/page.tsx:62 #: apps/client/src/pages/auth/login/page.tsx:62
msgid "Don't have an account?" msgid "Don't have an account?"
msgstr "" msgstr "حساب کاربری ندارید؟"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
msgid "Don't know where to begin? Hit the docs!" msgid "Don't know where to begin? Hit the docs!"
msgstr "" msgstr "نمی دانید از کجا شروع کنید؟ از مستندات!"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:101 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:101
msgid "Don't see your language? <0>Help translate the app.</0>" msgid "Don't see your language? <0>Help translate the app.</0>"
msgstr "" msgstr "زبان خود را نمی بینید؟ <0>به ترجمه برنامه کمک کنید.</0>"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
msgid "Donate to Reactive Resume" msgid "Donate to Reactive Resume"
msgstr "" msgstr "به Reactive Resume دونیت کنید"
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
@ -460,31 +460,31 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58
msgid "Downloads" msgid "Downloads"
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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:182 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:182
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr "کپی یک مورد موجود"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:179 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:179
msgid "Duplicate an existing resume" msgid "Duplicate an existing resume"
msgstr "" msgstr "کپی یک رزومه موجود"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
msgid "Edit" msgid "Edit"
msgstr "" msgstr "ویرایش"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174
msgid "Effects" msgid "Effects"
msgstr "" msgstr "جلوه‌ها"
#: apps/client/src/pages/auth/forgot-password/page.tsx:82 #: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:84 #: 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/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email" msgid "Email"
msgstr "" msgstr "ایمیل"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159
msgid "Enable 2FA" msgid "Enable 2FA"
msgstr "" msgstr "فعالسازی ورود دو مرحله‌ای"
#: apps/client/src/pages/auth/reset-password/page.tsx:67 #: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure." msgid "Enter a new password below, and make sure it's secure."
msgstr "" msgstr "یک رمز عبور جدید در زیر وارد کنید و مطمئن شوید که ایمن است."
#: apps/client/src/pages/auth/backup-otp/page.tsx:59 #: apps/client/src/pages/auth/backup-otp/page.tsx:59
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr "" msgstr "یکی از 10 کد پشتیبان را که هنگام فعال کردن احراز هویت دو مرحله‌ای ذخیره کرده‌اید، وارد کنید."
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 #: 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." 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 #: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below." msgid "Enter the one-time password provided by your authenticator app below."
msgstr "" msgstr "رمز عبور یکبار مصرف ارائه شده توسط برنامه احراز هویت خود را در زیر وارد کنید."
#: apps/client/src/pages/auth/forgot-password/page.tsx:70 #: apps/client/src/pages/auth/forgot-password/page.tsx:70
msgid "Enter your email address and we will send you a link to reset your password if the account exists." msgid "Enter your email address and we will send you a link to reset your password if the account exists."
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n" "Language: fi\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n" "Language: fr\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-19 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: French\n" "Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -150,7 +150,7 @@ msgstr "Toute personne avec ce lien peut voir et télécharger le CV. Partagez l
msgid "API Key" msgid "API Key"
msgstr "Clé API" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Êtes-vous sûr de vouloir supprimer cet élément?" msgstr "Êtes-vous sûr de vouloir supprimer cet élément?"
@ -235,7 +235,7 @@ msgstr "Construit avec"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Par la communauté, pour la communauté." msgstr "Par la communauté, pour la communauté."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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" msgid "Copy to Clipboard"
msgstr "Copier dans le Presse-Papier" msgstr "Copier dans le Presse-Papier"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Créer" msgstr "Créer"
@ -328,7 +328,7 @@ msgstr "Créer"
msgid "Create a new account" msgid "Create a new account"
msgstr "Créer un nouveau compte" msgstr "Créer un nouveau compte"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Créer un nouvel élément" msgstr "Créer un nouvel élément"
@ -377,15 +377,15 @@ msgstr "Sombre"
msgid "Date" msgid "Date"
msgstr "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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Période ou date" msgstr "Période ou date"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Supprimer"
msgid "Delete Account" msgid "Delete Account"
msgstr "Supprimer le compte" msgstr "Supprimer le compte"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Description" msgstr "Description"
@ -462,7 +462,7 @@ msgstr "Télécharger au format PDF"
msgid "Downloads" msgid "Downloads"
msgstr "Télécharger" msgstr "Télécharger"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Télécharger"
msgid "Duplicate" msgid "Duplicate"
msgstr "Dupliquer" 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" msgid "Duplicate an existing item"
msgstr "Dupliquer un élément existant" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Masqué" msgstr "Masqué"
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Mots-clés" msgstr "Mots-clés"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Lettre" msgstr "Lettre"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Niveau" msgstr "Niveau"
@ -852,7 +852,7 @@ msgstr "LinkedIn, CV JSON, etc."
msgid "List" msgid "List"
msgstr "Liste" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Mars 2023 - Aujourd'hui" msgstr "Mars 2023 - Aujourd'hui"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "Licence MIT" msgstr "Licence MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "Intégration OpenAI"
msgid "Options" msgid "Options"
msgstr "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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "ou continuer avec" msgstr "ou continuer avec"
@ -1030,7 +1030,7 @@ msgstr "Notes personnelles pour chaque CV"
msgid "Phone" msgid "Phone"
msgstr "Télé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" msgid "Photograph by Patrick Tomasso"
msgstr "Photographie de Patrick Tomasso" msgstr "Photographie de Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Riche en fonctionnalités, pas en prix."
msgid "Rounded" msgid "Rounded"
msgstr "Arrondi" msgstr "Arrondi"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Thème"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Une erreur s'est produite lors de la connexion au navigateur. Veuillez vous assurer que 'chrome' fonctionne et est accessible." msgstr "Une erreur s'est produite lors de la connexion au navigateur. Veuillez vous assurer que 'chrome' fonctionne et est accessible."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Cette action peut être annulée en cliquant sur le bouton Annuler dans la barre d'outils flottante." msgstr "Cette action peut être annulée en cliquant sur le bouton Annuler dans la barre d'outils flottante."
@ -1531,7 +1531,7 @@ msgstr "Le déverrouillage d'un CV vous permettra de le modifier à nouveau."
msgid "Unverified" msgid "Unverified"
msgstr "Non vérifié" msgstr "Non vérifié"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Mettre à jour un élément existant" msgstr "Mettre à jour un élément existant"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Quoi de neuf dans la dernière version" msgstr "Quoi de neuf dans la dernière version"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgule ou en appuyant sur la touche Entrée." msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgule ou en appuyant sur la touche Entrée."
@ -1688,4 +1688,3 @@ msgstr "Zoomer"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Dézoomer" msgstr "Dézoomer"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: he\n" "Language: he\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-12 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Hebrew\n" "Language-Team: Hebrew\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
@ -150,7 +150,7 @@ msgstr "כל מי שמחזיק בקישור הזה יכול לצפות ולהו
msgid "API Key" msgid "API Key"
msgstr "מפתח API" 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?" msgid "Are you sure you want to delete this item?"
msgstr "למחוק את הפריט הזה?" msgstr "למחוק את הפריט הזה?"
@ -235,7 +235,7 @@ msgstr "נבנה עם"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "על ידי הקהילה ועבורה." msgstr "על ידי הקהילה ועבורה."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "העתקת הקישור לקורות החיים"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "העתקה ללוח הגזירים" msgstr "העתקה ללוח הגזירים"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "יצירה" msgstr "יצירה"
@ -328,7 +328,7 @@ msgstr "יצירה"
msgid "Create a new account" msgid "Create a new account"
msgstr "יצירת חשבון חדש" msgstr "יצירת חשבון חדש"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "יצירת פריט חדש" msgstr "יצירת פריט חדש"
@ -377,15 +377,15 @@ msgstr "כהה"
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "תאריך או טווח תאריכים" msgstr "תאריך או טווח תאריכים"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "מחיקה"
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "תיאור" msgstr "תיאור"
@ -462,7 +462,7 @@ msgstr "הורדת PDF"
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "הורדות"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "שכפול פריט קיים" msgstr "שכפול פריט קיים"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר." msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר."
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "מוסתר" msgstr "מוסתר"
@ -788,10 +788,10 @@ msgstr "israel.israeli@israel.gov.il"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "מילות מפתח" msgstr "מילות מפתח"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "מכתב" msgstr "מכתב"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "רמה" msgstr "רמה"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON Resume וכו׳."
msgid "List" msgid "List"
msgstr "רשימה" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "מרץ 2023 - כרגע" msgstr "מרץ 2023 - כרגע"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "רישיון MIT" msgstr "רישיון MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "שילוב מול OpenAI"
msgid "Options" msgid "Options"
msgstr "אפשרויות" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "או להמשיך עם" msgstr "או להמשיך עם"
@ -1030,7 +1030,7 @@ msgstr "הערות אישיות לכל קורות חיים"
msgid "Phone" msgid "Phone"
msgstr "טלפון" msgstr "טלפון"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "תמונה מאת פטריק טומאסו" msgstr "תמונה מאת פטריק טומאסו"
@ -1194,7 +1194,7 @@ msgstr "עשיר ביכולות, לא בממון."
msgid "Rounded" msgid "Rounded"
msgstr "מעוגל" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr "מאוחסן"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "ערכת עיצוב"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "קרתה תקלה בחיבור לדפדפן. נא לוודא ש־chrome פעיל ונגיש." msgstr "קרתה תקלה בחיבור לדפדפן. נא לוודא ש־chrome פעיל ונגיש."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "אפשר לחזור אחורה מהפעולה הזאת על ידי לחיצה על כפתור ההחזרה בסרגל הכלים המרחף." msgstr "אפשר לחזור אחורה מהפעולה הזאת על ידי לחיצה על כפתור ההחזרה בסרגל הכלים המרחף."
@ -1531,7 +1531,7 @@ msgstr "שחרור קורות חיים יאפשר לערוך בו שינויים
msgid "Unverified" msgid "Unverified"
msgstr "לא מאומת" 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" msgid "Update an existing item"
msgstr "עדכון פריט קיים" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr "אתר אינטרנט"
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "מה חדש בגרסה העדכנית" msgstr "מה חדש בגרסה העדכנית"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter." msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter."
@ -1688,4 +1688,3 @@ msgstr "התקרבות"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "התרחקות" msgstr "התרחקות"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n" "Language: hi\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Hindi\n" "Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "इस लिंक वाला कोई भी व्यक्ति
msgid "API Key" msgid "API Key"
msgstr "API कुंजी" 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?" msgid "Are you sure you want to delete this item?"
msgstr "क्या आप बाकई यह आइटम डिलीट करना चाहते हैं?" msgstr "क्या आप बाकई यह आइटम डिलीट करना चाहते हैं?"
@ -235,7 +235,7 @@ msgstr "के साथ निर्मित"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "समुदाय द्वारा, समुदाय के लिए." msgstr "समुदाय द्वारा, समुदाय के लिए."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "फिर से शुरू करने के लिए लिंक
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "क्लिपबोर्ड पर कॉपी करें" msgstr "क्लिपबोर्ड पर कॉपी करें"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "बनाएँ" msgstr "बनाएँ"
@ -328,7 +328,7 @@ msgstr "बनाएँ"
msgid "Create a new account" msgid "Create a new account"
msgstr "एक नया खाता बनाएँ" msgstr "एक नया खाता बनाएँ"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "एक नया आइटम बनाएं" msgstr "एक नया आइटम बनाएं"
@ -377,15 +377,15 @@ msgstr "गहरी"
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "हटाएं"
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "विवरण" msgstr "विवरण"
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "डाउनलोड"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।" msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "छुपा हुआ" msgstr "छुपा हुआ"
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "जेसन" msgstr "जेसन"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "खोजशब्द:" msgstr "खोजशब्द:"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "अक्षर" msgstr "अक्षर"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "स्तर" msgstr "स्तर"
@ -852,7 +852,7 @@ msgstr "लिंक्डइन, JSON बायोडाटा, आदि।"
msgid "List" msgid "List"
msgstr "सूची" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "मार्च 2023 - वर्तमान" msgstr "मार्च 2023 - वर्तमान"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "मआईटी लाईसन्स" msgstr "मआईटी लाईसन्स"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "OpenAI एकीकरण"
msgid "Options" msgid "Options"
msgstr "विकल्प" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "या जारी रखें" msgstr "या जारी रखें"
@ -1030,7 +1030,7 @@ msgstr "प्रत्येक बायोडाटा के लिए व
msgid "Phone" msgid "Phone"
msgstr "फ़ोन" msgstr "फ़ोन"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "फ़ोटोग्राफ़ पैट्रिक टोमासो द्वारा" msgstr "फ़ोटोग्राफ़ पैट्रिक टोमासो द्वारा"
@ -1194,7 +1194,7 @@ msgstr "सुविधाओं से भरपूर, कीमत से न
msgid "Rounded" msgid "Rounded"
msgstr "गोल" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr "संग्रहित"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "थीम"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "ब्राउज़र से कनेक्ट करने में त्रुटि हुई. कृपया सुनिश्चित करें कि 'क्रोम' चल रहा है और पहुंच योग्य है।" msgstr "ब्राउज़र से कनेक्ट करने में त्रुटि हुई. कृपया सुनिश्चित करें कि 'क्रोम' चल रहा है और पहुंच योग्य है।"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "फ़्लोटिंग टूलबार में पूर्ववत करें बटन पर क्लिक करके इस क्रिया को पूर्ववत किया जा सकता है।" msgstr "फ़्लोटिंग टूलबार में पूर्ववत करें बटन पर क्लिक करके इस क्रिया को पूर्ववत किया जा सकता है।"
@ -1531,7 +1531,7 @@ msgstr "बायोडाटा को अनलॉक करने से आ
msgid "Unverified" msgid "Unverified"
msgstr "असत्यापित" 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" msgid "Update an existing item"
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr "वेबसाइट"
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "नवीनतम संस्करण में नया क्या है" msgstr "नवीनतम संस्करण में नया क्या है"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।" msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।"
@ -1688,4 +1688,3 @@ msgstr "ज़ूम इन"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "ज़ूम आउट" msgstr "ज़ूम आउट"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n" "Language: hu\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-05 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Hungarian\n" "Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "A link birtokában bárki megtekintheti és letöltheti az önéletrajzo
msgid "API Key" msgid "API Key"
msgstr "API Kulcs" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Biztosan törölni szeretnéd ezt az elemet?" msgstr "Biztosan törölni szeretnéd ezt az elemet?"
@ -235,7 +235,7 @@ msgstr "Készült"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "A közösség által, a közösségért." msgstr "A közösség által, a közösségért."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "Másolás a vágólapra" msgstr "Másolás a vágólapra"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Létrehozás" msgstr "Létrehozás"
@ -328,7 +328,7 @@ msgstr "Létrehozás"
msgid "Create a new account" msgid "Create a new account"
msgstr "Új fiók létrehozása" msgstr "Új fiók létrehozása"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Új elem létrehozása" msgstr "Új elem létrehozása"
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" msgid "Delete Account"
msgstr "Fiók törlése" msgstr "Fiók törlése"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Leírás" msgstr "Leírás"
@ -462,7 +462,7 @@ msgstr "PDF letöltése"
msgid "Downloads" msgid "Downloads"
msgstr "Letöltések" msgstr "Letöltések"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Letöltések"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplikálás" 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" msgid "Duplicate an existing item"
msgstr "Meglévő elem duplikálása" 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 "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: id\n" "Language: id\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-24 00:07\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Indonesian\n" "Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -20,172 +20,172 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
msgid "You have enabled two-factor authentication successfully." 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 #: apps/client/src/pages/home/sections/features/index.tsx:57
msgid "{templatesCount} resume templates to choose from" msgid "{templatesCount} resume templates to choose from"
msgstr "" msgstr "{templatesCount} templat resume yang dapat dipilih"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
msgid "{value, plural, one {Column} other {Columns}}" msgid "{value, plural, one {Column} other {Columns}}"
msgstr "" msgstr "{value, plural, other {Kolom}}"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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>" 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 #: 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>" 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 #: 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." 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 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>" msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
msgstr "" msgstr "<0>Komunitas ini telah menghabiskan banyak waktu untuk menulis dokumentasi untuk Reactive Resume, dan saya yakin ini akan membantu Anda mulai menggunakan aplikasi ini.</0><1>Ada juga banyak contoh untuk membantu Anda memulai, dan fitur-fitur yang mungkin tidak Anda ketahui yang dapat membantu Anda membuat resume yang sempurna.</1>"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account." msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
msgstr "" msgstr "<0>Autentikasi dua faktor saat ini dinonaktifkan.</0> Anda dapat mengaktifkannya dengan menambahkan aplikasi pengautentikasi ke akun Anda."
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in." msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
msgstr "" msgstr "<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/page.tsx:24
#: apps/client/src/pages/home/sections/hero/index.tsx:42 #: apps/client/src/pages/home/sections/hero/index.tsx:42
msgid "A free and open-source resume builder" 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/components/footer.tsx:20
#: apps/client/src/pages/home/sections/hero/index.tsx:47 #: 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." 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/_components/toolbar.tsx:53
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29
msgid "A link has been copied to your clipboard." 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 #: apps/client/src/components/copyright.tsx:29
msgid "A passion project by <0>Amruth Pillai</0>" 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 #: 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." 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 #: apps/client/src/services/errors/translate-error.ts:31
msgid "A resume with this slug already exists, please pick a different unique identifier." msgid "A resume with this slug already exists, please pick a different unique identifier."
msgstr "" msgstr "Resume dengan slug ini sudah ada, silakan pilih pengenal unik yang berbeda."
#: apps/client/src/services/errors/translate-error.ts:9 #: apps/client/src/services/errors/translate-error.ts:9
msgid "A user with this email address and/or username already exists." 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 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
msgid "A4" msgid "A4"
msgstr "" msgstr "A4"
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. #. 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
msgid "Accepts only {accept} files" msgid "Accepts only {accept} files"
msgstr "" msgstr "Hanya menerima file {accept}"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
msgid "Account" msgid "Account"
msgstr "" msgstr "Akun"
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
msgid "Add a custom field" 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:108
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 #: 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." msgctxt "For example, add a new work experience, or add a new profile."
msgid "Add a new item" msgid "Add a new item"
msgstr "" msgstr "Tambah item baru"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68
msgid "Add a new item" 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:79
#: apps/client/src/pages/builder/sidebars/left/index.tsx:196 #: apps/client/src/pages/builder/sidebars/left/index.tsx:196
msgid "Add a new section" msgid "Add a new section"
msgstr "" msgstr "Tambahkan bagian baru"
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269
msgid "Add New Page" msgid "Add New Page"
msgstr "" msgstr "Tambah halaman baru"
#: apps/client/src/components/ai-actions.tsx:79 #: apps/client/src/components/ai-actions.tsx:79
msgid "AI" msgid "AI"
msgstr "" msgstr "Kecerdasan buatan"
#: apps/client/src/pages/auth/register/page.tsx:74 #: apps/client/src/pages/auth/register/page.tsx:74
msgid "Already have an account?" msgid "Already have an account?"
msgstr "" msgstr "Sudah memiliki akun?"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144
msgid "An error occurred while validating the file." 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 #: apps/client/src/pages/home/sections/features/index.tsx:135
msgid "and many more..." msgid "and many more..."
msgstr "" msgstr "dan masih banyak lagi..."
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
msgid "Anyone with the link can view and download the resume." 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/_components/toolbar.tsx:54
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 #: 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." 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 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83
msgid "API Key" 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?" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:148
msgid "Are you sure you want to delete your resume?" 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 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:123
msgid "Are you sure you want to disable two-factor authentication?" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38
msgid "Are you sure you want to lock this resume?" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39
msgid "Are you sure you want to unlock this resume?" 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 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
msgid "Are you sure?" msgid "Are you sure?"
msgstr "" msgstr "Apakah Anda yakin?"
#. For example, Computer Science or Business Administration #. For example, Computer Science or Business Administration
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73
msgid "Area of Study" msgid "Area of Study"
msgstr "" msgstr "Area belajar"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:86 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:86
msgid "Aspect Ratio" msgid "Aspect Ratio"
msgstr "" msgstr "Rasio Aspek"
#: apps/client/src/pages/home/sections/features/index.tsx:51 #: apps/client/src/pages/home/sections/features/index.tsx:51
msgid "Available in {languagesCount} languages" msgid "Available in {languagesCount} languages"
msgstr "" msgstr "Tersedia dalam {languagesCount} bahasa"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53
msgid "Awarder" msgid "Awarder"
@ -195,19 +195,19 @@ msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:94 #: apps/client/src/pages/auth/forgot-password/page.tsx:94
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:236 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:236
msgid "Back" msgid "Back"
msgstr "" msgstr "Kembali"
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
msgid "Background Color" msgid "Background Color"
msgstr "" msgstr "Warna Latar Belakang"
#: apps/client/src/pages/auth/backup-otp/page.tsx:75 #: apps/client/src/pages/auth/backup-otp/page.tsx:75
msgid "Backup Code" msgid "Backup Code"
msgstr "" msgstr "Kode Cadangan"
#: apps/client/src/pages/auth/backup-otp/page.tsx:80 #: 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." 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 #: 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." 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." 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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "Batalkan"
#: apps/client/src/components/ai-actions.tsx:103 #: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106 #: apps/client/src/components/ai-actions.tsx:106
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,36 +655,36 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr "Tersembunyi"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78
msgid "Hide" msgid "Hide"
msgstr "" msgstr "Sembunyikan"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
msgid "Hide Icons" msgid "Hide Icons"
msgstr "" msgstr "Sembunyikan Ikon"
#: apps/client/src/pages/auth/login/page.tsx:104 #: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:174 #: apps/client/src/pages/auth/register/page.tsx:174
#: apps/client/src/pages/auth/reset-password/page.tsx:88 #: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily." 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:100
msgid "Horizontal" msgid "Horizontal"
msgstr "" msgstr "Horisontal"
#: apps/client/src/pages/home/sections/features/index.tsx:67 #: apps/client/src/pages/home/sections/features/index.tsx:67
msgid "Host your resume publicly" msgid "Host your resume publicly"
msgstr "" msgstr "Tampilkan resume Anda secara publik"
#: apps/client/src/pages/home/sections/testimonials/index.tsx:70 #: 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>." 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:82
msgid "Icon" msgid "Icon"
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: it\n" "Language: it\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-17 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "Chiunque abbia questo link può visualizzare e scaricare il curriculum.
msgid "API Key" msgid "API Key"
msgstr "Chiave API" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Sei sicuro di voler eliminare questo articolo?" msgstr "Sei sicuro di voler eliminare questo articolo?"
@ -235,7 +235,7 @@ msgstr "Costruito con"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Dalla comunità, per la comunità." msgstr "Dalla comunità, per la comunità."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "Copia collegamento per riprendere"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "Copia negli appunti" msgstr "Copia negli appunti"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Crea" msgstr "Crea"
@ -328,7 +328,7 @@ msgstr "Crea"
msgid "Create a new account" msgid "Create a new account"
msgstr "Crea un nuovo account" msgstr "Crea un nuovo account"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Crea un nuovo elemento" msgstr "Crea un nuovo elemento"
@ -377,15 +377,15 @@ msgstr "Scuro"
msgid "Date" msgid "Date"
msgstr "Data" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Data o Intervallo di date" msgstr "Data o Intervallo di date"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Elimina"
msgid "Delete Account" msgid "Delete Account"
msgstr "Elimina account" msgstr "Elimina account"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Descrizione" msgstr "Descrizione"
@ -462,7 +462,7 @@ msgstr "Scarica PDF"
msgid "Downloads" msgid "Downloads"
msgstr "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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Downloads"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplica" 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" msgid "Duplicate an existing item"
msgstr "Duplica un elemento esistente" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Nascosto" msgstr "Nascosto"
@ -788,10 +788,10 @@ msgstr "mario.rossi@esempio.it"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Parole chiave" msgstr "Parole chiave"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Lettera" msgstr "Lettera"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Livello" msgstr "Livello"
@ -852,7 +852,7 @@ msgstr "LinkedIn, curriculum JSON, ecc."
msgid "List" msgid "List"
msgstr "Lista" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Marzo 2023 - Presente" msgstr "Marzo 2023 - Presente"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "Licenza MIT" msgstr "Licenza MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "Integrazione OpenAI"
msgid "Options" msgid "Options"
msgstr "Opzioni" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "o continua con" msgstr "o continua con"
@ -1030,7 +1030,7 @@ msgstr "Note personali per ogni curriculum"
msgid "Phone" msgid "Phone"
msgstr "Telefono" msgstr "Telefono"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Fotografia di Patrick Tomasso" msgstr "Fotografia di Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Ricco di funzionalità, non di prezzi."
msgid "Rounded" msgid "Rounded"
msgstr "Arrotondato" msgstr "Arrotondato"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Tema"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Si è verificato un errore durante la connessione al browser. Assicurati che \"chrome\" sia in esecuzione e raggiungibile." msgstr "Si è verificato un errore durante la connessione al browser. Assicurati che \"chrome\" sia in esecuzione e raggiungibile."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Questa azione può essere annullata cliccando sul pulsante Annulla nella barra degli strumenti fluttuante." msgstr "Questa azione può essere annullata cliccando sul pulsante Annulla nella barra degli strumenti fluttuante."
@ -1531,7 +1531,7 @@ msgstr "Sbloccando un curriculum potrà modificarlo nuovamente."
msgid "Unverified" msgid "Unverified"
msgstr "Non verificato" msgstr "Non verificato"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Aggiorna un elemento esistente" msgstr "Aggiorna un elemento esistente"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Cosa c'è di nuovo nell'ultima versione" msgstr "Cosa c'è di nuovo nell'ultima versione"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio." msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio."
@ -1688,4 +1688,3 @@ msgstr "Ingrandisci"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Rimpicciolisci" msgstr "Rimpicciolisci"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n" "Language: ja\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-04 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Japanese\n" "Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -150,7 +150,7 @@ msgstr "このリンクを知っている人は誰でも履歴書を表示して
msgid "API Key" msgid "API Key"
msgstr "API キー" 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?" msgid "Are you sure you want to delete this item?"
msgstr "このアイテムを削除してもよろしいですか?" msgstr "このアイテムを削除してもよろしいですか?"
@ -233,9 +233,9 @@ msgstr "利用したソフトウェア"
#: apps/client/src/components/copyright.tsx:27 #: apps/client/src/components/copyright.tsx:27
#: apps/client/src/pages/home/sections/contributors/index.tsx:20 #: apps/client/src/pages/home/sections/contributors/index.tsx:20
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" 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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password" msgid "Change Password"
msgstr "" msgstr "パスワードを変更"
#: apps/client/src/components/ai-actions.tsx:97 #: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone" msgid "Change Tone"
@ -274,11 +274,11 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:242 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:242
msgid "Close" msgid "Close"
msgstr "" msgstr "終了"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199
msgid "Code" msgid "Code"
msgstr "" msgstr "コード"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50
msgid "Code must be exactly 6 digits long." 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 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
msgid "Copy" msgid "Copy"
msgstr "" msgstr "コピー"
#: apps/client/src/pages/builder/_components/toolbar.tsx:132 #: apps/client/src/pages/builder/_components/toolbar.tsx:132
msgid "Copy Link to Resume" msgid "Copy Link to Resume"
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,32 +377,32 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198
msgid "Delete" msgid "Delete"
msgstr "" msgstr "削除する"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "ダウンロード"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -492,7 +492,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email" msgid "Email"
msgstr "" msgstr "Eメール"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159
msgid "Enable 2FA" msgid "Enable 2FA"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "レベル" msgstr "レベル"
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "電話番号" msgstr "電話番号"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "テーマ"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" 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/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: km\n" "Language: km\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Khmer\n" "Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: kn\n" "Language: kn\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Kannada\n" "Language-Team: Kannada\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "ಈ ಲಿಂಕ್ ಹೊಂದಿರುವ ಯಾರಾದರೂ ರ
msgid "API Key" msgid "API Key"
msgstr "API ಕೀಲಿ" 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?" msgid "Are you sure you want to delete this item?"
msgstr "ಈ ಐಟಂ ಅನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" msgstr "ಈ ಐಟಂ ಅನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
@ -235,7 +235,7 @@ msgstr "ಇದರೊಂದಿಗೆ ನಿರ್ಮಿಸಲಾಗಿದೆ"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ." msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "ರೆಸ್ಯೂಮ್‌ ಲಿಂಕ್ ಅನ್ನು ನಕಲಿ
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ನಕಲಿಸಿ" msgstr "ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ನಕಲಿಸಿ"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "ರಚಿಸಿ" msgstr "ರಚಿಸಿ"
@ -328,7 +328,7 @@ msgstr "ರಚಿಸಿ"
msgid "Create a new account" msgid "Create a new account"
msgstr "ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ" msgstr "ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "ಹೊಸ ಐಟಂ ರಚಿಸಿ" msgstr "ಹೊಸ ಐಟಂ ರಚಿಸಿ"
@ -377,15 +377,15 @@ msgstr "ಕತ್ತಲು"
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "ಅಳಿಸಿ"
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "ವಿವರಣೆ" msgstr "ವಿವರಣೆ"
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "ಡೌನ್‌ಲೋಡ್‌ಗಳು"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನಕಲು ಮಾಡಿ" msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನಕಲು ಮಾಡಿ"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು." msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ" msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "ಕೀವರ್ಡ್‌ಗಳು" msgstr "ಕೀವರ್ಡ್‌ಗಳು"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "ಪತ್ರಗಳು" msgstr "ಪತ್ರಗಳು"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "ಮಟ್ಟ" msgstr "ಮಟ್ಟ"
@ -852,7 +852,7 @@ msgstr "ಲಿಂಕ್ಡ್‌ಇನ್, JSON ರೆಸ್ಯೂಮ್, ಇತ
msgid "List" msgid "List"
msgstr "ಪಟ್ಟಿ" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ" msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT ಪರವಾನಗಿ" msgstr "MIT ಪರವಾನಗಿ"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "OpenAI ಏಕೀಕರಣ"
msgid "Options" msgid "Options"
msgstr "ಆಯ್ಕೆಗಳು" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "ಅಥವಾ ಮುಂದುವರಿಸಿ" msgstr "ಅಥವಾ ಮುಂದುವರಿಸಿ"
@ -1030,7 +1030,7 @@ msgstr "ಪ್ರತಿ ರೆಸ್ಯೂಮ್ ವೈಯಕ್ತಿಕ ಟಿ
msgid "Phone" msgid "Phone"
msgstr "ದೂರವಾಣಿ" msgstr "ದೂರವಾಣಿ"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "ಪ್ಯಾಟ್ರಿಕ್ ಟೊಮಾಸೊ ಅವರ ಛಾಯಾಚಿತ್ರ" msgstr "ಪ್ಯಾಟ್ರಿಕ್ ಟೊಮಾಸೊ ಅವರ ಛಾಯಾಚಿತ್ರ"
@ -1194,7 +1194,7 @@ msgstr "ವೈಶಿಷ್ಟ್ಯಗಳಲ್ಲಿ ಸಮೃದ್ಧವಾ
msgid "Rounded" msgid "Rounded"
msgstr "ದುಂಡಾದ" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr "ಸಂಗ್ರಹಿಸಲಾಗಿದೆ"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "ಥೀಮ್"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "ಬ್ರೌಸರ್‌ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ. ದಯವಿಟ್ಟು 'ಕ್ರೋಮ್' ಚಾಲನೆಯಲ್ಲಿದೆ ಮತ್ತು ತಲುಪಬಹುದೆಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ." msgstr "ಬ್ರೌಸರ್‌ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ. ದಯವಿಟ್ಟು 'ಕ್ರೋಮ್' ಚಾಲನೆಯಲ್ಲಿದೆ ಮತ್ತು ತಲುಪಬಹುದೆಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "ಫ್ಲೋಟಿಂಗ್ ಟೂಲ್‌ಬಾರ್‌ನಲ್ಲಿರುವ ರದ್ದುಗೊಳಿಸು ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸಬಹುದು." msgstr "ಫ್ಲೋಟಿಂಗ್ ಟೂಲ್‌ಬಾರ್‌ನಲ್ಲಿರುವ ರದ್ದುಗೊಳಿಸು ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸಬಹುದು."
@ -1531,7 +1531,7 @@ msgstr "ರೆಸ್ಯೂಮ್ ಅನ್ನು ಅನ್‌ಲಾಕ್ ಮಾ
msgid "Unverified" msgid "Unverified"
msgstr "ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ" 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" msgid "Update an existing item"
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನವೀಕರಿಸಿ" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr "ಜಾಲತಾಣ"
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ" msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್‌ಗಳನ್ನು ಸೇರಿಸಬಹುದು." msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್‌ಗಳನ್ನು ಸೇರಿಸಬಹುದು."
@ -1688,4 +1688,3 @@ msgstr "ಗಾತ್ರ ಹಿಗ್ಗಿಸಿ"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "ಗಾತ್ರ ಕುಗ್ಗಿಸಿ" msgstr "ಗಾತ್ರ ಕುಗ್ಗಿಸಿ"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n" "Language: ko\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-29 00:06\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Korean\n" "Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -150,7 +150,7 @@ msgstr "이 링크가 있는 사람은 누구나 이력서를 보고 다운로
msgid "API Key" msgid "API Key"
msgstr "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?" msgid "Are you sure you want to delete this item?"
msgstr "이 항목을 삭제하시겠습니까?" msgstr "이 항목을 삭제하시겠습니까?"
@ -235,7 +235,7 @@ msgstr "Built with"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "By the community, for the community." msgstr "By the community, for the community."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr "PDF 다운로드"
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "다운로드"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "기존 항목 복제" msgstr "기존 항목 복제"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n" "Language: lt\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-20 00:06\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Lithuanian\n" "Language-Team: Lithuanian\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
@ -150,7 +150,7 @@ msgstr "Kiekvienas, pasinaudojęs šia nuoroda, gali peržiūrėti ir atsisiųst
msgid "API Key" msgid "API Key"
msgstr "API raktas" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Ar tikrai norite ištrinti šį elementą?" msgstr "Ar tikrai norite ištrinti šį elementą?"
@ -235,7 +235,7 @@ msgstr "Pastatytas su"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Bendruomenės ir bendruomenei." msgstr "Bendruomenės ir bendruomenei."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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" msgid "Copy to Clipboard"
msgstr "Kopijuoti į iškarpinę" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Sukurti" msgstr "Sukurti"
@ -328,7 +328,7 @@ msgstr "Sukurti"
msgid "Create a new account" msgid "Create a new account"
msgstr "Sukurti naują paskyrą" msgstr "Sukurti naują paskyrą"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Sukurti naują elementą" msgstr "Sukurti naują elementą"
@ -377,15 +377,15 @@ msgstr "Tamsus"
msgid "Date" msgid "Date"
msgstr "Data" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Data arba datos intervalas" msgstr "Data arba datos intervalas"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Ištrinti"
msgid "Delete Account" msgid "Delete Account"
msgstr "Ištrinti paskyrą" msgstr "Ištrinti paskyrą"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Aprašymas" msgstr "Aprašymas"
@ -462,7 +462,7 @@ msgstr "Atsisiųsti PDF"
msgid "Downloads" msgid "Downloads"
msgstr "Atsisiuntimai" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Atsisiuntimai"
msgid "Duplicate" msgid "Duplicate"
msgstr "Dublikatas" 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" msgid "Duplicate an existing item"
msgstr "Dubliuoti esamą elementą" 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į." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Paslėptas" msgstr "Paslėptas"
@ -788,10 +788,10 @@ msgstr "jonas.jonaitis@pavyzdys.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Raktiniai žodžiai" msgstr "Raktiniai žodžiai"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Laiškas" msgstr "Laiškas"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Lygis" msgstr "Lygis"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON CV ir kt."
msgid "List" msgid "List"
msgstr "Sąrašas" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "2023 m. kovo mėn. - dabartis" msgstr "2023 m. kovo mėn. - dabartis"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT licencija" msgstr "MIT licencija"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "\"OpenAI\" integracija"
msgid "Options" msgid "Options"
msgstr "Parinktys" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "arba tęsti su" msgstr "arba tęsti su"
@ -1030,7 +1030,7 @@ msgstr "Asmeninės pastabos prie kiekvieno gyvenimo aprašymo"
msgid "Phone" msgid "Phone"
msgstr "Telefonas" msgstr "Telefonas"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Patrick Tomasso nuotrauka" msgstr "Patrick Tomasso nuotrauka"
@ -1194,7 +1194,7 @@ msgstr "Turtingas funkcijomis, bet ne kainomis."
msgid "Rounded" msgid "Rounded"
msgstr "Suapvalintas" msgstr "Suapvalintas"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Tema"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Įvyko prisijungimo prie naršyklės klaida. Įsitikinkite, kad 'chrome' veikia ir yra pasiekiama." msgstr "Įvyko prisijungimo prie naršyklės klaida. Įsitikinkite, kad 'chrome' veikia ir yra pasiekiama."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Šį veiksmą galima atšaukti slankiojoje įrankių juostoje spustelėjus anuliavimo mygtuką." msgstr "Šį veiksmą galima atšaukti slankiojoje įrankių juostoje spustelėjus anuliavimo mygtuką."
@ -1531,7 +1531,7 @@ msgstr "Atrakinę gyvenimo aprašymą galėsite vėl jį keisti."
msgid "Unverified" msgid "Unverified"
msgstr "Nepatikrintas" msgstr "Nepatikrintas"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Atnaujinti esamą elementą" msgstr "Atnaujinti esamą elementą"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Kas naujo naujausioje versijoje" msgstr "Kas naujo naujausioje versijoje"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter." msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter."
@ -1688,4 +1688,3 @@ msgstr "Priartinti"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Tolinti" msgstr "Tolinti"

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ml\n" "Language: ml\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Malayalam\n" "Language-Team: Malayalam\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: mr\n" "Language: mr\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-12 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Marathi\n" "Language-Team: Marathi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr "याने बनवले:"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "समाजाने, समाजासाठी." msgstr "समाजाने, समाजासाठी."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr "गडद"
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "तारीख किंवा तारीख श्रेणी" msgstr "तारीख किंवा तारीख श्रेणी"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "हटवा"
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "वर्णन" msgstr "वर्णन"
@ -462,7 +462,7 @@ msgstr "PDF डाउनलोड करा"
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "डाउनलोड"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "अस्तित्वात असलेल्या वस्तूची नक्कल करा" msgstr "अस्तित्वात असलेल्या वस्तूची नक्कल करा"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "कीवर्ड" msgstr "कीवर्ड"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "पत्र" msgstr "पत्र"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "स्तर" msgstr "स्तर"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON Resume, इ."
msgid "List" msgid "List"
msgstr "यादी" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "मार्च २०२३ - वर्तमान" msgstr "मार्च २०२३ - वर्तमान"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "एमआयटी परवाना" msgstr "एमआयटी परवाना"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "विकल्प" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "फोन" msgstr "फोन"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "पॅट्रिक टोमासो यांचे छायाचित्र" msgstr "पॅट्रिक टोमासो यांचे छायाचित्र"
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "गोलाकार केलेले" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr "रेझ्युमेचा कुलूप उघडून आपण
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr "संकेतस्थळ"
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ne\n" "Language: ne\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Nepali\n" "Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n" "Language: nl\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-31 00:09\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "Iedereen met deze link kan het CV bekijken en downloaden. Deel het op je
msgid "API Key" msgid "API Key"
msgstr "API sleutel" msgstr "API sleutel"
#: 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?" msgid "Are you sure you want to delete this item?"
msgstr "Weet u zeker dat u dit item wilt verwijderen?" msgstr "Weet u zeker dat u dit item wilt verwijderen?"
@ -235,7 +235,7 @@ msgstr "Gebouwd met"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Door de gemeenschap, voor de gemeenschap." msgstr "Door de gemeenschap, voor de gemeenschap."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "Kopieer Link naar CV"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "Kopieer naar klembord" msgstr "Kopieer naar klembord"
#: 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Maak" msgstr "Maak"
@ -328,7 +328,7 @@ msgstr "Maak"
msgid "Create a new account" msgid "Create a new account"
msgstr "Maak een nieuw account aan" msgstr "Maak een nieuw account aan"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Maak een nieuw item" msgstr "Maak een nieuw item"
@ -377,15 +377,15 @@ msgstr "Donker"
msgid "Date" msgid "Date"
msgstr "Datum" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Datum of datumbereik" msgstr "Datum of datumbereik"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Verwijder"
msgid "Delete Account" msgid "Delete Account"
msgstr "Verwijder account" msgstr "Verwijder 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/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/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" msgid "Description"
msgstr "Beschrijving" msgstr "Beschrijving"
@ -462,7 +462,7 @@ msgstr "Download PDF"
msgid "Downloads" msgid "Downloads"
msgstr "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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Downloads"
msgid "Duplicate" msgid "Duplicate"
msgstr "Dupliceer" msgstr "Dupliceer"
#: 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" msgid "Duplicate an existing item"
msgstr "Een bestaand item dupliceren" msgstr "Een bestaand item dupliceren"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Verborgen" msgstr "Verborgen"
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Sleutelwoorden" msgstr "Sleutelwoorden"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Brief" msgstr "Brief"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Niveau" msgstr "Niveau"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON CV, enz."
msgid "List" msgid "List"
msgstr "Lijst" msgstr "Lijst"
#: 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr "Persoonlijke notities voor elk CV"
msgid "Phone" msgid "Phone"
msgstr "Telefoon" msgstr "Telefoon"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Foto door Patrick Tomasso" msgstr "Foto door Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Rijk aan functies, niet aan prijzen."
msgid "Rounded" msgid "Rounded"
msgstr "Ronde hoeken" msgstr "Ronde hoeken"
#: 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr "Opgeslagen"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Thema"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Er is een fout opgetreden bij het verbinden met de browser. Zorg ervoor dat 'chrome' actief en bereikbaar is." msgstr "Er is een fout opgetreden bij het verbinden met de browser. Zorg ervoor dat 'chrome' actief en bereikbaar is."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Deze actie kan u terugdraaien door op de knop 'Ongedaan maken' in de zwevende werkbalk te klikken." msgstr "Deze actie kan u terugdraaien door op de knop 'Ongedaan maken' in de zwevende werkbalk te klikken."
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" msgstr ""
@ -1613,11 +1613,11 @@ msgstr "Wij verifiëren uw e-mailadres enkel om ervoor te zorgen dat wij u een l
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" 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/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma of door op enter te drukken." msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma of door op enter te drukken."
@ -1688,4 +1688,3 @@ msgstr "Inzoomen"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Uitzoomen" msgstr "Uitzoomen"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: no\n" "Language: no\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-14 00:07\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Norwegian\n" "Language-Team: Norwegian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -87,7 +87,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
msgid "A4" msgid "A4"
msgstr "" msgstr "A4"
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. #. 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 #: 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 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
msgid "Account" msgid "Account"
msgstr "" msgstr "Konto"
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
msgid "Add a custom field" 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:108
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 #: 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." msgctxt "For example, add a new work experience, or add a new profile."
msgid "Add a new item" msgid "Add a new item"
msgstr "" msgstr "Legg til nytt element"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68
msgid "Add a new item" 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:79
#: apps/client/src/pages/builder/sidebars/left/index.tsx:196 #: apps/client/src/pages/builder/sidebars/left/index.tsx:196
msgid "Add a new section" msgid "Add a new section"
msgstr "" msgstr "Legg til ny seksjon"
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269
msgid "Add New Page" msgid "Add New Page"
msgstr "" msgstr "Legg til ny side"
#: apps/client/src/components/ai-actions.tsx:79 #: apps/client/src/components/ai-actions.tsx:79
msgid "AI" msgid "AI"
@ -127,11 +127,11 @@ msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:74 #: apps/client/src/pages/auth/register/page.tsx:74
msgid "Already have an account?" msgid "Already have an account?"
msgstr "" msgstr "Har du allerede en konto?"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144
msgid "An error occurred while validating the file." 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 #: apps/client/src/pages/home/sections/features/index.tsx:135
msgid "and many more..." msgid "and many more..."
@ -139,7 +139,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
msgid "Anyone with the link can view and download the resume." 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/_components/toolbar.tsx:54
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,15 +1370,15 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
msgid "Summary" msgid "Summary"
msgstr "" msgstr "Sammendrag"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
msgid "Support the app by donating what you can!" 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." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: or\n" "Language: or\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Odia\n" "Language-Team: Odia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n" "Language: pl\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-04 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Polish\n" "Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@ -150,7 +150,7 @@ msgstr "Każda osoba posiadająca ten link może wyświetlić i pobrać CV. Udos
msgid "API Key" msgid "API Key"
msgstr "Klucz API" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Czy na pewno chcesz usunąć ten element?" msgstr "Czy na pewno chcesz usunąć ten element?"
@ -235,7 +235,7 @@ msgstr "Wykorzystane technologie"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Zbudowane przez społeczność dla społeczności." msgstr "Zbudowane przez społeczność dla społeczności."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "Skopiuj link do CV"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "Skopiuj do Schowka" msgstr "Skopiuj do Schowka"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Stwórz" msgstr "Stwórz"
@ -328,7 +328,7 @@ msgstr "Stwórz"
msgid "Create a new account" msgid "Create a new account"
msgstr "Stwórz nowe konto" msgstr "Stwórz nowe konto"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Stwórz nowy element" msgstr "Stwórz nowy element"
@ -377,15 +377,15 @@ msgstr "Ciemny"
msgid "Date" msgid "Date"
msgstr "Data" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Data lub zakres dat" msgstr "Data lub zakres dat"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Usuń"
msgid "Delete Account" msgid "Delete Account"
msgstr "Usuń konto" msgstr "Usuń konto"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Opis" msgstr "Opis"
@ -462,7 +462,7 @@ msgstr "Pobierz PDF"
msgid "Downloads" msgid "Downloads"
msgstr "Pliki do pobrania" msgstr "Pliki do pobrania"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Pliki do pobrania"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplikat" 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" msgid "Duplicate an existing item"
msgstr "Duplikuj istniejący element" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Ukryte" msgstr "Ukryte"
@ -788,10 +788,10 @@ msgstr "jan.kowalski@przyklad.pl"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Słowa Kluczowe" msgstr "Słowa Kluczowe"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Poziom" msgstr "Poziom"
@ -852,7 +852,7 @@ msgstr "LinkedIn, CV JSON itp."
msgid "List" msgid "List"
msgstr "Lista" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Marzec 2023 obecnie" msgstr "Marzec 2023 obecnie"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "Licencja MIT" msgstr "Licencja MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "Integracja z OpenAI"
msgid "Options" msgid "Options"
msgstr "Opcje" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "lub kontynuuj z" msgstr "lub kontynuuj z"
@ -1030,7 +1030,7 @@ msgstr "Osobiste notatki do każdego CV"
msgid "Phone" msgid "Phone"
msgstr "Telefon" msgstr "Telefon"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Zdjęcie: Patrick Tomasso" msgstr "Zdjęcie: Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "Zaokrąklony" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Motyw"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Wystąpił błąd podczas łączenia się z przeglądarką. Upewnij się, że „Chrome” jest uruchomiony i dostępny." msgstr "Wystąpił błąd podczas łączenia się z przeglądarką. Upewnij się, że „Chrome” jest uruchomiony i dostępny."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Tę czynność można cofnąć, klikając przycisk cofania na pływającym pasku narzędzi." msgstr "Tę czynność można cofnąć, klikając przycisk cofania na pływającym pasku narzędzi."
@ -1531,7 +1531,7 @@ msgstr "Odblokowanie CV umożliwi ponowne wprowadzenie w nim zmian."
msgid "Unverified" msgid "Unverified"
msgstr "Niezweryfikowany" msgstr "Niezweryfikowany"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Zaktualizuj istniejący element" msgstr "Zaktualizuj istniejący element"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Co nowego w najnowszej wersji" msgstr "Co nowego w najnowszej wersji"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter." msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter."
@ -1688,4 +1688,3 @@ msgstr "Powiększ"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Pomniejsz" msgstr "Pomniejsz"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n" "Language: pt\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-12-06 00:08\n" "PO-Revision-Date: 2024-03-01 00:08\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n" "Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "Qualquer pessoa com este link pode visualizar e baixar o currículo. Com
msgid "API Key" msgid "API Key"
msgstr "Chave API" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Tem certeza de que deseja excluir este item?" msgstr "Tem certeza de que deseja excluir este item?"
@ -235,7 +235,7 @@ msgstr "Construído com"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Construída pela comunidade para a comunidade." msgstr "Construída pela comunidade para a comunidade."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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" msgid "Copy to Clipboard"
msgstr "Copiar para Área de Transferência" msgstr "Copiar para Área de Transferência"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Criar" msgstr "Criar"
@ -328,7 +328,7 @@ msgstr "Criar"
msgid "Create a new account" msgid "Create a new account"
msgstr "Criar uma nova conta" msgstr "Criar uma nova conta"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Criar um novo item" msgstr "Criar um novo item"
@ -377,15 +377,15 @@ msgstr "Escuro"
msgid "Date" msgid "Date"
msgstr "Data" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Data ou intervalo de datas" msgstr "Data ou intervalo de datas"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Apagar"
msgid "Delete Account" msgid "Delete Account"
msgstr "Excluir conta" msgstr "Excluir conta"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
@ -462,7 +462,7 @@ msgstr "Baixar PDF"
msgid "Downloads" msgid "Downloads"
msgstr "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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Downloads"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" 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" msgid "Duplicate an existing item"
msgstr "Duplicar um item existente" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Oculto" msgstr "Oculto"
@ -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 #: 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." 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:309
msgid "Import" msgid "Import"
@ -718,15 +718,15 @@ msgstr "Melhorar a escrita"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:186 #: 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." 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 #: 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." 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 #: 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>." 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/index.tsx:83
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122 #: 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 #: apps/client/src/services/errors/translate-error.ts:7
msgid "It doesn't look like a user exists with the credentials you provided." 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 #: 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." 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 #: 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." 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 #: apps/client/src/services/errors/translate-error.ts:33
msgid "It looks like the resume you're looking for doesn't exist." 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 #: 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." 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 #: 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." 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 #: apps/client/src/services/errors/translate-error.ts:19
msgid "It looks like your email address has already been verified." 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 #: 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." 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" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Palavras-chave" 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/grid/_components/resume-card.tsx:116
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:149 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:149
msgid "Last updated {lastUpdated}" 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/index.tsx:65
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207
@ -823,13 +823,13 @@ msgid "Letter"
msgstr "Carta" msgstr "Carta"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Nível" msgstr "Nível"
#: apps/client/src/components/copyright.tsx:16 #: apps/client/src/components/copyright.tsx:16
msgid "Licensed under <0>MIT</0>" msgid "Licensed under <0>MIT</0>"
msgstr "" msgstr "Licenciado sob <0>MIT</0>"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:81 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:81
msgid "Light" 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/grid/_components/import-card.tsx:29
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23
msgid "LinkedIn, JSON Resume, etc." msgid "LinkedIn, JSON Resume, etc."
msgstr "" msgstr "LinkedIn, currículo JSON, etc."
#: apps/client/src/pages/dashboard/resumes/page.tsx:45 #: apps/client/src/pages/dashboard/resumes/page.tsx:45
msgid "List" msgid "List"
msgstr "Lista" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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 #: 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." 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/components/user-options.tsx:34
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Março de 2023 - Presente" msgstr "Março de 2023 - Presente"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "Licença MIT" msgstr "Licença MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "Integração com OpenAI"
msgid "Options" msgid "Options"
msgstr "Opções" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "ou continue com" msgstr "ou continue com"
@ -1024,19 +1024,19 @@ msgstr "PDF"
#: apps/client/src/pages/home/sections/features/index.tsx:63 #: apps/client/src/pages/home/sections/features/index.tsx:63
msgid "Personal notes for each resume" 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 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73
msgid "Phone" msgid "Phone"
msgstr "Telefone" msgstr "Telefone"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr "Fotografia de Patrick Tomasso"
#: apps/client/src/pages/home/sections/features/index.tsx:66 #: apps/client/src/pages/home/sections/features/index.tsx:66
msgid "Pick any font from Google Fonts" 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/builder/sidebars/left/sections/picture/section.tsx:69
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 #: 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 #: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional." 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:225
msgid "Please select a file type" 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 #: 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." 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:106
msgid "Portrait" msgid "Portrait"
@ -1083,7 +1083,7 @@ msgstr "Cor Primária"
#: apps/client/src/components/ai-actions.tsx:109 #: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112 #: apps/client/src/components/ai-actions.tsx:112
msgid "Professional" msgid "Professional"
msgstr "" msgstr "Profissional"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60
msgid "Profile" msgid "Profile"
@ -1095,7 +1095,7 @@ msgstr "Público"
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53
msgid "Publisher" msgid "Publisher"
msgstr "" msgstr "Editor"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
msgid "Raise an issue" msgid "Raise an issue"
@ -1121,19 +1121,19 @@ msgstr "Reactive Resume"
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39
msgid "Reactive Resume has helped people land jobs at these great companies:" 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 #: apps/client/src/pages/home/sections/support/index.tsx:12
msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe." msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe."
msgstr "" 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 #: 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." 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 #: apps/client/src/pages/home/sections/contributors/index.tsx:22
msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience." msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience."
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 #: apps/client/src/pages/builder/_components/toolbar.tsx:72
msgid "Redo" msgid "Redo"
@ -1188,13 +1188,13 @@ msgstr "Currículos gerados"
#: apps/client/src/pages/home/sections/features/index.tsx:106 #: apps/client/src/pages/home/sections/features/index.tsx:106
msgid "Rich in features, not in pricing." 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143
msgid "Rounded" msgid "Rounded"
msgstr "Arredondado" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: 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 #: 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." 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 #. Score or honors for the degree, for example, CGPA or magna cum laude
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92
@ -1224,11 +1224,11 @@ msgstr "Procure uma variante de fonte"
#: apps/client/src/components/locale-combobox.tsx:41 #: apps/client/src/components/locale-combobox.tsx:41
msgid "Search for a language" msgid "Search for a language"
msgstr "" msgstr "Selecionar idioma"
#: apps/client/src/pages/home/sections/features/index.tsx:56 #: apps/client/src/pages/home/sections/features/index.tsx:56
msgid "Secure with two-factor authentication" 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 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
msgid "Security" msgid "Security"
@ -1323,29 +1323,29 @@ msgstr "Permalink"
#: apps/client/src/services/errors/translate-error.ts:39 #: 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." 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 #: 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." 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 #: 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." 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:94
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137
msgid "Square" 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/grid/_components/create-card.tsx:29
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24
msgid "Start building from scratch" msgid "Start building from scratch"
msgstr "" msgstr "Começar do zero"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:184 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:184
msgid "Start building your resume by giving it a name." 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/index.tsx:76
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 #: 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 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38
msgid "Statistics are available only for public resumes." 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 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101
msgid "Store Locally" msgid "Store Locally"
msgstr "" msgstr "Salvar localmente"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:160 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:160
msgid "Store your backup codes securely" 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 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101
msgid "Stored" msgid "Stored"
msgstr "" msgstr "Salvo"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1382,15 +1382,15 @@ msgstr "Resumo"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
msgid "Support the app by donating what you can!" 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 #: apps/client/src/pages/home/sections/support/index.tsx:9
msgid "Supporting Reactive Resume" msgid "Supporting Reactive Resume"
msgstr "" msgstr "Apoiando o Reactive Resume"
#: apps/client/src/pages/home/sections/features/index.tsx:65 #: apps/client/src/pages/home/sections/features/index.tsx:65
msgid "Supports A4/Letter page formats" 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 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80
msgid "System" msgid "System"
@ -1415,15 +1415,15 @@ msgstr "Cor do texto"
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25
msgid "That doesn't look like a valid OpenAI API key." 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 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
msgid "The passwords you entered do not match." 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 #: 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." 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/index.tsx:71
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 #: 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 #: 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." 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." 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 #: 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." 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 #: 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." 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 #: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes." 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 #: 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." 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 #: 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." 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 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39
msgctxt "Name of the Award" msgctxt "Name of the Award"
@ -1470,47 +1470,47 @@ msgstr "Título"
#: apps/client/src/pages/builder/_components/toolbar.tsx:106 #: apps/client/src/pages/builder/_components/toolbar.tsx:106
msgid "Toggle Page Break Line" msgid "Toggle Page Break Line"
msgstr "" msgstr "Alternar Quebra de Página"
#: apps/client/src/pages/builder/_components/toolbar.tsx:118 #: apps/client/src/pages/builder/_components/toolbar.tsx:118
msgid "Toggle Page Numbers" msgid "Toggle Page Numbers"
msgstr "" msgstr "Alternar Número de Páginas"
#: apps/client/src/pages/home/sections/features/index.tsx:68 #: apps/client/src/pages/home/sections/features/index.tsx:68
msgid "Track views and downloads" 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:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57 #: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication" msgid "Two-Factor Authentication"
msgstr "" msgstr "Autenticação de Dois Fatores"
#: apps/client/src/services/errors/translate-error.ts:23 #: apps/client/src/services/errors/translate-error.ts:23
msgid "Two-factor authentication is already enabled for this account." 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 #: apps/client/src/services/errors/translate-error.ts:21
msgid "Two-factor authentication is not enabled for this account." 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 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84
msgid "Type <0>delete</0> to confirm deleting your account." 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 #. For example, Bachelor's Degree or Master's Degree
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54
msgid "Type of Study" 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/index.tsx:68
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
msgid "Typography" msgid "Typography"
msgstr "" msgstr "Tipografia"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
msgid "Underline Links" msgid "Underline Links"
msgstr "" msgstr "Sublinhar links"
#: apps/client/src/pages/builder/_components/toolbar.tsx:66 #: apps/client/src/pages/builder/_components/toolbar.tsx:66
msgid "Undo" msgid "Undo"
@ -1531,7 +1531,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n
msgid "Unverified" msgid "Unverified"
msgstr "Não verificado" msgstr "Não verificado"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Atualizar um item existente" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:212
msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing."
msgstr "" 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 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73
msgid "URL" msgid "URL"
@ -1558,7 +1558,7 @@ msgstr "Use um código de backup"
#: apps/client/src/services/errors/translate-error.ts:11 #: apps/client/src/services/errors/translate-error.ts:11
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub." 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/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:54
@ -1572,15 +1572,15 @@ msgstr "Usuários inscritos"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:296 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:296
msgid "Validate" msgid "Validate"
msgstr "" msgstr "Confirmar"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:314 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:314
msgid "Validated" msgid "Validated"
msgstr "" msgstr "Validado"
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50
msgid "Value" msgid "Value"
msgstr "" msgstr "Valor"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified" msgid "Verified"
@ -1588,12 +1588,12 @@ msgstr "Verificado"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159
msgid "Verify that two-factor authentication has been setup correctly" 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48 #: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address" msgid "Verify your email address"
msgstr "" msgstr "Confirme seu endereço de email"
#: apps/client/src/pages/home/sections/hero/index.tsx:26 #: apps/client/src/pages/home/sections/hero/index.tsx:26
msgid "Version 4" msgid "Version 4"
@ -1609,15 +1609,15 @@ msgstr "Visível"
#: apps/client/src/pages/auth/verify-email/page.tsx:61 #: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr "" msgstr "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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "O que há de novo na versão mais recente" msgstr "O que há de novo na versão mais recente"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr "Aumentar zoom"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Diminuir o Zoom" msgstr "Diminuir o Zoom"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n" "Language: pt\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-29 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo. Partilhe
msgid "API Key" msgid "API Key"
msgstr "Chave API" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Tem a certeza de que pretende eliminar este item?" msgstr "Tem a certeza de que pretende eliminar este item?"
@ -235,7 +235,7 @@ msgstr "Construído com"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Pela comunidade, para a comunidade." msgstr "Pela comunidade, para a comunidade."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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" msgid "Copy to Clipboard"
msgstr "Copiar para a Área de Transferência" msgstr "Copiar para a Área de Transferência"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Criar" msgstr "Criar"
@ -328,7 +328,7 @@ msgstr "Criar"
msgid "Create a new account" msgid "Create a new account"
msgstr "Criar conta" msgstr "Criar conta"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Criar um item" msgstr "Criar um item"
@ -377,15 +377,15 @@ msgstr "Modo escuro"
msgid "Date" msgid "Date"
msgstr "Data" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Data ou intervalo de datas" msgstr "Data ou intervalo de datas"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Apagar"
msgid "Delete Account" msgid "Delete Account"
msgstr "Apagar conta" msgstr "Apagar conta"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
@ -462,7 +462,7 @@ msgstr "Baixar PDF"
msgid "Downloads" msgid "Downloads"
msgstr "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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Downloads"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicar" 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" msgid "Duplicate an existing item"
msgstr "Duplicar um item existente" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Oculto" msgstr "Oculto"
@ -788,10 +788,10 @@ msgstr "joao.silva@exemplo.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Palavras-chave" msgstr "Palavras-chave"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Carta" msgstr "Carta"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Nível" msgstr "Nível"
@ -852,7 +852,7 @@ msgstr "LinkedIn, currículo JSON, etc."
msgid "List" msgid "List"
msgstr "Lista" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Março de 2023 - presente" msgstr "Março de 2023 - presente"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "Licença MIT" msgstr "Licença MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "Integração com OpenAI"
msgid "Options" msgid "Options"
msgstr "Opções" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "ou continuar com" msgstr "ou continuar com"
@ -1030,7 +1030,7 @@ msgstr "Notas pessoais para cada currículo"
msgid "Phone" msgid "Phone"
msgstr "Telefone" msgstr "Telefone"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Fotografia de Patrick Tomasso" msgstr "Fotografia de Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Rico em funcionalidades, não em custo."
msgid "Rounded" msgid "Rounded"
msgstr "Arredondado" msgstr "Arredondado"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Tema"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Houve um erro na conexão com o navegador. Certifique-se de que o 'chrome' está a funcionar e acessível." msgstr "Houve um erro na conexão com o navegador. Certifique-se de que o 'chrome' está a funcionar e acessível."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Esta ação pode ser revertida clicando no botão \"desfazer\" na barra de ferramentas flutuante." msgstr "Esta ação pode ser revertida clicando no botão \"desfazer\" na barra de ferramentas flutuante."
@ -1531,7 +1531,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n
msgid "Unverified" msgid "Unverified"
msgstr "Não verificado" msgstr "Não verificado"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Atualizar um item existente" msgstr "Atualizar um item existente"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "O que há de novo na versão mais recente" msgstr "O que há de novo na versão mais recente"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter." msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
@ -1688,4 +1688,3 @@ msgstr "Ampliar"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Afastar" msgstr "Afastar"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ro\n" "Language: ro\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-12 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Romanian\n" "Language-Team: Romanian\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
@ -150,7 +150,7 @@ msgstr "Oricine are acest link poate vizualiza și descărca CV-ul. Distribuiți
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Sunteţi sigur că doriţi să ștergeți acest element?" msgstr "Sunteţi sigur că doriţi să ștergeți acest element?"
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Construit de comunitate, pentru comunitate." msgstr "Construit de comunitate, pentru comunitate."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Creează" msgstr "Creează"
@ -328,7 +328,7 @@ msgstr "Creează"
msgid "Create a new account" msgid "Create a new account"
msgstr "Creează un cont nou" msgstr "Creează un cont nou"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Creați un element nou" msgstr "Creați un element nou"
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" msgid "Date"
msgstr "Dată" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Șterge"
msgid "Delete Account" msgid "Delete Account"
msgstr "Șterge Contul" msgstr "Șterge Contul"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Descriere" msgstr "Descriere"
@ -462,7 +462,7 @@ msgstr "Descarcă PDF-ul"
msgid "Downloads" msgid "Downloads"
msgstr "Descărcări" msgstr "Descărcări"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Descărcări"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplică" 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" msgid "Duplicate an existing item"
msgstr "Duplicați un element existent" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Ascuns" msgstr "Ascuns"
@ -772,7 +772,9 @@ msgstr "Se pare că adresa dumneavoastră de e-mail a fost deja verificată."
#: apps/client/src/pages/auth/register/page.tsx:109 #: 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." msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe" msgid "John Doe"
msgstr "John Doe\n" msgstr ""
"John Doe\n"
""
#: apps/client/src/pages/auth/register/page.tsx:130 #: 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." msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
@ -788,10 +790,10 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Cuvinte cheie" msgstr "Cuvinte cheie"
@ -823,7 +825,7 @@ msgid "Letter"
msgstr "Scrisoare" msgstr "Scrisoare"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Nivel" msgstr "Nivel"
@ -852,7 +854,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
@ -900,7 +902,7 @@ msgstr "Martie 2023"
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Martie 2023 - Prezent" msgstr "Martie 2023 - Prezent"
@ -914,13 +916,13 @@ msgid "MIT License"
msgstr "Licență MIT" msgstr "Licență MIT"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +995,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "Opțiuni" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "sau continuați cu" msgstr "sau continuați cu"
@ -1030,7 +1032,7 @@ msgstr "Note personale pentru fiecare CV"
msgid "Phone" msgid "Phone"
msgstr "Telefon" msgstr "Telefon"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Fotografie de Patrick Tomasso" msgstr "Fotografie de Patrick Tomasso"
@ -1194,7 +1196,7 @@ msgstr "Bogat în caracteristici, nu în prețuri."
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1372,10 @@ msgstr "Stocat"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1437,7 @@ msgstr "Temă"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "A apărut o eroare la conectarea la browser. Asigurați-vă că „chrome” rulează și este accesibil." msgstr "A apărut o eroare la conectarea la browser. Asigurați-vă că „chrome” rulează și este accesibil."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Această acțiune poate fi anulată făcând clic pe butonul de anulare din bara de instrumente plutitoare." msgstr "Această acțiune poate fi anulată făcând clic pe butonul de anulare din bara de instrumente plutitoare."
@ -1531,7 +1533,7 @@ msgstr "Deblocarea unui CV vă va permite să-i faceți din nou modificări."
msgid "Unverified" msgid "Unverified"
msgstr "Neverificat" msgstr "Neverificat"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Actualizarea unui element existent" msgstr "Actualizarea unui element existent"
@ -1613,11 +1615,11 @@ msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1631,10 @@ msgstr "Website"
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "Ce este nou în cea mai recentă versiune" msgstr "Ce este nou în cea mai recentă versiune"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter." msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter."
@ -1688,4 +1690,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sr\n" "Language: sr\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Serbian (Cyrillic)\n" "Language-Team: Serbian (Cyrillic)\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sv\n" "Language: sv\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-11 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -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" msgid "API Key"
msgstr "API-nyckel" 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?" msgid "Are you sure you want to delete this item?"
msgstr "Är du säker på att du vill ta bort detta objekt?" msgstr "Är du säker på att du vill ta bort detta objekt?"
@ -235,7 +235,7 @@ msgstr "Byggt med"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Av gemenskapen, för gemenskapen." msgstr "Av gemenskapen, för gemenskapen."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: 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" msgid "Copy to Clipboard"
msgstr "Kopiera till urklipp" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Skapa" msgstr "Skapa"
@ -328,7 +328,7 @@ msgstr "Skapa"
msgid "Create a new account" msgid "Create a new account"
msgstr "Skapa ett nytt konto" msgstr "Skapa ett nytt konto"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Skapa ett nytt objekt" msgstr "Skapa ett nytt objekt"
@ -377,15 +377,15 @@ msgstr "Mörk"
msgid "Date" msgid "Date"
msgstr "Datum" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Datum eller datumintervall" msgstr "Datum eller datumintervall"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "Radera"
msgid "Delete Account" msgid "Delete Account"
msgstr "Radera konto" msgstr "Radera konto"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/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/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" msgid "Description"
msgstr "Beskrivning" msgstr "Beskrivning"
@ -462,7 +462,7 @@ msgstr "Ladda ner PDF"
msgid "Downloads" msgid "Downloads"
msgstr "Nedladdningar" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Nedladdningar"
msgid "Duplicate" msgid "Duplicate"
msgstr "Duplicera" 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" msgid "Duplicate an existing item"
msgstr "Duplicera ett befintligt objekt" 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." 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/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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Dolt" msgstr "Dolt"
@ -788,10 +788,10 @@ msgstr "sven.svensson@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Nyckelord" msgstr "Nyckelord"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Brev" msgstr "Brev"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Nivå" msgstr "Nivå"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON CV, osv."
msgid "List" msgid "List"
msgstr "Lista" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "mars 2023 - nutid" msgstr "mars 2023 - nutid"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT-licens" msgstr "MIT-licens"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "OpenAI-integration"
msgid "Options" msgid "Options"
msgstr "Inställningar" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "eller fortsätta med" msgstr "eller fortsätta med"
@ -1030,7 +1030,7 @@ msgstr "Personliga anteckningar för varje CV"
msgid "Phone" msgid "Phone"
msgstr "Telefon" msgstr "Telefon"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "Foto av Patrick Tomasso" msgstr "Foto av Patrick Tomasso"
@ -1194,7 +1194,7 @@ msgstr "Rik på funktioner, inte på priser."
msgid "Rounded" msgid "Rounded"
msgstr "Avrundad" msgstr "Avrundad"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -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/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "Tema"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "Det gick inte att ansluta till webbläsaren. Se till att \"chrome\" körs och kan nås." msgstr "Det gick inte att ansluta till webbläsaren. Se till att \"chrome\" körs och kan nås."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "Denna åtgärd kan återställas genom att klicka på ångra-knappen i det flytande verktygsfältet." msgstr "Denna åtgärd kan återställas genom att klicka på ångra-knappen i det flytande verktygsfältet."
@ -1531,7 +1531,7 @@ msgstr "Genom att låsa upp ett CV kan du göra ändringar i det igen."
msgid "Unverified" msgid "Unverified"
msgstr "Ej verifierat" msgstr "Ej verifierat"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
msgid "Update an existing item" msgid "Update an existing item"
msgstr "Uppdatera ett befintligt objekt" msgstr "Uppdatera ett befintligt objekt"
@ -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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: 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" msgid "What's new in the latest version"
msgstr "Vad är nytt i den senaste versionen" msgstr "Vad är nytt i den senaste versionen"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter." msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter."
@ -1688,4 +1688,3 @@ msgstr "Zooma in"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "Zooma ut" msgstr "Zooma ut"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ta\n" "Language: ta\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Tamil\n" "Language-Team: Tamil\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: te\n" "Language: te\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Telugu\n" "Language-Team: Telugu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: th\n" "Language: th\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Thai\n" "Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n" "Language: tr\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-05 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -131,7 +131,7 @@ msgstr "Zaten bir hesabınız mı var?"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144
msgid "An error occurred while validating the file." msgid "An error occurred while validating the file."
msgstr "" msgstr "Dosya doğrulanırken bir hata oluştu."
#: apps/client/src/pages/home/sections/features/index.tsx:135 #: apps/client/src/pages/home/sections/features/index.tsx:135
msgid "and many more..." msgid "and many more..."
@ -139,7 +139,7 @@ msgstr "ve daha fazlası..."
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
msgid "Anyone with the link can view and download the resume." msgid "Anyone with the link can view and download the resume."
msgstr "" msgstr "Bağlantıya sahip olan herkes özgeçmişi görüntüleyebilir ve indirebilir."
#: apps/client/src/pages/builder/_components/toolbar.tsx:54 #: apps/client/src/pages/builder/_components/toolbar.tsx:54
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30
@ -150,7 +150,7 @@ msgstr "Bu bağlantıya sahip herkes özgeçmişi görüntüleyebilir ve indireb
msgid "API Key" msgid "API Key"
msgstr "API Anahtarı" msgstr "API Anahtarı"
#: 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?" msgid "Are you sure you want to delete this item?"
msgstr "Bu öğeyi silmek istediğinizden emin misiniz?" msgstr "Bu öğeyi silmek istediğinizden emin misiniz?"
@ -235,7 +235,7 @@ msgstr "İle oluşturuldu"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "Topluluk tarafından topluluk için oluşturuldu." msgstr "Topluluk tarafından topluluk için oluşturuldu."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -245,11 +245,11 @@ msgstr "Reddet"
#: apps/client/src/components/ai-actions.tsx:103 #: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106 #: apps/client/src/components/ai-actions.tsx:106
msgid "Casual" msgid "Casual"
msgstr "" msgstr "Sıradan"
#: apps/client/src/pages/builder/_components/toolbar.tsx:98 #: apps/client/src/pages/builder/_components/toolbar.tsx:98
msgid "Center Artboard" msgid "Center Artboard"
msgstr "" msgstr "Merkez Çalışma Panosu"
#: apps/client/src/pages/auth/reset-password/page.tsx:99 #: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
@ -258,15 +258,15 @@ msgstr "Şifre Değiştir"
#: apps/client/src/components/ai-actions.tsx:97 #: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone" msgid "Change Tone"
msgstr "" msgstr "Tonu Değiştir"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:185 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:185
msgid "Changed your mind about the name? Give it a new one." msgid "Changed your mind about the name? Give it a new one."
msgstr "" msgstr "İsim konusunda fikrinizi mi değiştirdiniz? Yeni bir isim verin."
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69
msgid "Check your email for the confirmation link to update your email address." msgid "Check your email for the confirmation link to update your email address."
msgstr "" msgstr "E-posta adresinizi güncellemek için e-postanıza gelen onay bağlantısını kontrol edin."
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149
msgid "Circle" msgid "Circle"
@ -282,11 +282,11 @@ msgstr "Kod"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50
msgid "Code must be exactly 6 digits long." msgid "Code must be exactly 6 digits long."
msgstr "" msgstr "Kod tam olarak 6 hane uzunluğunda olmalıdır."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108
msgid "Columns" msgid "Columns"
msgstr "" msgstr "Sütunlar"
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39
msgid "Company" msgid "Company"
@ -295,7 +295,7 @@ msgstr "Şirket"
#: apps/client/src/components/ai-actions.tsx:115 #: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118 #: apps/client/src/components/ai-actions.tsx:118
msgid "Confident" msgid "Confident"
msgstr "" msgstr "Kendinden Emin"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
msgid "Confirm New Password" msgid "Confirm New Password"
@ -318,7 +318,7 @@ msgstr "Bağlantıyı Özgeçmişe Kopyala"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "Panoya Kopyala" msgstr "Panoya Kopyala"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "Oluştur" msgstr "Oluştur"
@ -328,7 +328,7 @@ msgstr "Oluştur"
msgid "Create a new account" msgid "Create a new account"
msgstr "Yeni bir hesap oluştur" msgstr "Yeni bir hesap oluştur"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "Yeni bir öğe oluştur" msgstr "Yeni bir öğe oluştur"
@ -365,7 +365,7 @@ msgstr "Özelleştirilebilir tasarım düzeni"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62
msgid "Danger Zone" msgid "Danger Zone"
msgstr "" msgstr "Tehlikeli Bölge"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82
msgid "Dark" msgid "Dark"
@ -377,15 +377,15 @@ msgstr "Karanlık"
msgid "Date" msgid "Date"
msgstr "Tarih" msgstr "Tarih"
#: 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "Tarih veya Tarih Aralığı" msgstr "Tarih veya Tarih Aralığı"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -396,23 +396,23 @@ msgstr "Sil"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
msgid "Delete Account" msgid "Delete Account"
msgstr "" msgstr "Hesabı Sil"
#: 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/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/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" msgid "Description"
msgstr "Açıklama" msgstr "Açıklama"
#: apps/client/src/pages/home/sections/features/index.tsx:58 #: apps/client/src/pages/home/sections/features/index.tsx:58
msgid "Design single/multi page resumes" msgid "Design single/multi page resumes"
msgstr "" msgstr "Tek/çok sayfalı özgeçmiş tasarlayın"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
msgid "Disable" msgid "Disable"
msgstr "" msgstr "Devre dışı bırak"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155
msgid "Disable 2FA" msgid "Disable 2FA"
@ -423,11 +423,11 @@ msgstr "2FA'yı devre dışı bırak"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:128 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:128
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard" msgid "Discard"
msgstr "" msgstr "Vazgeç"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr "Dökümantasyon"
#: apps/client/src/pages/auth/login/page.tsx:62 #: apps/client/src/pages/auth/login/page.tsx:62
msgid "Don't have an account?" msgid "Don't have an account?"
@ -447,7 +447,7 @@ msgstr "Reaktif Özgeçmiş'e Bağış Yapın"
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
msgstr "" msgstr "Özgeçmişinizin bir JSON versiyonunu indirin. Bu dosya gelecekte özgeçmişinizi içe aktarmak için kullanılabilir veya işbirliği yapmak için başkalarıyla paylaşılabilir."
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
@ -462,7 +462,7 @@ msgstr "PDF indir"
msgid "Downloads" msgid "Downloads"
msgstr "İndirmeler" msgstr "İndirmeler"
#: 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "İndirmeler"
msgid "Duplicate" msgid "Duplicate"
msgstr "Çoğalt" msgstr "Çoğalt"
#: 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" msgid "Duplicate an existing item"
msgstr "Mevcut bir öğeyi çoğalt" msgstr "Mevcut bir öğeyi çoğalt"
@ -484,7 +484,7 @@ msgstr "Düzenle"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174
msgid "Effects" msgid "Effects"
msgstr "" msgstr "Efektler"
#: apps/client/src/pages/auth/forgot-password/page.tsx:82 #: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:84 #: apps/client/src/pages/auth/login/page.tsx:84
@ -508,11 +508,11 @@ msgstr "İki faktörlü kimlik doğrulamayı etkinleştirdiğinizde kaydettiğin
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 #: 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." msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly."
msgstr "" msgstr "2FA'nın doğru şekilde kurulduğunu doğrulamak için kimlik doğrulayıcı uygulamanızdan 6 basamaklı kodu girin."
#: apps/client/src/pages/auth/verify-otp/page.tsx:60 #: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below." msgid "Enter the one-time password provided by your authenticator app below."
msgstr "" msgstr "Kimlik doğrulayıcı uygulamanız tarafından sağlanan tek kullanımlık şifreyi aşağıya girin."
#: apps/client/src/pages/auth/forgot-password/page.tsx:70 #: apps/client/src/pages/auth/forgot-password/page.tsx:70
msgid "Enter your email address and we will send you a link to reset your password if the account exists." msgid "Enter your email address and we will send you a link to reset your password if the account exists."
@ -524,11 +524,11 @@ msgstr "Hatalar"
#: apps/client/src/pages/home/sections/support/index.tsx:78 #: 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!" 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 "Maddi olarak katkıda bulunacak durumda olmasanız bile, GitHub sayfamıza bir yıldız vererek, arkadaşlarınıza duyurarak veya Reactive Resume'un size nasıl yardımcı olduğunu bildirmek için hızlı bir mesaj bırakarak yine de bir fark yaratabilirsiniz. Geri bildiriminiz ve desteğiniz bizim için çok değerlidir!"
#: apps/client/src/pages/home/sections/templates/index.tsx:12 #: 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." msgid "Explore the templates available in Reactive Resume and view the resumes crafted with them. They could also serve as examples to help guide the creation of your next resume."
msgstr "" msgstr "Reactive Resume'da bulunan şablonları keşfedin ve bunlarla hazırlanmış özgeçmişleri görüntüleyin. Bu şablonlar, bir sonraki özgeçmişinizin oluşturulmasına yardımcı olacak örnekler olarak da kullanılabilir."
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 #: apps/client/src/pages/builder/sidebars/right/index.tsx:79
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
@ -545,7 +545,7 @@ msgstr "Dosya türü"
#: apps/client/src/pages/home/sections/hero/index.tsx:40 #: apps/client/src/pages/home/sections/hero/index.tsx:40
msgid "Finally," msgid "Finally,"
msgstr "" msgstr "Nihayet,"
#: apps/client/src/components/ai-actions.tsx:90 #: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar" msgid "Fix Spelling & Grammar"
@ -561,7 +561,7 @@ msgstr "Yazı Tipi Büyüklüğü"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
msgid "Font Subset" msgid "Font Subset"
msgstr "" msgstr "Yazı Tipi Alt Kümesi"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
msgid "Font Variants" msgid "Font Variants"
@ -569,7 +569,7 @@ msgstr "Yazı Tipi Çeşitleri"
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
msgstr "" msgstr "Örneğin, bu özgeçmişi hangi şirketlere gönderdiğinize ilişkin bilgiler veya iş tanımlarının bağlantıları buraya not edilebilir."
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107
msgid "Forget" msgid "Forget"
@ -586,11 +586,11 @@ msgstr "Şifrenizi mi unuttunuz?"
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40
msgid "Format" msgid "Format"
msgstr "" msgstr "Format"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
msgid "Found a bug, or have an idea for a new feature?" msgid "Found a bug, or have an idea for a new feature?"
msgstr "" msgstr "Bir hata mı buldunuz ya da yeni bir özellik için bir fikriniz mi var?"
#: apps/client/src/pages/home/sections/features/index.tsx:46 #: apps/client/src/pages/home/sections/features/index.tsx:46
msgid "Free, forever" msgid "Free, forever"
@ -599,7 +599,7 @@ msgstr "Ömür boyu ücretsiz"
#: apps/client/src/components/ai-actions.tsx:121 #: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124 #: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly" msgid "Friendly"
msgstr "" msgstr "Dostça"
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
msgid "Full Name" msgid "Full Name"
@ -607,11 +607,11 @@ msgstr "Tam Ad"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201
msgid "Generate a random title for your resume" msgid "Generate a random title for your resume"
msgstr "" msgstr "Özgeçmişiniz için rastgele bir başlık oluşturun"
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33
msgid "Get Started" msgid "Get Started"
msgstr "" msgstr "Başlayın"
#: apps/client/src/pages/auth/_components/social-auth.tsx:18 #: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub" msgid "GitHub"
@ -623,12 +623,12 @@ msgstr "GitHub Yıldızları"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:186 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:186
msgid "Give your old resume a new name." msgid "Give your old resume a new name."
msgstr "" msgstr "Eski özgeçmişinize yeni bir isim verin."
#: apps/client/src/pages/auth/verify-email/page.tsx:67 #: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard" msgid "Go to Dashboard"
msgstr "" msgstr "Gösterge Paneline Git"
#: apps/client/src/pages/auth/_components/social-auth.tsx:31 #: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google" msgid "Google"
@ -636,7 +636,7 @@ msgstr "Google"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:207 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:207
msgid "Grayscale" msgid "Grayscale"
msgstr "" msgstr "Gri tonlamalı"
#: apps/client/src/pages/dashboard/resumes/page.tsx:41 #: apps/client/src/pages/dashboard/resumes/page.tsx:41
msgid "Grid" msgid "Grid"
@ -648,14 +648,14 @@ msgstr "Başlık"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:106 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:106
msgid "Here, you can update your account information such as your profile picture, name and username." msgid "Here, you can update your account information such as your profile picture, name and username."
msgstr "" msgstr "Burada profil resminiz, adınız ve kullanıcı adınız gibi hesap bilgilerinizi güncelleyebilirsiniz."
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:62 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:62
msgid "Here, you can update your profile to customize and personalize your experience." msgid "Here, you can update your profile to customize and personalize your experience."
msgstr "" msgstr "Burada, deneyiminizi özelleştirmek ve kişiselleştirmek için profilinizi güncelleyebilirsiniz."
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "Gizli" msgstr "Gizli"
@ -672,7 +672,7 @@ msgstr "Simgeleri Gizle"
#: apps/client/src/pages/auth/register/page.tsx:174 #: apps/client/src/pages/auth/register/page.tsx:174
#: apps/client/src/pages/auth/reset-password/page.tsx:88 #: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily." msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr "" msgstr "Parolanızı geçici olarak görüntülemek için <0>Ctrl</0> tuşunu basılı tutun."
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:100
msgid "Horizontal" msgid "Horizontal"
@ -684,7 +684,7 @@ msgstr "Özgeçmişinizi herkese açık olarak sunun"
#: apps/client/src/pages/home/sections/testimonials/index.tsx:70 #: 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>." 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 "Reactive Resume kullanıcılarından geri bildirim veya destek almayı her zaman isterim. İşte aldığım mesajlardan bazıları. Herhangi bir geri bildiriminiz varsa bana <0>{email} adresinden e-posta göndermekten çekinmeyin.</0>."
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
msgid "Icon" msgid "Icon"
@ -692,11 +692,11 @@ msgstr "Simge"
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:47 #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:47
msgid "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form</0>." msgid "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form</0>."
msgstr "" msgstr "Bu uygulama iş arayışınızda size yardımcı olduysa, <0>bu iletişim formu</0> aracılığıyla bana ulaşarak bildirin."
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:126 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:126
msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in."
msgstr "" msgstr "İki faktörlü kimlik doğrulamayı devre dışı bırakırsanız, oturum açarken artık bir doğrulama kodu girmeniz gerekmeyecektir."
#: apps/client/src/pages/home/sections/support/index.tsx:59 #: 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." 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."
@ -704,13 +704,13 @@ msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:309 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:309
msgid "Import" msgid "Import"
msgstr "" msgstr "İçe Aktar"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:208 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:208
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:24 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:24
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:18 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:18
msgid "Import an existing resume" msgid "Import an existing resume"
msgstr "" msgstr "Mevcut bir özgeçmişi içe aktar"
#: apps/client/src/components/ai-actions.tsx:85 #: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing" msgid "Improve Writing"
@ -735,7 +735,7 @@ msgstr "Bilgi"
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39
msgid "Institution" msgid "Institution"
msgstr "" msgstr "Kurum"
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53
msgid "Issuer" msgid "Issuer"
@ -788,17 +788,17 @@ msgstr "john.doe@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Anahtar Kelimeler" msgstr "Anahtar Kelimeler"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:39 #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:39
#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:49 #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:49
msgid "Label" msgid "Label"
msgstr "" msgstr "Etiket"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:95 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:95
msgid "Language" msgid "Language"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "Harf" msgstr "Harf"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "Düzey" msgstr "Düzey"
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON Özgeçmiş, vb."
msgid "List" msgid "List"
msgstr "Liste" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
@ -885,7 +885,7 @@ msgstr "Cihazınızı mı kaybettiniz?"
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:255 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:255
msgid "Main" msgid "Main"
msgstr "" msgstr "Ana Sayfa"
#: apps/client/src/pages/home/sections/features/index.tsx:59 #: apps/client/src/pages/home/sections/features/index.tsx:59
msgid "Manage multiple resumes" msgid "Manage multiple resumes"
@ -900,7 +900,7 @@ msgstr "Mart 2023"
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "Mart 2023 - Günümüz" msgstr "Mart 2023 - Günümüz"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT Lisansı" msgstr "MIT Lisansı"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -933,7 +933,7 @@ msgstr "İsim"
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
msgid "Network" msgid "Network"
msgstr "" msgstr "Sosyal Ağlar"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
msgid "New Password" msgid "New Password"
@ -975,13 +975,13 @@ msgstr "Aç"
#: apps/client/src/pages/home/sections/features/index.tsx:47 #: apps/client/src/pages/home/sections/features/index.tsx:47
msgid "Open Source" msgid "Open Source"
msgstr "" msgstr "ık Kaynak"
#: apps/client/src/services/openai/change-tone.ts:30 #: apps/client/src/services/openai/change-tone.ts:30
#: apps/client/src/services/openai/fix-grammar.ts:28 #: apps/client/src/services/openai/fix-grammar.ts:28
#: apps/client/src/services/openai/improve-writing.ts:28 #: apps/client/src/services/openai/improve-writing.ts:28
msgid "OpenAI did not return any choices for your text." msgid "OpenAI did not return any choices for your text."
msgstr "" msgstr "OpenAI, metniniz için herhangi bir seçenek döndürmedi."
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52
#: apps/client/src/pages/home/sections/features/index.tsx:52 #: apps/client/src/pages/home/sections/features/index.tsx:52
@ -991,61 +991,61 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
msgid "Options" msgid "Options"
msgstr "" msgstr "Seçenekler"
#: 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr "veya şununla devam et"
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39
msgid "Organization" msgid "Organization"
msgstr "" msgstr "Organizasyon"
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72 #: apps/client/src/pages/builder/sidebars/right/index.tsx:72
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
msgid "Page" msgid "Page"
msgstr "" msgstr "Sayfa"
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237
msgid "Page {0}" msgid "Page {0}"
msgstr "" msgstr "Sayfa {0}"
#: apps/client/src/pages/auth/login/page.tsx:99 #: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:169 #: apps/client/src/pages/auth/register/page.tsx:169
#: apps/client/src/pages/auth/reset-password/page.tsx:83 #: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password" msgid "Password"
msgstr "" msgstr "Şifre"
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
msgid "PDF" msgid "PDF"
msgstr "" msgstr "PDF"
#: apps/client/src/pages/home/sections/features/index.tsx:63 #: apps/client/src/pages/home/sections/features/index.tsx:63
msgid "Personal notes for each resume" msgid "Personal notes for each resume"
msgstr "" msgstr "Her özgeçmiş için kişisel notlar"
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73
msgid "Phone" msgid "Phone"
msgstr "" msgstr "Telefon"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr "Fotoğraf: Patrick Tomasso"
#: apps/client/src/pages/home/sections/features/index.tsx:66 #: apps/client/src/pages/home/sections/features/index.tsx:66
msgid "Pick any font from Google Fonts" msgid "Pick any font from Google Fonts"
msgstr "" msgstr "Google Fonts'tan herhangi bir yazı tipini seçin"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:69 #: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:69
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120
msgid "Picture" msgid "Picture"
msgstr "" msgstr "Resim"
#: apps/client/src/pages/auth/verify-email/page.tsx:59 #: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional." msgid "Please note that this step is completely optional."
msgstr "" msgstr "Bu adımın tamamen isteğe bağlı olduğunu lütfen unutmayın."
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:225 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:225
msgid "Please select a file type" msgid "Please select a file type"
@ -1057,49 +1057,49 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:106 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:106
msgid "Portrait" msgid "Portrait"
msgstr "" msgstr "Portre"
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54
msgctxt "Position held at a company, for example, Software Engineer" msgctxt "Position held at a company, for example, Software Engineer"
msgid "Position" msgid "Position"
msgstr "" msgstr "Konum"
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53
msgid "Position" msgid "Position"
msgstr "" msgstr "Konum"
#: apps/client/src/pages/home/sections/features/index.tsx:97 #: apps/client/src/pages/home/sections/features/index.tsx:97
msgid "Powered by" msgid "Powered by"
msgstr "" msgstr "Destekleyen"
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
msgid "Powered by <0>Simple Icons</0>" msgid "Powered by <0>Simple Icons</0>"
msgstr "" msgstr "<0>Simple Icons</0> tarafından desteklenmektedir"
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr "Birincil Renk"
#: apps/client/src/components/ai-actions.tsx:109 #: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112 #: apps/client/src/components/ai-actions.tsx:112
msgid "Professional" msgid "Professional"
msgstr "" msgstr "Profesyonel"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60
msgid "Profile" msgid "Profile"
msgstr "" msgstr "Profil"
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55
msgid "Public" msgid "Public"
msgstr "" msgstr "Herkese Açık"
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53
msgid "Publisher" msgid "Publisher"
msgstr "" msgstr "Yayınlayıcı"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
msgid "Raise an issue" msgid "Raise an issue"
msgstr "" msgstr "Bir sorunu dile getirin"
#: apps/client/src/components/copyright.tsx:38 #: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:52 #: apps/client/src/pages/auth/backup-otp/page.tsx:52
@ -1117,7 +1117,7 @@ msgstr ""
#: apps/client/src/pages/public/page.tsx:71 #: apps/client/src/pages/public/page.tsx:71
#: apps/client/src/pages/public/page.tsx:93 #: apps/client/src/pages/public/page.tsx:93
msgid "Reactive Resume" msgid "Reactive Resume"
msgstr "" msgstr "Reactive Resume"
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39
msgid "Reactive Resume has helped people land jobs at these great companies:" msgid "Reactive Resume has helped people land jobs at these great companies:"
@ -1142,7 +1142,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:129 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:129
msgid "Remove" msgid "Remove"
msgstr "" msgstr "Kaldır"
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:241 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:241
msgid "Remove Page" msgid "Remove Page"
@ -1153,70 +1153,70 @@ msgstr ""
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:93 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:93
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:178 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:178
msgid "Rename" msgid "Rename"
msgstr "" msgstr "Yeniden adlandır"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link" msgid "Resend email confirmation link"
msgstr "" msgstr "E-posta onay bağlantısını yeniden gönder"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:124 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:124
msgid "Reset" msgid "Reset"
msgstr "" msgstr "Sıfırla"
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210
msgid "Reset Layout" msgid "Reset Layout"
msgstr "" msgstr "Düzeni Sıfırla"
#: apps/client/src/pages/auth/reset-password/page.tsx:60 #: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:65 #: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password" msgid "Reset your password"
msgstr "" msgstr "Şifrenizi sıfırlayın"
#: apps/client/src/pages/builder/_components/toolbar.tsx:92 #: apps/client/src/pages/builder/_components/toolbar.tsx:92
msgid "Reset Zoom" msgid "Reset Zoom"
msgstr "" msgstr "Yakınlaştırmayı Sıfırla"
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
#: apps/client/src/pages/dashboard/resumes/page.tsx:20 #: apps/client/src/pages/dashboard/resumes/page.tsx:20
#: apps/client/src/pages/dashboard/resumes/page.tsx:35 #: apps/client/src/pages/dashboard/resumes/page.tsx:35
msgid "Resumes" msgid "Resumes"
msgstr "" msgstr "Özgeçmişler"
#: apps/client/src/pages/home/sections/statistics/index.tsx:14 #: apps/client/src/pages/home/sections/statistics/index.tsx:14
msgid "Resumes Generated" msgid "Resumes Generated"
msgstr "" msgstr "Oluşturulan Özgeçmişler"
#: apps/client/src/pages/home/sections/features/index.tsx:106 #: apps/client/src/pages/home/sections/features/index.tsx:106
msgid "Rich in features, not in pricing." msgid "Rich in features, not in pricing."
msgstr "" msgstr "Fiyat açısından değil, özellikler açısından zengin."
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143
msgid "Rounded" msgid "Rounded"
msgstr "" msgstr "Yuvarlak"
#: 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
msgid "Save Changes" msgid "Save Changes"
msgstr "" msgstr "Değişiklikleri Kaydet"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:166 #: 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." msgid "Scan the QR code below with your authenticator app to setup 2FA on your account."
msgstr "" msgstr "Hesabınızda 2FA'yı kurmak için aşağıdaki QR kodunu kimlik doğrulayıcı uygulamanızla tarayın."
#. Score or honors for the degree, for example, CGPA or magna cum laude #. Score or honors for the degree, for example, CGPA or magna cum laude
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92
msgid "Score" msgid "Score"
msgstr "" msgstr "Skor"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
msgid "Search for a font family" msgid "Search for a font family"
msgstr "" msgstr "Bir yazı tipi ailesi arayın"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
msgid "Search for a font subset" msgid "Search for a font subset"
msgstr "" msgstr "Yazı tipi alt kümesini arayın"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
msgid "Search for a font variant" msgid "Search for a font variant"
@ -1224,7 +1224,7 @@ msgstr ""
#: apps/client/src/components/locale-combobox.tsx:41 #: apps/client/src/components/locale-combobox.tsx:41
msgid "Search for a language" msgid "Search for a language"
msgstr "" msgstr "Dili arayın"
#: apps/client/src/pages/home/sections/features/index.tsx:56 #: apps/client/src/pages/home/sections/features/index.tsx:56
msgid "Secure with two-factor authentication" msgid "Secure with two-factor authentication"
@ -1232,26 +1232,26 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
msgid "Security" msgid "Security"
msgstr "" msgstr "Güvenlik"
#: apps/client/src/pages/home/sections/features/index.tsx:50 #: apps/client/src/pages/home/sections/features/index.tsx:50
msgid "Self-host with Docker" msgid "Self-host with Docker"
msgstr "" msgstr "Docker ile kendi kendine barındırma"
#: apps/client/src/pages/auth/forgot-password/page.tsx:98 #: apps/client/src/pages/auth/forgot-password/page.tsx:98
msgid "Send Email" msgid "Send Email"
msgstr "" msgstr "E-posta gönder"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
msgid "Send me a message" msgid "Send me a message"
msgstr "" msgstr "Mesaj gönder"
#: apps/client/src/components/user-options.tsx:28 #: apps/client/src/components/user-options.tsx:28
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92
#: apps/client/src/pages/dashboard/settings/page.tsx:16 #: apps/client/src/pages/dashboard/settings/page.tsx:16
#: apps/client/src/pages/dashboard/settings/page.tsx:26 #: apps/client/src/pages/dashboard/settings/page.tsx:26
msgid "Settings" msgid "Settings"
msgstr "" msgstr "Ayarlar"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:157 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:157
msgid "Setup two-factor authentication on your account" msgid "Setup two-factor authentication on your account"
@ -1260,11 +1260,11 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/index.tsx:73 #: apps/client/src/pages/builder/sidebars/right/index.tsx:73
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
msgid "Sharing" msgid "Sharing"
msgstr "" msgstr "Paylaşım"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78
msgid "Show" msgid "Show"
msgstr "" msgstr "Göster"
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78
msgid "Show Break Line" msgid "Show Break Line"
@ -1282,32 +1282,32 @@ msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:116 #: apps/client/src/pages/auth/login/page.tsx:116
#: apps/client/src/pages/auth/verify-otp/page.tsx:92 #: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in" msgid "Sign in"
msgstr "" msgstr "Giriş yap"
#: apps/client/src/pages/auth/register/page.tsx:77 #: apps/client/src/pages/auth/register/page.tsx:77
msgid "Sign in now" msgid "Sign in now"
msgstr "" msgstr "Şimdi giriş yap"
#: apps/client/src/pages/auth/login/page.tsx:55 #: apps/client/src/pages/auth/login/page.tsx:55
#: apps/client/src/pages/auth/login/page.tsx:60 #: apps/client/src/pages/auth/login/page.tsx:60
msgid "Sign in to your account" msgid "Sign in to your account"
msgstr "" msgstr "Hesabınızda oturum açın"
#: apps/client/src/pages/home/sections/features/index.tsx:55 #: apps/client/src/pages/home/sections/features/index.tsx:55
msgid "Sign in with Email" msgid "Sign in with Email"
msgstr "" msgstr "E-posta ile giriş yapın"
#: apps/client/src/pages/home/sections/features/index.tsx:53 #: apps/client/src/pages/home/sections/features/index.tsx:53
msgid "Sign in with GitHub" msgid "Sign in with GitHub"
msgstr "" msgstr "Github ile giriş yapın"
#: apps/client/src/pages/home/sections/features/index.tsx:54 #: apps/client/src/pages/home/sections/features/index.tsx:54
msgid "Sign in with Google" msgid "Sign in with Google"
msgstr "" msgstr "Google ile giriş yapın"
#: apps/client/src/pages/auth/register/page.tsx:185 #: apps/client/src/pages/auth/register/page.tsx:185
msgid "Sign up" msgid "Sign up"
msgstr "" msgstr "Kayıt ol"
#: apps/client/src/pages/auth/register/page.tsx:85 #: apps/client/src/pages/auth/register/page.tsx:85
msgid "Signups are currently disabled by the administrator." msgid "Signups are currently disabled by the administrator."
@ -1315,11 +1315,11 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:72 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:72
msgid "Size (in px)" msgid "Size (in px)"
msgstr "" msgstr "Boyut (px cinsinden)"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:227 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:227
msgid "Slug" msgid "Slug"
msgstr "" msgstr "Slug"
#: apps/client/src/services/errors/translate-error.ts:39 #: 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." msgid "Something went wrong while grabbing a preview your resume. Please try again later or raise an issue on GitHub."
@ -1336,7 +1336,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:94
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137
msgid "Square" msgid "Square"
msgstr "" msgstr "Kare"
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 #: 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 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1411,15 +1411,15 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103
msgid "Text Color" msgid "Text Color"
msgstr "" msgstr "Metin Rengi"
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25
msgid "That doesn't look like a valid OpenAI API key." msgid "That doesn't look like a valid OpenAI API key."
msgstr "" msgstr "Bu geçerli bir OpenAI API anahtarına benzemiyor."
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
msgid "The passwords you entered do not match." msgid "The passwords you entered do not match."
msgstr "" msgstr "Girdiğiniz şifreler eşleşmiyor."
#: apps/client/src/services/errors/translate-error.ts:35 #: 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." msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
@ -1429,13 +1429,13 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:73 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:73
msgid "Theme" msgid "Theme"
msgstr "" msgstr "Tema"
#: apps/client/src/services/errors/translate-error.ts:29 #: 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." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" msgstr ""
@ -1549,12 +1549,12 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:56 #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:56
msgid "URL must start with https://" msgid "URL must start with https://"
msgstr "" msgstr "URL https:// ile başlamalıdır"
#: apps/client/src/pages/auth/backup-otp/page.tsx:52 #: apps/client/src/pages/auth/backup-otp/page.tsx:52
#: apps/client/src/pages/auth/backup-otp/page.tsx:57 #: apps/client/src/pages/auth/backup-otp/page.tsx:57
msgid "Use your backup code" msgid "Use your backup code"
msgstr "" msgstr "Yedek kodunuzu kullanın"
#: apps/client/src/services/errors/translate-error.ts:11 #: apps/client/src/services/errors/translate-error.ts:11
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub." msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
@ -1564,23 +1564,23 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username" msgid "Username"
msgstr "" msgstr "Kullanıcı adı"
#: apps/client/src/pages/home/sections/statistics/index.tsx:13 #: apps/client/src/pages/home/sections/statistics/index.tsx:13
msgid "Users Signed Up" msgid "Users Signed Up"
msgstr "" msgstr "Kaydolan Kullanıcılar"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:296 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:296
msgid "Validate" msgid "Validate"
msgstr "" msgstr "Doğrula"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:314 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:314
msgid "Validated" msgid "Validated"
msgstr "" msgstr "Doğrulanmış"
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50
msgid "Value" msgid "Value"
msgstr "" msgstr "Değer"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified" msgid "Verified"
@ -1593,7 +1593,7 @@ msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:43 #: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48 #: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address" msgid "Verify your email address"
msgstr "" msgstr "E-posta adresinizi doğrulayın"
#: apps/client/src/pages/home/sections/hero/index.tsx:26 #: apps/client/src/pages/home/sections/hero/index.tsx:26
msgid "Version 4" msgid "Version 4"
@ -1601,11 +1601,11 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51
msgid "Views" msgid "Views"
msgstr "" msgstr "Görüntülenmeler"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
msgid "Visible" msgid "Visible"
msgstr "" msgstr "Görünür"
#: apps/client/src/pages/auth/verify-email/page.tsx:61 #: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
@ -1613,26 +1613,26 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63
msgid "Website" msgid "Website"
msgstr "" msgstr "İnternet sitesi"
#: apps/client/src/pages/home/sections/hero/index.tsx:34 #: apps/client/src/pages/home/sections/hero/index.tsx:34
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr "En son sürümdeki yenilikler"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: uk\n" "Language: uk\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-26 14:53\n" "PO-Revision-Date: 2024-02-18 00:08\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@ -20,11 +20,11 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
msgid "You have enabled two-factor authentication successfully." msgid "You have enabled two-factor authentication successfully."
msgstr "" msgstr "Ви успішно ввімкнули двофакторну автентифікацію."
#: apps/client/src/pages/home/sections/features/index.tsx:57 #: apps/client/src/pages/home/sections/features/index.tsx:57
msgid "{templatesCount} resume templates to choose from" msgid "{templatesCount} resume templates to choose from"
msgstr "" msgstr "{templatesCount} шаблонів резюме на вибір"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
msgid "{value, plural, one {Column} other {Columns}}" msgid "{value, plural, one {Column} other {Columns}}"
@ -87,7 +87,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
msgid "A4" msgid "A4"
msgstr "" msgstr "A4"
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. #. 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 #: 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 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
msgid "Account" msgid "Account"
msgstr "" msgstr "Обліковий запис"
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
msgid "Add a custom field" msgid "Add a custom field"
@ -106,11 +106,11 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 #: 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." msgctxt "For example, add a new work experience, or add a new profile."
msgid "Add a new item" msgid "Add a new item"
msgstr "" msgstr "Додайте новий елемент"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68
msgid "Add a new item" 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:79
#: apps/client/src/pages/builder/sidebars/left/index.tsx:196 #: 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 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269
msgid "Add New Page" msgid "Add New Page"
msgstr "" msgstr "Додати нову сторінку"
#: apps/client/src/components/ai-actions.tsx:79 #: apps/client/src/components/ai-actions.tsx:79
msgid "AI" msgid "AI"
msgstr "" msgstr "ШІ"
#: apps/client/src/pages/auth/register/page.tsx:74 #: apps/client/src/pages/auth/register/page.tsx:74
msgid "Already have an account?" msgid "Already have an account?"
@ -135,7 +135,7 @@ msgstr ""
#: apps/client/src/pages/home/sections/features/index.tsx:135 #: apps/client/src/pages/home/sections/features/index.tsx:135
msgid "and many more..." msgid "and many more..."
msgstr "" msgstr "та багато іншого..."
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
msgid "Anyone with the link can view and download the resume." 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 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83
msgid "API Key" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -168,11 +168,11 @@ msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39
msgid "Are you sure you want to unlock this resume?" msgid "Are you sure you want to unlock this resume?"
msgstr "" msgstr "Ви впевнені, що хочете розблокувати це резюме?"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
msgid "Are you sure?" msgid "Are you sure?"
msgstr "" msgstr "Ви впевнені?"
#. For example, Computer Science or Business Administration #. For example, Computer Science or Business Administration
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73
@ -195,15 +195,15 @@ msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:94 #: apps/client/src/pages/auth/forgot-password/page.tsx:94
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:236 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:236
msgid "Back" msgid "Back"
msgstr "" msgstr "Назад"
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
msgid "Background Color" msgid "Background Color"
msgstr "" msgstr "Колір фону"
#: apps/client/src/pages/auth/backup-otp/page.tsx:75 #: apps/client/src/pages/auth/backup-otp/page.tsx:75
msgid "Backup Code" msgid "Backup Code"
msgstr "" msgstr "Резервний код"
#: apps/client/src/pages/auth/backup-otp/page.tsx:80 #: 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." 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/components/copyright.tsx:27
#: apps/client/src/pages/home/sections/contributors/index.tsx:20 #: apps/client/src/pages/home/sections/contributors/index.tsx:20
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" 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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "Скасувати"
#: apps/client/src/components/ai-actions.tsx:103 #: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106 #: 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/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password" msgid "Change Password"
msgstr "" msgstr "Змінити пароль"
#: apps/client/src/components/ai-actions.tsx:97 #: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone" msgid "Change Tone"
@ -274,23 +274,23 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:242 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:242
msgid "Close" msgid "Close"
msgstr "" msgstr "Закрити"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199
msgid "Code" msgid "Code"
msgstr "" msgstr "Код"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50
msgid "Code must be exactly 6 digits long." msgid "Code must be exactly 6 digits long."
msgstr "" msgstr "Код має містити рівно 6 цифр."
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108
msgid "Columns" msgid "Columns"
msgstr "" msgstr "Стовпці"
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39
msgid "Company" msgid "Company"
msgstr "" msgstr "Компанія"
#: apps/client/src/components/ai-actions.tsx:115 #: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118 #: apps/client/src/components/ai-actions.tsx:118
@ -299,61 +299,61 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
msgid "Confirm New Password" 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:232
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239
msgid "Continue" msgid "Continue"
msgstr "" msgstr "Продовжити"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
msgid "Copy" msgid "Copy"
msgstr "" msgstr "Скопіювати"
#: apps/client/src/pages/builder/_components/toolbar.tsx:132 #: apps/client/src/pages/builder/_components/toolbar.tsx:132
msgid "Copy Link to Resume" msgid "Copy Link to Resume"
msgstr "" msgstr "Скопіювати посилання до резюме"
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78
msgid "Copy to Clipboard" 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr "Створити"
#: apps/client/src/pages/auth/register/page.tsx:67 #: apps/client/src/pages/auth/register/page.tsx:67
#: apps/client/src/pages/auth/register/page.tsx:72 #: apps/client/src/pages/auth/register/page.tsx:72
msgid "Create a new account" 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" msgid "Create a new item"
msgstr "" msgstr "Створити новий елемент"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:177 #: 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/grid/_components/create-card.tsx:24
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19
msgid "Create a new resume" msgid "Create a new resume"
msgstr "" msgstr "Створіть нове резюме"
#: apps/client/src/pages/auth/login/page.tsx:65 #: apps/client/src/pages/auth/login/page.tsx:65
msgctxt "This is a link to create a new account" msgctxt "This is a link to create a new account"
msgid "Create one now" msgid "Create one now"
msgstr "" msgstr "Створити зараз"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:258 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:258
msgid "Create Sample Resume" msgid "Create Sample Resume"
msgstr "" msgstr "Створити зразок резюме"
#: apps/client/src/pages/home/sections/features/index.tsx:62 #: apps/client/src/pages/home/sections/features/index.tsx:62
msgid "Custom resume sections" msgid "Custom resume sections"
msgstr "" msgstr "Користувацькі розділи резюме"
#: apps/client/src/stores/resume.ts:45 #: apps/client/src/stores/resume.ts:45
msgid "Custom Section" msgid "Custom Section"
msgstr "" msgstr "Користувацький розділ"
#: apps/client/src/pages/home/sections/features/index.tsx:60 #: apps/client/src/pages/home/sections/features/index.tsx:60
msgid "Customisable colour palettes" msgid "Customisable colour palettes"
@ -365,46 +365,46 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62
msgid "Danger Zone" msgid "Danger Zone"
msgstr "" msgstr "Небезпечна зона"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82
msgid "Dark" msgid "Dark"
msgstr "" msgstr "Темний"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198
msgid "Delete" msgid "Delete"
msgstr "" msgstr "Видалити"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr "Опис"
#: apps/client/src/pages/home/sections/features/index.tsx:58 #: apps/client/src/pages/home/sections/features/index.tsx:58
msgid "Design single/multi page resumes" msgid "Design single/multi page resumes"
@ -412,7 +412,7 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
msgid "Disable" msgid "Disable"
msgstr "" msgstr "Вимкнути"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155
msgid "Disable 2FA" msgid "Disable 2FA"
@ -427,11 +427,11 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr "Документація"
#: apps/client/src/pages/auth/login/page.tsx:62 #: apps/client/src/pages/auth/login/page.tsx:62
msgid "Don't have an account?" msgid "Don't have an account?"
msgstr "" msgstr "Немає облікового запису?"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
msgid "Don't know where to begin? Hit the docs!" msgid "Don't know where to begin? Hit the docs!"
@ -456,21 +456,21 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:144 #: apps/client/src/pages/builder/_components/toolbar.tsx:144
#: apps/client/src/pages/public/page.tsx:103 #: apps/client/src/pages/public/page.tsx:103
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr "Завантажити в PDF"
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58
msgid "Downloads" msgid "Downloads"
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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:182 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:182
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -480,7 +480,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
msgid "Edit" msgid "Edit"
msgstr "" msgstr "Редагувати"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174
msgid "Effects" msgid "Effects"
@ -492,15 +492,15 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email" msgid "Email"
msgstr "" msgstr "Пошта"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159
msgid "Enable 2FA" msgid "Enable 2FA"
msgstr "" msgstr "Увімкнути 2FA"
#: apps/client/src/pages/auth/reset-password/page.tsx:67 #: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure." msgid "Enter a new password below, and make sure it's secure."
msgstr "" msgstr "Введіть новий пароль нижче та переконайтеся, що він безпечний."
#: apps/client/src/pages/auth/backup-otp/page.tsx:59 #: apps/client/src/pages/auth/backup-otp/page.tsx:59
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
@ -520,7 +520,7 @@ msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
msgid "Errors" msgid "Errors"
msgstr "" msgstr "Помилки"
#: apps/client/src/pages/home/sections/support/index.tsx:78 #: 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!" 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 #: apps/client/src/pages/home/sections/hero/index.tsx:40
msgid "Finally," msgid "Finally,"
msgstr "" msgstr "Нарешті,"
#: apps/client/src/components/ai-actions.tsx:90 #: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar" msgid "Fix Spelling & Grammar"
@ -557,7 +557,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
msgid "Font Size" msgid "Font Size"
msgstr "" msgstr "Розмір шрифту"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
msgid "Font Subset" 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:32
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40
msgid "Format" msgid "Format"
msgstr "" msgstr "Формат"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
msgid "Found a bug, or have an idea for a new feature?" 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 "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1462,11 +1462,11 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39
msgctxt "Name of the Award" msgctxt "Name of the Award"
msgid "Title" msgid "Title"
msgstr "" msgstr "Назва"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:195 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:195
msgid "Title" msgid "Title"
msgstr "" msgstr "Назва"
#: apps/client/src/pages/builder/_components/toolbar.tsx:106 #: apps/client/src/pages/builder/_components/toolbar.tsx:106
msgid "Toggle Page Break Line" msgid "Toggle Page Break Line"
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" msgstr ""
@ -1597,15 +1597,15 @@ msgstr ""
#: apps/client/src/pages/home/sections/hero/index.tsx:26 #: apps/client/src/pages/home/sections/hero/index.tsx:26
msgid "Version 4" msgid "Version 4"
msgstr "" msgstr "Версія 4"
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51
msgid "Views" msgid "Views"
msgstr "" msgstr "Перегляди"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
msgid "Visible" msgid "Visible"
msgstr "" msgstr "Видимий"
#: apps/client/src/pages/auth/verify-email/page.tsx:61 #: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
@ -1613,32 +1613,32 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63
msgid "Website" msgid "Website"
msgstr "" msgstr "Вебсторінка"
#: apps/client/src/pages/home/sections/hero/index.tsx:34 #: apps/client/src/pages/home/sections/hero/index.tsx:34
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr "Що нового в останній версії"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:88 #: apps/client/src/pages/auth/login/page.tsx:88
msgid "You can also enter your username." msgid "You can also enter your username."
msgstr "" msgstr "Також ви можете ввести своє ім'я користувача."
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 #: 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." 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:49
#: apps/client/src/pages/auth/forgot-password/page.tsx:54 #: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "You've got mail!" msgid "You've got mail!"
msgstr "" msgstr "Ви отримали листа!"
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52
msgid "Your account and all your data has been deleted successfully. Goodbye!" msgid "Your account and all your data has been deleted successfully. Goodbye!"
@ -1679,13 +1679,12 @@ msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
msgid "Your password has been updated successfully." msgid "Your password has been updated successfully."
msgstr "" msgstr "Ваш пароль успішно оновлено."
#: apps/client/src/pages/builder/_components/toolbar.tsx:80 #: apps/client/src/pages/builder/_components/toolbar.tsx:80
msgid "Zoom In" msgid "Zoom In"
msgstr "" msgstr "Збільшити"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr "Зменшити"

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n" "Language: vi\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-04 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -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 #: apps/client/src/pages/home/sections/features/index.tsx:57
msgid "{templatesCount} resume templates to choose from" msgid "{templatesCount} resume templates to choose from"
msgstr "" 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 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
msgid "{value, plural, one {Column} other {Columns}}" msgid "{value, plural, one {Column} other {Columns}}"
@ -87,16 +87,16 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
msgid "A4" 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. #. 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 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
msgid "Accepts only {accept} files" 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 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
msgid "Account" msgid "Account"
msgstr "" msgstr "Tài khoản"
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
msgid "Add a custom field" msgid "Add a custom field"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" msgid "Downloads"
msgstr "Tải về" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "Tải về"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "Từ khóa" msgstr "Từ khóa"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n" "Language: zh\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-06 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -150,7 +150,7 @@ msgstr "任何人都可以通过此链接查看或下载简历。您可以在个
msgid "API Key" msgid "API Key"
msgstr "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?" msgid "Are you sure you want to delete this item?"
msgstr "您确定要删除此项目吗?" msgstr "您确定要删除此项目吗?"
@ -235,7 +235,7 @@ msgstr "构建于"
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "来自社区,服务社区。" msgstr "来自社区,服务社区。"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr "复制链接到简历"
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "复制到剪贴板" msgstr "复制到剪贴板"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "创建" msgstr "创建"
@ -328,7 +328,7 @@ msgstr "创建"
msgid "Create a new account" msgid "Create a new account"
msgstr "创建账户" msgstr "创建账户"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "创建新条目" msgstr "创建新条目"
@ -377,15 +377,15 @@ msgstr "深色"
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "日期或日期范围" msgstr "日期或日期范围"
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr "删除"
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "描述" msgstr "描述"
@ -462,7 +462,7 @@ msgstr "下载 PDF"
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr "下载"
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "复制现有项目" msgstr "复制现有项目"
@ -573,7 +573,7 @@ msgstr "例如,您可以在此处注明您发送给的公司或者职位描述
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107
msgid "Forget" msgid "Forget"
msgstr "你好" msgstr "遗弃"
#: apps/client/src/pages/auth/login/page.tsx:120 #: apps/client/src/pages/auth/login/page.tsx:120
msgid "Forgot Password?" msgid "Forgot Password?"
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "在这里,您可以更新个人资料,定制个性化的体验。" msgstr "在这里,您可以更新个人资料,定制个性化的体验。"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "隐藏" msgstr "隐藏"
@ -788,10 +788,10 @@ msgstr "zhangsan@example.com"
msgid "JSON" msgid "JSON"
msgstr "JSON" msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "关键词" msgstr "关键词"
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "信件" msgstr "信件"
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "等级" msgstr "等级"
@ -852,7 +852,7 @@ msgstr "LinkedIn、JSON 简历等"
msgid "List" msgid "List"
msgstr "列表" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "2023 年 3 月至今" msgstr "2023 年 3 月至今"
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "MIT 许可证" msgstr "MIT 许可证"
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr "集成 OpenAI"
msgid "Options" msgid "Options"
msgstr "设置" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "通过以下方式继续" msgstr "通过以下方式继续"
@ -1030,7 +1030,7 @@ msgstr "每份简历的个人注释"
msgid "Phone" msgid "Phone"
msgstr "电话" msgstr "电话"
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "摄影:帕特里克-托马索" msgstr "摄影:帕特里克-托马索"
@ -1194,7 +1194,7 @@ msgstr "物美价廉。"
msgid "Rounded" msgid "Rounded"
msgstr "圆角" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr "已存储"
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr "主题"
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "连接浏览器时出现错误。请确保谷歌浏览器正在运行并可连接。" msgstr "连接浏览器时出现错误。请确保谷歌浏览器正在运行并可连接。"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "单击浮动工具栏中的撤消按钮即可恢复此操作。" msgstr "单击浮动工具栏中的撤消按钮即可恢复此操作。"
@ -1531,7 +1531,7 @@ msgstr "解锁简历将允许您再次对其进行更改。"
msgid "Unverified" msgid "Unverified"
msgstr "未验证" 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" msgid "Update an existing item"
msgstr "更新现有项目" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr "网站"
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "最新版本的新功能" msgstr "最新版本的新功能"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "您可以通过用逗号或回车分隔来添加多个关键字。" msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
@ -1688,4 +1688,3 @@ msgstr "放大"
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "缩小" msgstr "缩小"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n" "Language: zh\n"
"Project-Id-Version: reactive-resume\n" "Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-01-11 00:08\n" "PO-Revision-Date: 2024-02-01 09:12\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Chinese Traditional\n" "Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "API Key" msgid "API Key"
msgstr "" 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?" msgid "Are you sure you want to delete this item?"
msgstr "" msgstr ""
@ -235,7 +235,7 @@ msgstr ""
msgid "By the community, for the community." msgid "By the community, for the community."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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/lock.tsx:49
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
@ -318,7 +318,7 @@ msgstr ""
msgid "Copy to Clipboard" msgid "Copy to Clipboard"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -328,7 +328,7 @@ msgstr ""
msgid "Create a new account" msgid "Create a new account"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
msgid "Create a new item" msgid "Create a new item"
msgstr "" msgstr ""
@ -377,15 +377,15 @@ msgstr ""
msgid "Date" 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/education.tsx:110
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
msgid "Date or Date Range" msgid "Date or Date Range"
msgstr "" msgstr ""
#: 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/_dialogs/resume.tsx:157
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 #: 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:134
@ -398,11 +398,11 @@ msgstr ""
msgid "Delete Account" 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/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/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" msgid "Description"
msgstr "" msgstr ""
@ -462,7 +462,7 @@ msgstr ""
msgid "Downloads" 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/_dialogs/resume.tsx:245
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 #: 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:102
@ -470,7 +470,7 @@ msgstr ""
msgid "Duplicate" 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" msgid "Duplicate an existing item"
msgstr "" msgstr ""
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: 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 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden" msgid "Hidden"
msgstr "" msgstr ""
@ -788,10 +788,10 @@ msgstr ""
msgid "JSON" msgid "JSON"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
msgid "Keywords" msgid "Keywords"
msgstr "" msgstr ""
@ -823,7 +823,7 @@ msgid "Letter"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
msgid "Level" msgid "Level"
msgstr "" msgstr ""
@ -852,7 +852,7 @@ msgstr ""
msgid "List" msgid "List"
msgstr "" 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/experience.tsx:86
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 #: 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/education.tsx:112
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
msgid "March 2023 - Present" msgid "March 2023 - Present"
msgstr "" msgstr ""
@ -914,13 +914,13 @@ msgid "MIT License"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:106 #: 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/custom-section.tsx:57
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 #: 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/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/publications.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx: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/builder/sidebars/left/sections/custom/section.tsx:43
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
msgid "Name" msgid "Name"
@ -993,7 +993,7 @@ msgstr ""
msgid "Options" msgid "Options"
msgstr "" 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." msgctxt "The user can either login with email/password, or continue with GitHub or Google."
msgid "or continue with" msgid "or continue with"
msgstr "" msgstr ""
@ -1030,7 +1030,7 @@ msgstr ""
msgid "Phone" msgid "Phone"
msgstr "" msgstr ""
#: apps/client/src/pages/auth/layout.tsx:75 #: apps/client/src/pages/auth/layout.tsx:76
msgid "Photograph by Patrick Tomasso" msgid "Photograph by Patrick Tomasso"
msgstr "" msgstr ""
@ -1194,7 +1194,7 @@ msgstr ""
msgid "Rounded" msgid "Rounded"
msgstr "" 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/resumes/_dialogs/resume.tsx:244
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
@ -1370,10 +1370,10 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:138
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx: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/publications.tsx:95
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
@ -1435,7 +1435,7 @@ msgstr ""
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx: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." msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
msgstr "" msgstr ""
@ -1531,7 +1531,7 @@ msgstr ""
msgid "Unverified" msgid "Unverified"
msgstr "" 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" msgid "Update an existing item"
msgstr "" 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/awards.tsx:87
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx: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/education.tsx:124
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 #: 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/projects.tsx:94
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
@ -1629,10 +1629,10 @@ msgstr ""
msgid "What's new in the latest version" msgid "What's new in the latest version"
msgstr "" msgstr ""
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 #: 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." msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr "" msgstr ""
@ -1688,4 +1688,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:86 #: apps/client/src/pages/builder/_components/toolbar.tsx:86
msgid "Zoom Out" msgid "Zoom Out"
msgstr "" msgstr ""

View File

@ -14,7 +14,7 @@ export const SocialAuth = () => {
{providers.includes("github") && ( {providers.includes("github") && (
<Button asChild size="lg" className="w-full !bg-[#222] !text-white hover:!bg-[#222]/80"> <Button asChild size="lg" className="w-full !bg-[#222] !text-white hover:!bg-[#222]/80">
<a href="/api/auth/github"> <a href="/api/auth/github">
<GithubLogo className="mr-3 h-4 w-4" /> <GithubLogo className="mr-3 size-4" />
{t`GitHub`} {t`GitHub`}
</a> </a>
</Button> </Button>
@ -27,7 +27,7 @@ export const SocialAuth = () => {
className="w-full !bg-[#4285F4] !text-white hover:!bg-[#4285F4]/80" className="w-full !bg-[#4285F4] !text-white hover:!bg-[#4285F4]/80"
> >
<a href="/api/auth/google"> <a href="/api/auth/google">
<GoogleLogo className="mr-3 h-4 w-4" /> <GoogleLogo className="mr-3 size-4" />
{t`Google`} {t`Google`}
</a> </a>
</Button> </Button>

View File

@ -23,10 +23,11 @@ export const AuthLayout = () => {
const hideDivider = !providers.includes("email") || providers.length === 1; const hideDivider = !providers.includes("email") || providers.length === 1;
return ( return (
// eslint-disable-next-line tailwindcss/enforces-shorthand -- size-screen not implemented yet
<div className="flex h-screen w-screen"> <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="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"> <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} /> <Logo className="-ml-3" size={96} />
</Link> </Link>

View File

@ -82,7 +82,7 @@ export const ProfilesDialog = () => {
<FormLabel htmlFor="iconSlug">{t`Icon`}</FormLabel> <FormLabel htmlFor="iconSlug">{t`Icon`}</FormLabel>
<FormControl> <FormControl>
<div className="flex items-center gap-x-2"> <div className="flex items-center gap-x-2">
<Avatar className="h-8 w-8 bg-white"> <Avatar className="size-8 bg-white">
{field.value && ( {field.value && (
<AvatarImage <AvatarImage
className="p-1.5" className="p-1.5"

View File

@ -43,7 +43,7 @@ export const LeftSidebar = () => {
return ( return (
<div className="flex bg-secondary-accent/30"> <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"> <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"> <Link to="/dashboard">
<Icon size={14} /> <Icon size={14} />
</Link> </Link>

View File

@ -93,7 +93,7 @@ export const PictureOptions = () => {
> >
<Tooltip content={t`Square`}> <Tooltip content={t`Square`}>
<ToggleGroupItem value="square"> <ToggleGroupItem value="square">
<div className="h-3 w-3 border border-foreground" /> <div className="size-3 border border-foreground" />
</ToggleGroupItem> </ToggleGroupItem>
</Tooltip> </Tooltip>
@ -136,19 +136,19 @@ export const PictureOptions = () => {
> >
<Tooltip content={t`Square`}> <Tooltip content={t`Square`}>
<ToggleGroupItem value="square"> <ToggleGroupItem value="square">
<div className="h-3 w-3 border border-foreground" /> <div className="size-3 border border-foreground" />
</ToggleGroupItem> </ToggleGroupItem>
</Tooltip> </Tooltip>
<Tooltip content={t`Rounded`}> <Tooltip content={t`Rounded`}>
<ToggleGroupItem value="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> </ToggleGroupItem>
</Tooltip> </Tooltip>
<Tooltip content={t`Circle`}> <Tooltip content={t`Circle`}>
<ToggleGroupItem value="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> </ToggleGroupItem>
</Tooltip> </Tooltip>
</ToggleGroup> </ToggleGroup>

View File

@ -50,7 +50,7 @@ export const PictureSection = () => {
return ( return (
<div className="flex items-center gap-x-4"> <div className="flex items-center gap-x-4">
<div className="group relative cursor-pointer" onClick={onAvatarClick}> <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} /> <AvatarImage src={picture.url} />
</Avatar> </Avatar>

View File

@ -71,7 +71,7 @@ export const SectionIcon = ({ id, name, icon, ...props }: SectionIconProps) => {
return ( return (
<Tooltip side="right" content={name ?? section.name}> <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 })} {icon ?? getSectionIcon(id, { size: 14 })}
</Button> </Button>
</Tooltip> </Tooltip>

View File

@ -242,7 +242,7 @@ export const LayoutSection = () => {
<Button <Button
size="icon" size="icon"
variant="ghost" variant="ghost"
className="h-8 w-8" className="size-8"
onClick={() => onRemovePage(pageIndex)} onClick={() => onRemovePage(pageIndex)}
> >
<TrashSimple size={12} className="text-error" /> <TrashSimple size={12} className="text-error" />

View File

@ -30,11 +30,11 @@ export const ThemeSection = () => {
setValue("metadata.theme.primary", color); setValue("metadata.theme.primary", color);
}} }}
className={cn( 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", 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>
))} ))}
</div> </div>
@ -45,7 +45,7 @@ export const ThemeSection = () => {
<Popover> <Popover>
<PopoverTrigger asChild> <PopoverTrigger asChild>
<div <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 }} style={{ backgroundColor: theme.primary }}
/> />
</PopoverTrigger> </PopoverTrigger>
@ -75,7 +75,7 @@ export const ThemeSection = () => {
<Popover> <Popover>
<PopoverTrigger asChild> <PopoverTrigger asChild>
<div <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 }} style={{ backgroundColor: theme.background }}
/> />
</PopoverTrigger> </PopoverTrigger>
@ -105,7 +105,7 @@ export const ThemeSection = () => {
<Popover> <Popover>
<PopoverTrigger asChild> <PopoverTrigger asChild>
<div <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 }} style={{ backgroundColor: theme.text }}
/> />
</PopoverTrigger> </PopoverTrigger>

View File

@ -66,7 +66,7 @@ type SectionIconProps = ButtonProps & {
export const SectionIcon = ({ id, name, icon, ...props }: SectionIconProps) => ( export const SectionIcon = ({ id, name, icon, ...props }: SectionIconProps) => (
<Tooltip side="left" content={name}> <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 })} {icon ?? getSectionIcon(id, { size: 14 })}
</Button> </Button>
</Tooltip> </Tooltip>

View File

@ -21,7 +21,7 @@ const ActiveIndicator = ({ className }: Props) => (
initial={{ opacity: 0, x: -20 }} initial={{ opacity: 0, x: -20 }}
animate={{ opacity: 1, x: 0 }} animate={{ opacity: 1, x: 0 }}
className={cn( 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, className,
)} )}
/> />
@ -98,7 +98,7 @@ export const Sidebar = ({ setOpen }: SidebarProps) => {
return ( return (
<div className="flex h-full flex-col gap-y-4"> <div className="flex h-full flex-col gap-y-4">
<div className="ml-12 flex justify-center lg:ml-0"> <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="/"> <Link to="/">
<Icon size={24} className="mx-auto hidden lg:block" /> <Icon size={24} className="mx-auto hidden lg:block" />
</Link> </Link>

View File

@ -87,7 +87,7 @@ export const ResumeCard = ({ resume }: Props) => {
animate={{ opacity: 1 }} animate={{ opacity: 1 }}
loading="lazy" loading="lazy"
alt={resume.title} alt={resume.title}
className="h-full w-full object-cover" className="size-full object-cover"
src={`${url}?cache=${new Date().getTime()}`} src={`${url}?cache=${new Date().getTime()}`}
/> />
)} )}

View File

@ -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 w-full items-center justify-between">
<div className="flex items-center space-x-4"> <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> <h4 className="w-[220px] truncate font-medium lg:w-[320px]">{title}</h4>
<p className="hidden text-xs opacity-75 sm:block">{description}</p> <p className="hidden text-xs opacity-75 sm:block">{description}</p>
</div> </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>
</div> </div>
); );

View File

@ -36,11 +36,11 @@ export const ResumesPage = () => {
</motion.h1> </motion.h1>
<TabsList> <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 /> <SquaresFour />
<span className="ml-2 hidden sm:block">{t`Grid`}</span> <span className="ml-2 hidden sm:block">{t`Grid`}</span>
</TabsTrigger> </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 /> <List />
<span className="ml-2 hidden sm:block">{t`List`}</span> <span className="ml-2 hidden sm:block">{t`List`}</span>
</TabsTrigger> </TabsTrigger>

View File

@ -23,7 +23,24 @@ export const Footer = () => (
<Copyright className="mt-6" /> <Copyright className="mt-6" />
</div> </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"> <div className="absolute bottom-0 right-0 lg:space-x-2">
<LocaleSwitch /> <LocaleSwitch />
<ThemeSwitch /> <ThemeSwitch />

View File

@ -2,7 +2,7 @@ export const Decoration = {
Grid: () => ( Grid: () => (
<svg <svg
aria-hidden="true" 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> <defs>
<pattern <pattern

View File

@ -5,17 +5,17 @@
"esModuleInterop": false, "esModuleInterop": false,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"strict": true, "strict": true,
"types": ["vite/client", "vitest"] "types": ["vite/client", "vitest"],
}, },
"files": [], "files": [],
"include": [], "include": [],
"references": [ "references": [
{ {
"path": "./tsconfig.app.json" "path": "./tsconfig.app.json",
}, },
{ {
"path": "./tsconfig.spec.json" "path": "./tsconfig.spec.json",
} },
], ],
"extends": "../../tsconfig.base.json" "extends": "../../tsconfig.base.json",
} }

View File

@ -2,7 +2,7 @@
import { lingui } from "@lingui/vite-plugin"; import { lingui } from "@lingui/vite-plugin";
import { nxViteTsPaths } from "@nx/vite/plugins/nx-tsconfig-paths.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"; import { defineConfig, searchForWorkspaceRoot, splitVendorChunkPlugin } from "vite";
export default defineConfig({ export default defineConfig({
@ -32,7 +32,9 @@ export default defineConfig({
plugins: [ plugins: [
react({ react({
plugins: [["@lingui/swc-plugin", {}]], babel: {
plugins: ["macros"],
},
}), }),
lingui(), lingui(),
nxViteTsPaths(), nxViteTsPaths(),

View File

@ -48,52 +48,42 @@ export class PrinterService {
} }
async printResume(resume: ResumeDto) { async printResume(resume: ResumeDto) {
return this.utils.getCachedOrSet( const start = performance.now();
`user:${resume.userId}:storage:resumes:${resume.id}`,
async () => {
const start = performance.now();
const url = await retry(() => this.generateResume(resume), { const url = await retry(() => this.generateResume(resume), {
retries: 3, retries: 3,
randomize: true, randomize: true,
onRetry: (_, attempt) => { onRetry: (_, attempt) => {
this.logger.log(`Retrying to print resume #${resume.id}, attempt #${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 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) { async printPreview(resume: ResumeDto) {
return this.utils.getCachedOrSet( const start = performance.now();
`user:${resume.userId}:storage:previews:${resume.id}`,
async () => {
const start = performance.now();
const url = await retry(() => this.generatePreview(resume), { const url = await retry(() => this.generatePreview(resume), {
retries: 3, retries: 3,
randomize: true, randomize: true,
onRetry: (_, attempt) => { onRetry: (_, attempt) => {
this.logger.log( this.logger.log(
`Retrying to generate preview of resume #${resume.id}, attempt #${attempt}`, `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 duration = Number(performance.now() - start).toFixed(0);
this.logger.debug(`Chrome took ${duration}ms to generate preview`);
return url;
} }
async generateResume(resume: ResumeDto) { async generateResume(resume: ResumeDto) {

View File

@ -115,7 +115,7 @@ export class ResumeController {
@Patch(":id/lock") @Patch(":id/lock")
@UseGuards(TwoFactorGuard) @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); return this.resumeService.lock(user.id, id, set);
} }

View File

@ -54,10 +54,10 @@ export class ResumeService {
}, },
}); });
await Promise.all([ // await Promise.all([
this.redis.del(`user:${userId}:resumes`), // this.redis.del(`user:${userId}:resumes`),
this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)), // this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)),
]); // ]);
return resume; return resume;
} }
@ -75,37 +75,24 @@ export class ResumeService {
}, },
}); });
await Promise.all([ // await Promise.all([
this.redis.del(`user:${userId}:resumes`), // this.redis.del(`user:${userId}:resumes`),
this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)), // this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)),
]); // ]);
return resume; return resume;
} }
findAll(userId: string) { findAll(userId: string) {
return this.utils.getCachedOrSet(`user:${userId}:resumes`, () => return this.prisma.resume.findMany({ where: { userId }, orderBy: { updatedAt: "desc" } });
this.prisma.resume.findMany({
where: { userId },
orderBy: { updatedAt: "desc" },
}),
);
} }
findOne(id: string, userId?: string) { findOne(id: string, userId?: string) {
if (userId) { if (userId) {
return this.utils.getCachedOrSet(`user:${userId}:resume:${id}`, () => return this.prisma.resume.findUniqueOrThrow({ where: { userId_id: { userId, id } } });
this.prisma.resume.findUniqueOrThrow({
where: { userId_id: { userId, id } },
}),
);
} }
return this.utils.getCachedOrSet(`user:public:resume:${id}`, () => return this.prisma.resume.findUniqueOrThrow({ where: { id } });
this.prisma.resume.findUniqueOrThrow({
where: { id },
}),
);
} }
async findOneStatistics(userId: string, id: string) { async findOneStatistics(userId: string, id: string) {
@ -149,12 +136,12 @@ export class ResumeService {
where: { userId_id: { userId, id } }, where: { userId_id: { userId, id } },
}); });
await Promise.all([ // await Promise.all([
this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)), // this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)),
this.redis.del(`user:${userId}:resumes`), // this.redis.del(`user:${userId}:resumes`),
this.redis.del(`user:${userId}:storage:resumes:${id}`), // this.redis.del(`user:${userId}:storage:resumes:${id}`),
this.redis.del(`user:${userId}:storage:previews:${id}`), // this.redis.del(`user:${userId}:storage:previews:${id}`),
]); // ]);
return resume; return resume;
} catch (error) { } catch (error) {
@ -171,10 +158,10 @@ export class ResumeService {
where: { userId_id: { userId, id } }, where: { userId_id: { userId, id } },
}); });
await Promise.all([ // await Promise.all([
this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)), // this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)),
this.redis.del(`user:${userId}:resumes`), // this.redis.del(`user:${userId}:resumes`),
]); // ]);
return resume; return resume;
} }
@ -182,8 +169,8 @@ export class ResumeService {
async remove(userId: string, id: string) { async remove(userId: string, id: string) {
await Promise.all([ await Promise.all([
// Remove cached keys // Remove cached keys
this.redis.del(`user:${userId}:resumes`), // this.redis.del(`user:${userId}:resumes`),
this.redis.del(`user:${userId}:resume:${id}`), // this.redis.del(`user:${userId}:resume:${id}`),
// Remove files in storage, and their cached keys // Remove files in storage, and their cached keys
this.storageService.deleteObject(userId, "resumes", id), this.storageService.deleteObject(userId, "resumes", id),

View File

@ -4,13 +4,13 @@
"include": [], "include": [],
"references": [ "references": [
{ {
"path": "./tsconfig.app.json" "path": "./tsconfig.app.json",
}, },
{ {
"path": "./tsconfig.spec.json" "path": "./tsconfig.spec.json",
} },
], ],
"compilerOptions": { "compilerOptions": {
"esModuleInterop": true "esModuleInterop": true,
} },
} }

View File

@ -7,16 +7,16 @@
"noImplicitOverride": true, "noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true, "noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true, "noImplicitReturns": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true,
}, },
"files": [], "files": [],
"include": [], "include": [],
"references": [ "references": [
{ {
"path": "./tsconfig.lib.json" "path": "./tsconfig.lib.json",
}, },
{ {
"path": "./tsconfig.spec.json" "path": "./tsconfig.spec.json",
} },
] ],
} }

View File

@ -1,5 +1,5 @@
import { type Dispatch, type SetStateAction, useEffect, useState } from "react"; import { type Dispatch, type SetStateAction, useEffect, useState } from "react";
import { useLocalStorage, useMediaQuery, useUpdateEffect } from "usehooks-ts"; import { useLocalStorage, useMediaQuery } from "usehooks-ts";
const COLOR_SCHEME_QUERY = "(prefers-color-scheme: dark)"; const COLOR_SCHEME_QUERY = "(prefers-color-scheme: dark)";
@ -17,9 +17,9 @@ export const useTheme = (): UseThemeOutput => {
const [isDarkMode, setDarkMode] = useState<boolean>(isDarkOS); const [isDarkMode, setDarkMode] = useState<boolean>(isDarkOS);
const [theme, setTheme] = useLocalStorage<Theme>("theme", "system"); const [theme, setTheme] = useLocalStorage<Theme>("theme", "system");
useUpdateEffect(() => { useEffect(() => {
if (theme === "system") setDarkMode(isDarkOS); if (theme === "system") setDarkMode((prev) => !prev);
}, [isDarkOS]); }, [theme]);
useEffect(() => { useEffect(() => {
switch (theme) { switch (theme) {

View File

@ -5,17 +5,17 @@
"esModuleInterop": false, "esModuleInterop": false,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"strict": true, "strict": true,
"types": ["vite/client", "vitest"] "types": ["vite/client", "vitest"],
}, },
"files": [], "files": [],
"include": [], "include": [],
"references": [ "references": [
{ {
"path": "./tsconfig.lib.json" "path": "./tsconfig.lib.json",
}, },
{ {
"path": "./tsconfig.spec.json" "path": "./tsconfig.spec.json",
} },
], ],
"extends": "../../tsconfig.base.json" "extends": "../../tsconfig.base.json",
} }

View File

@ -7,16 +7,16 @@
"noImplicitOverride": true, "noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true, "noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true, "noImplicitReturns": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true,
}, },
"files": [], "files": [],
"include": [], "include": [],
"references": [ "references": [
{ {
"path": "./tsconfig.lib.json" "path": "./tsconfig.lib.json",
}, },
{ {
"path": "./tsconfig.spec.json" "path": "./tsconfig.spec.json",
} },
] ],
} }

View File

@ -7,16 +7,16 @@
"noImplicitOverride": true, "noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true, "noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true, "noImplicitReturns": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true,
}, },
"files": [], "files": [],
"include": [], "include": [],
"references": [ "references": [
{ {
"path": "./tsconfig.lib.json" "path": "./tsconfig.lib.json",
}, },
{ {
"path": "./tsconfig.spec.json" "path": "./tsconfig.spec.json",
} },
] ],
} }

View File

@ -28,7 +28,7 @@ export const AccordionTrigger = forwardRef<
{...props} {...props}
> >
{children} {children}
<CaretDown className="h-4 w-4 shrink-0 transition-transform duration-200" /> <CaretDown className="size-4 shrink-0 transition-transform duration-200" />
</AccordionPrimitive.Trigger> </AccordionPrimitive.Trigger>
</AccordionPrimitive.Header> </AccordionPrimitive.Header>
)); ));

View File

@ -8,7 +8,7 @@ export const Avatar = forwardRef<
>(({ className, ...props }, ref) => ( >(({ className, ...props }, ref) => (
<AvatarPrimitive.Root <AvatarPrimitive.Root
ref={ref} ref={ref}
className={cn("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full", className)} className={cn("relative flex size-10 shrink-0 overflow-hidden rounded-full", className)}
{...props} {...props}
/> />
)); ));
@ -21,7 +21,7 @@ export const AvatarImage = forwardRef<
>(({ className, ...props }, ref) => ( >(({ className, ...props }, ref) => (
<AvatarPrimitive.Image <AvatarPrimitive.Image
ref={ref} ref={ref}
className={cn("aspect-square h-full w-full object-cover", className)} className={cn("aspect-square size-full object-cover", className)}
{...props} {...props}
/> />
)); ));
@ -35,7 +35,7 @@ export const AvatarFallback = forwardRef<
<AvatarPrimitive.Fallback <AvatarPrimitive.Fallback
ref={ref} ref={ref}
className={cn( className={cn(
"flex h-full w-full items-center justify-center rounded-full bg-secondary", "flex size-full items-center justify-center rounded-full bg-secondary",
className, className,
)} )}
{...props} {...props}

View File

@ -10,7 +10,7 @@ export const Checkbox = forwardRef<
<CheckboxPrimitive.Root <CheckboxPrimitive.Root
ref={ref} ref={ref}
className={cn( className={cn(
"peer h-4 w-4 shrink-0 rounded border border-primary focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-primary disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground", "peer size-4 shrink-0 rounded border border-primary focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-primary disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
className, className,
)} )}
{...props} {...props}

View File

@ -81,7 +81,7 @@ export const Combobox = forwardRef(
</span> </span>
<CaretDown <CaretDown
className={cn( 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", open && "rotate-180",
)} )}
/> />
@ -119,7 +119,7 @@ export const Combobox = forwardRef(
> >
<Check <Check
className={cn( className={cn(
"mr-2 h-4 w-4 opacity-0", "mr-2 size-4 opacity-0",
!props.multiple && props.value === option.value && "opacity-100", !props.multiple && props.value === option.value && "opacity-100",
props.multiple && props.value?.includes(option.value) && "opacity-100", props.multiple && props.value?.includes(option.value) && "opacity-100",
)} )}

View File

@ -12,7 +12,7 @@ export const Command = forwardRef<
>(({ className, ...props }, ref) => ( >(({ className, ...props }, ref) => (
<CommandPrimitive <CommandPrimitive
ref={ref} ref={ref}
className={cn("flex h-full w-full flex-col overflow-hidden rounded border", className)} className={cn("flex size-full flex-col overflow-hidden rounded border", className)}
{...props} {...props}
/> />
)); ));
@ -24,7 +24,7 @@ interface CommandDialogProps extends DialogProps {}
export const CommandDialog = ({ children, ...props }: CommandDialogProps) => ( export const CommandDialog = ({ children, ...props }: CommandDialogProps) => (
<Dialog {...props}> <Dialog {...props}>
<DialogContent className="overflow-hidden p-0"> <DialogContent className="overflow-hidden p-0">
<Command className="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-secondary [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5"> <Command className="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-secondary [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:size-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:size-5">
{children} {children}
</Command> </Command>
</DialogContent> </DialogContent>

View File

@ -31,7 +31,7 @@ export const ContextMenuSubTrigger = forwardRef<
{...props} {...props}
> >
{children} {children}
<CaretRight className="ml-auto h-4 w-4" /> <CaretRight className="ml-auto size-4" />
</ContextMenuPrimitive.SubTrigger> </ContextMenuPrimitive.SubTrigger>
)); ));
@ -103,7 +103,7 @@ export const ContextMenuCheckboxItem = forwardRef<
checked={checked} checked={checked}
{...props} {...props}
> >
<span className="absolute left-2 flex h-4 w-4 items-center justify-center"> <span className="absolute left-2 flex size-4 items-center justify-center">
<ContextMenuPrimitive.ItemIndicator> <ContextMenuPrimitive.ItemIndicator>
<Check size={14} /> <Check size={14} />
</ContextMenuPrimitive.ItemIndicator> </ContextMenuPrimitive.ItemIndicator>
@ -126,7 +126,7 @@ export const ContextMenuRadioItem = forwardRef<
)} )}
{...props} {...props}
> >
<span className="absolute left-2 flex h-4 w-4 items-center justify-center"> <span className="absolute left-2 flex size-4 items-center justify-center">
<ContextMenuPrimitive.ItemIndicator> <ContextMenuPrimitive.ItemIndicator>
<Check size={14} className="fill-current" /> <Check size={14} className="fill-current" />
</ContextMenuPrimitive.ItemIndicator> </ContextMenuPrimitive.ItemIndicator>

View File

@ -45,7 +45,7 @@ export const DialogContent = forwardRef<
> >
{children} {children}
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-secondary focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary data-[state=open]:text-secondary-foreground"> <DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-secondary focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary data-[state=open]:text-secondary-foreground">
<X className="h-4 w-4" /> <X className="size-4" />
<span className="sr-only">Close</span> <span className="sr-only">Close</span>
</DialogPrimitive.Close> </DialogPrimitive.Close>
</DialogPrimitive.Content> </DialogPrimitive.Content>

View File

@ -31,7 +31,7 @@ export const DropdownMenuSubTrigger = forwardRef<
{...props} {...props}
> >
{children} {children}
<CaretRight className="ml-auto h-4 w-4" /> <CaretRight className="ml-auto size-4" />
</DropdownMenuPrimitive.SubTrigger> </DropdownMenuPrimitive.SubTrigger>
)); ));
@ -109,9 +109,9 @@ export const DropdownMenuCheckboxItem = forwardRef<
checked={checked} checked={checked}
{...props} {...props}
> >
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center"> <span className="absolute left-2 flex size-3.5 items-center justify-center">
<DropdownMenuPrimitive.ItemIndicator> <DropdownMenuPrimitive.ItemIndicator>
<Check className="h-4 w-4" /> <Check className="size-4" />
</DropdownMenuPrimitive.ItemIndicator> </DropdownMenuPrimitive.ItemIndicator>
</span> </span>
{children} {children}
@ -132,7 +132,7 @@ export const DropdownMenuRadioItem = forwardRef<
)} )}
{...props} {...props}
> >
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center"> <span className="absolute left-2 flex size-3.5 items-center justify-center">
<DropdownMenuPrimitive.ItemIndicator> <DropdownMenuPrimitive.ItemIndicator>
<DotOutline size={18} weight="fill" className="fill-current" /> <DotOutline size={18} weight="fill" className="fill-current" />
</DropdownMenuPrimitive.ItemIndicator> </DropdownMenuPrimitive.ItemIndicator>

View File

@ -34,7 +34,7 @@ import { Link } from "@tiptap/extension-link";
import { TextAlign } from "@tiptap/extension-text-align"; import { TextAlign } from "@tiptap/extension-text-align";
import { Underline } from "@tiptap/extension-underline"; import { Underline } from "@tiptap/extension-underline";
import { Editor, EditorContent, EditorContentProps, useEditor } from "@tiptap/react"; import { Editor, EditorContent, EditorContentProps, useEditor } from "@tiptap/react";
import { StarterKit } from "@tiptap/starter-kit"; import StarterKit from "@tiptap/starter-kit";
import { forwardRef, useCallback } from "react"; import { forwardRef, useCallback } from "react";
import { useForm } from "react-hook-form"; import { useForm } from "react-hook-form";
import { z } from "zod"; import { z } from "zod";
@ -445,6 +445,7 @@ export const RichInput = forwardRef<Editor, RichInputProps>(
Underline, Underline,
Highlight, Highlight,
Link.extend({ Link.extend({
inclusive: false,
addKeyboardShortcuts() { addKeyboardShortcuts() {
return { return {
"Mod-k": () => { "Mod-k": () => {

View File

@ -26,7 +26,7 @@ export const ScrollArea = forwardRef<
className={cn("relative overflow-hidden", className)} className={cn("relative overflow-hidden", className)}
{...props} {...props}
> >
<ScrollAreaPrimitive.Viewport className="h-full w-full rounded-[inherit]"> <ScrollAreaPrimitive.Viewport className="size-full rounded-[inherit]">
{children} {children}
</ScrollAreaPrimitive.Viewport> </ScrollAreaPrimitive.Viewport>
<ScrollBar orientation={orientation} className={cn(hideScrollbar && "opacity-0")} /> <ScrollBar orientation={orientation} className={cn(hideScrollbar && "opacity-0")} />

View File

@ -23,7 +23,7 @@ export const SelectTrigger = forwardRef<
> >
{children} {children}
<SelectPrimitive.Icon asChild> <SelectPrimitive.Icon asChild>
<CaretUpDown className="h-4 w-4 opacity-50" /> <CaretUpDown className="size-4 opacity-50" />
</SelectPrimitive.Icon> </SelectPrimitive.Icon>
</SelectPrimitive.Trigger> </SelectPrimitive.Trigger>
)); ));
@ -86,9 +86,9 @@ export const SelectItem = forwardRef<
)} )}
{...props} {...props}
> >
<span className="absolute right-2 flex h-3.5 w-3.5 items-center justify-center"> <span className="absolute right-2 flex size-3.5 items-center justify-center">
<SelectPrimitive.ItemIndicator> <SelectPrimitive.ItemIndicator>
<Check className="h-4 w-4" /> <Check className="size-4" />
</SelectPrimitive.ItemIndicator> </SelectPrimitive.ItemIndicator>
</span> </span>
<SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText> <SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>

Some files were not shown because too many files have changed in this diff Show More