From 8f532bf4a6eaf32d32b838b36131428559e03d51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jes=C3=BAs=20Alejo=20Sillero?= Date: Sat, 11 Oct 2025 01:15:35 +0200 Subject: [PATCH 1/6] docs: add Gengar, Glalie, and Leafish templates while also updating image paths to relative in-repo URLs in README.md --- README.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d8919580..62f00e46 100644 --- a/README.md +++ b/README.md @@ -37,17 +37,21 @@ Start creating your standout resume with Reactive Resume today! ## Templates -| Azurill | Bronzor | Chikorita | -| ------------------------------------------------------------ | ----------------------------------------------------------- | ----------------------------------------------------------- | -| | | | +| Azurill | Bronzor | Chikorita | +| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------- | +| | | | -| Ditto | Kakuna | Nosepass | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| | | | +| Ditto | Gengar | Glalie | +| -------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | +| | | | -| Onyx | Pikachu | Rhyhorn | -| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | -| | | | +| Kakuna | Leafish | Nosepass | +| ---------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------ | +| | | | + +| Onyx | Pikachu | Rhyhorn | +| ------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| | | | ## Features From 2de24d5b55a58257f7764abfb19fcda5fe717d29 Mon Sep 17 00:00:00 2001 From: Alay Naru Date: Sun, 12 Oct 2025 18:49:44 +0530 Subject: [PATCH 2/6] fix(template): fix gengar template summary section not rendering in sidebar --- apps/artboard/src/templates/gengar.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/artboard/src/templates/gengar.tsx b/apps/artboard/src/templates/gengar.tsx index a1d5a86c..69650c55 100644 --- a/apps/artboard/src/templates/gengar.tsx +++ b/apps/artboard/src/templates/gengar.tsx @@ -531,6 +531,10 @@ const mapSectionToComponent = (section: SectionKey) => { case "education": { return ; } + case "summary": { + return ; + } + case "awards": { return ; } @@ -592,8 +596,6 @@ export const Gengar = ({ columns, isFirstPage = false }: TemplateProps) => {
0 ? "col-span-2" : "col-span-3")}> - {isFirstPage && } -
{main.map((section) => ( {mapSectionToComponent(section)} From 9bdc61b50d0b3a41cc4231686f8bbbbffdc9e13b Mon Sep 17 00:00:00 2001 From: Gourav Date: Mon, 13 Oct 2025 22:07:01 +0530 Subject: [PATCH 3/6] feat(rich-input): Highlight the selected options of rich inputs --- libs/ui/src/components/rich-input.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/libs/ui/src/components/rich-input.tsx b/libs/ui/src/components/rich-input.tsx index df72d1c8..d5418012 100644 --- a/libs/ui/src/components/rich-input.tsx +++ b/libs/ui/src/components/rich-input.tsx @@ -151,6 +151,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("bold")} disabled={!editor.can().chain().toggleBold().run()} + className={editor.isActive("bold") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleBold().run()} > @@ -163,6 +164,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("italic")} disabled={!editor.can().chain().focus().toggleItalic().run()} + className={editor.isActive("italic") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleItalic().run()} > @@ -175,6 +177,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("strike")} disabled={!editor.can().chain().focus().toggleStrike().run()} + className={editor.isActive("strike") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleStrike().run()} > @@ -187,6 +190,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("underline")} disabled={!editor.can().chain().focus().toggleUnderline().run()} + className={editor.isActive("underline") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleUnderline().run()} > @@ -199,6 +203,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("highlight")} disabled={!editor.can().chain().focus().toggleHighlight().run()} + className={editor.isActive("highlight") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleHighlight().run()} > @@ -217,6 +222,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("code")} disabled={!editor.can().chain().focus().toggleCode().run()} + className={editor.isActive("code") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleCode().run()} > @@ -229,6 +235,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("codeBlock")} disabled={!editor.can().chain().focus().toggleCodeBlock().run()} + className={editor.isActive("codeBlock") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleCodeBlock().run()} > @@ -241,6 +248,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("heading", { level: 1 })} disabled={!editor.can().chain().focus().toggleHeading({ level: 1 }).run()} + className={editor.isActive("heading", { level: 1 }) ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleHeading({ level: 1 }).run()} > @@ -253,6 +261,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("heading", { level: 2 })} disabled={!editor.can().chain().focus().toggleHeading({ level: 2 }).run()} + className={editor.isActive("heading", { level: 2 }) ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleHeading({ level: 2 }).run()} > @@ -265,6 +274,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("heading", { level: 3 })} disabled={!editor.can().chain().focus().toggleHeading({ level: 3 }).run()} + className={editor.isActive("heading", { level: 3 }) ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleHeading({ level: 3 }).run()} > @@ -276,6 +286,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { size="sm" type="button" pressed={editor.isActive("paragraph")} + className={editor.isActive("paragraph") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().setParagraph().run()} > @@ -288,6 +299,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "left" })} disabled={!editor.can().chain().focus().setTextAlign("left").run()} + className={editor.isActive({ textAlign: "left" }) ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().setTextAlign("left").run()} > @@ -300,6 +312,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "center" })} disabled={!editor.can().chain().focus().setTextAlign("center").run()} + className={editor.isActive({ textAlign: "center" }) ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().setTextAlign("center").run()} > @@ -312,6 +325,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "right" })} disabled={!editor.can().chain().focus().setTextAlign("right").run()} + className={editor.isActive({ textAlign: "right" }) ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().setTextAlign("right").run()} > @@ -324,6 +338,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "justify" })} disabled={!editor.can().chain().focus().setTextAlign("justify").run()} + className={editor.isActive({ textAlign: "justify" }) ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().setTextAlign("justify").run()} > @@ -336,6 +351,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("bulletList")} disabled={!editor.can().chain().focus().toggleBulletList().run()} + className={editor.isActive("bulletList") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleBulletList().run()} > @@ -348,6 +364,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("orderedList")} disabled={!editor.can().chain().focus().toggleOrderedList().run()} + className={editor.isActive("orderedList") ? "bg-secondary" : undefined} onPressedChange={() => editor.chain().focus().toggleOrderedList().run()} > From 21fd079f943472396124df1352d23693f0b792ac Mon Sep 17 00:00:00 2001 From: Gourav Date: Mon, 13 Oct 2025 22:52:25 +0530 Subject: [PATCH 4/6] feat(rich-input): updating datastate on pressing rich input options - when selecting the rich input option earlier only aria-pressed="true" was changing and not datastate now updated the code to manually update the data-state --- libs/ui/src/components/rich-input.tsx | 34 +++++++++++++-------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/libs/ui/src/components/rich-input.tsx b/libs/ui/src/components/rich-input.tsx index d5418012..37134362 100644 --- a/libs/ui/src/components/rich-input.tsx +++ b/libs/ui/src/components/rich-input.tsx @@ -151,7 +151,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("bold")} disabled={!editor.can().chain().toggleBold().run()} - className={editor.isActive("bold") ? "bg-secondary" : undefined} + data-state={editor.isActive("bold") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleBold().run()} > @@ -164,7 +164,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("italic")} disabled={!editor.can().chain().focus().toggleItalic().run()} - className={editor.isActive("italic") ? "bg-secondary" : undefined} + data-state={editor.isActive("italic") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleItalic().run()} > @@ -177,7 +177,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("strike")} disabled={!editor.can().chain().focus().toggleStrike().run()} - className={editor.isActive("strike") ? "bg-secondary" : undefined} + data-state={editor.isActive("strike") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleStrike().run()} > @@ -190,7 +190,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("underline")} disabled={!editor.can().chain().focus().toggleUnderline().run()} - className={editor.isActive("underline") ? "bg-secondary" : undefined} + data-state={editor.isActive("underline") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleUnderline().run()} > @@ -203,7 +203,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("highlight")} disabled={!editor.can().chain().focus().toggleHighlight().run()} - className={editor.isActive("highlight") ? "bg-secondary" : undefined} + data-state={editor.isActive("highlight") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleHighlight().run()} > @@ -222,7 +222,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("code")} disabled={!editor.can().chain().focus().toggleCode().run()} - className={editor.isActive("code") ? "bg-secondary" : undefined} + data-state={editor.isActive("code") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleCode().run()} > @@ -235,7 +235,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("codeBlock")} disabled={!editor.can().chain().focus().toggleCodeBlock().run()} - className={editor.isActive("codeBlock") ? "bg-secondary" : undefined} + data-state={editor.isActive("codeBlock") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleCodeBlock().run()} > @@ -248,7 +248,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("heading", { level: 1 })} disabled={!editor.can().chain().focus().toggleHeading({ level: 1 }).run()} - className={editor.isActive("heading", { level: 1 }) ? "bg-secondary" : undefined} + data-state={editor.isActive("heading", { level: 1 }) ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleHeading({ level: 1 }).run()} > @@ -261,7 +261,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("heading", { level: 2 })} disabled={!editor.can().chain().focus().toggleHeading({ level: 2 }).run()} - className={editor.isActive("heading", { level: 2 }) ? "bg-secondary" : undefined} + data-state={editor.isActive("heading", { level: 2 }) ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleHeading({ level: 2 }).run()} > @@ -274,7 +274,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("heading", { level: 3 })} disabled={!editor.can().chain().focus().toggleHeading({ level: 3 }).run()} - className={editor.isActive("heading", { level: 3 }) ? "bg-secondary" : undefined} + data-state={editor.isActive("heading", { level: 3 }) ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleHeading({ level: 3 }).run()} > @@ -286,7 +286,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { size="sm" type="button" pressed={editor.isActive("paragraph")} - className={editor.isActive("paragraph") ? "bg-secondary" : undefined} + data-state={editor.isActive("paragraph") ? "on" : "off"} onPressedChange={() => editor.chain().focus().setParagraph().run()} > @@ -299,7 +299,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "left" })} disabled={!editor.can().chain().focus().setTextAlign("left").run()} - className={editor.isActive({ textAlign: "left" }) ? "bg-secondary" : undefined} + data-state={editor.isActive({ textAlign: "left" }) ? "on" : "off"} onPressedChange={() => editor.chain().focus().setTextAlign("left").run()} > @@ -312,7 +312,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "center" })} disabled={!editor.can().chain().focus().setTextAlign("center").run()} - className={editor.isActive({ textAlign: "center" }) ? "bg-secondary" : undefined} + data-state={editor.isActive({ textAlign: "center" }) ? "on" : "off"} onPressedChange={() => editor.chain().focus().setTextAlign("center").run()} > @@ -325,7 +325,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "right" })} disabled={!editor.can().chain().focus().setTextAlign("right").run()} - className={editor.isActive({ textAlign: "right" }) ? "bg-secondary" : undefined} + data-state={editor.isActive({ textAlign: "right" }) ? "on" : "off"} onPressedChange={() => editor.chain().focus().setTextAlign("right").run()} > @@ -338,7 +338,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive({ textAlign: "justify" })} disabled={!editor.can().chain().focus().setTextAlign("justify").run()} - className={editor.isActive({ textAlign: "justify" }) ? "bg-secondary" : undefined} + data-state={editor.isActive({ textAlign: "justify" }) ? "on" : "off"} onPressedChange={() => editor.chain().focus().setTextAlign("justify").run()} > @@ -351,7 +351,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("bulletList")} disabled={!editor.can().chain().focus().toggleBulletList().run()} - className={editor.isActive("bulletList") ? "bg-secondary" : undefined} + data-state={editor.isActive("bulletList") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleBulletList().run()} > @@ -364,7 +364,7 @@ const Toolbar = ({ editor }: { editor: Editor }) => { type="button" pressed={editor.isActive("orderedList")} disabled={!editor.can().chain().focus().toggleOrderedList().run()} - className={editor.isActive("orderedList") ? "bg-secondary" : undefined} + data-state={editor.isActive("orderedList") ? "on" : "off"} onPressedChange={() => editor.chain().focus().toggleOrderedList().run()} > From 2977e3528a010f37bf233aba23a11e6b3504f40b Mon Sep 17 00:00:00 2001 From: Crowdin Bot Date: Sat, 18 Oct 2025 00:10:39 +0000 Subject: [PATCH 5/6] New Crowdin translations by GitHub Action --- apps/client/src/locales/te-IN/messages.po | 230 +++++++++++----------- 1 file changed, 115 insertions(+), 115 deletions(-) diff --git a/apps/client/src/locales/te-IN/messages.po b/apps/client/src/locales/te-IN/messages.po index 315e89df..3fbec3c1 100644 --- a/apps/client/src/locales/te-IN/messages.po +++ b/apps/client/src/locales/te-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: te\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-01 09:33\n" +"PO-Revision-Date: 2025-10-16 00:11\n" "Last-Translator: \n" "Language-Team: Telugu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -20,15 +20,15 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "మీరు ద్వితియ ప్రామాణీకరణను విజయవంతంగా ప్రారంభించారు." +msgstr "మీరు రెండు-దశల ధృవీకరణను విజయవంతంగా ప్రారంభించారు." #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" -msgstr "{templatesCount}" +msgstr "ఎంచుకోవడానికి {templatesCount} రిజ్యూమ్ టెంప్లేట్లు ఉన్నాయి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142 msgid "{value, plural, one {Column} other {Columns}}" -msgstr "{value, plural,one {పంక్తి} other {స్తంభము}}" +msgstr "{value, plural, one {కళమ్} other {కళమ్స్}}" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25 msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give." @@ -36,127 +36,127 @@ msgstr "<0>నా ఖాళీ సమయంలో, ఇతర గొప్ప ఓ #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56 msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<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." -msgstr "" +msgstr "<0>ఈ యాప్ పర్ఫెక్ట్‌గా లేదని నాకు తెలుసు, కానీ అలా చేయాలని నేను కోరుకుంటున్నాను.<1>మీరు మీ రిజ్యూమ్ సృష్టించే సమయంలో ఏదైనా సమస్యలను ఎదుర్కొంటే లేదా మీకు మరియు ఇతర వినియోగదారులకు ఇది సులభం చేసే ఏదైనా ఆలోచన ఉంటే, దయచేసి రిపోజిటరీలో ఒక ఇష్యూ రాయండి లేదా నాకు ఇమెయిల్ పంపండి." #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy 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>గమనిక: OpenAI API ని ఉపయోగించడం ద్వారా, మీరు <1> ఉపయోగ నిబంధనలను గుర్తించి అంగీకరిస్తున్నారు మరియు<2> గోప్యతా విధానం OpenAI ద్వారా వివరించబడింది. సేవ యొక్క ఏదైనా అక్రమ లేదా అనధికార వినియోగానికి రియాక్టివ్ రెజ్యూమ్ ఎటువంటి బాధ్యత వహించదని మరియు దాని ఫలితంగా కలిగే ఏవైనా పరిణామాలు లేదా బాధ్యతలు వినియోగదారుడిపై మాత్రమే ఆధారపడి ఉంటాయని దయచేసి గమనించండి." #: 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.<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." -msgstr "" +msgstr "<0>రియాక్టివ్ రెజ్యూమ్ కోసం కమ్యూనిటీ డాక్యుమెంటేషన్ రాయడానికి చాలా సమయం వెచ్చించింది, మరియు అది యాప్‌ను ప్రారంభించడంలో మీకు సహాయపడుతుందని నాకు నమ్మకం ఉంది.<1>మీరు ప్రారంభించడానికి సహాయపడే అనేక ఉదాహరణలు ఉన్నాయి, అలాగే మీరు ఇంకా తెలియని కొన్ని ఫీచర్లు కూడా ఉన్నాయి, అవి మీ పర్ఫెక్ట్ రిజ్యూమ్ తయారీలో ఉపయోగపడతాయి." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140 msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" +msgstr "<0>రెండు-దశల ధృవీకరణ ప్రస్తుతం అచేతనం చేయబడింది. మీరు మీ ఖాతాలో ఆథెంటికేటర్ యాప్‌ను జోడించడం ద్వారా దానిని ప్రారంభించవచ్చు." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133 msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" +msgstr "<0>రెండు-దశల ధృవీకరణ ప్రారంభించబడింది. మీరు ప్రతిసారి సైన్ ఇన్ చేసినప్పుడు కోడ్‌ను నమోదు చేయమని అడుగబడుతుంది." #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 msgid "A free and open-source resume builder" -msgstr "" +msgstr "ఉచిత మరియు ఓపెన్-సోర్స్ రిజ్యూమ్ బిల్డర్" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" +msgstr "మీ రిజ్యూమ్‌ను సృష్టించడం, నవీకరించడం మరియు పంచుకోవడం వంటి ప్రక్రియను సులభతరం చేసే ఉచిత మరియు ఓపెన్-సోర్స్ రిజ్యూమ్ బిల్డర్." #: apps/client/src/pages/builder/_components/toolbar.tsx:59 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 msgid "A link has been copied to your clipboard." -msgstr "" +msgstr "లింక్ మీ క్లిప్‌బోర్డ్‌కి కాపీ చేయబడింది." #: apps/client/src/components/copyright.tsx:29 msgid "A passion project by <0>Amruth Pillai" -msgstr "" +msgstr "<0>అమృత్ పిల్లై రూపొందించిన ఒక అభిరుచి ప్రాజెక్ట్" #: apps/client/src/pages/auth/forgot-password/page.tsx:57 msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" +msgstr "మీరు ఇచ్చిన ఇమెయిల్‌తో ఖాతా ఉన్నట్లయితే, పాస్వర్డ్ రీసెట్ లింక్ మీ ఇన్‌బాక్స్‌కి పంపబడింది." #: apps/client/src/services/errors/translate-error.ts:43 msgid "A resume with this slug already exists, please pick a different unique identifier." -msgstr "" +msgstr "ఈ స్లగ్‌తో రిజ్యూమ్ ఇప్పటికే ఉంది, దయచేసి వేరే ప్రత్యేక గుర్తింపును ఎంచుకోండి." #: apps/client/src/services/errors/translate-error.ts:10 msgid "A user with this email address and/or username already exists." -msgstr "" +msgstr "ఈ ఇమెయిల్ చిరునామా మరియు/లేదా యూజర్‌నేమ్ ఉన్న ఒక యూజర్ ఇప్పటికే ఉంది." #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 msgid "A4" -msgstr "" +msgstr "ఎ4" #. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270 msgid "Accepts only {accept} files" -msgstr "" +msgstr "కేవలం {accept} ఫైళ్లను మాత్రమే స్వీకరిస్తుంది" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:105 msgid "Account" -msgstr "" +msgstr "ఖాతా" #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" -msgstr "" +msgstr "కస్టమ్ ఫీల్డ్ జోడించండి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" -msgstr "" +msgstr "కొత్త అంశాన్ని జోడించండి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:91 msgid "Add a new item" -msgstr "" +msgstr "కొత్త అంశాన్ని జోడించండి" #: apps/client/src/pages/builder/sidebars/left/index.tsx:146 #: apps/client/src/pages/builder/sidebars/left/index.tsx:263 msgid "Add a new section" -msgstr "" +msgstr "కొత్త విభాగాన్ని జోడించండి" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266 msgid "Add New Page" -msgstr "" +msgstr "కొత్త పేజీని జోడించండి" #: apps/client/src/components/ai-actions.tsx:79 msgid "AI" -msgstr "" +msgstr "AI" #: apps/client/src/pages/auth/register/page.tsx:71 msgid "Already have an account?" -msgstr "" +msgstr "ఇప్పటికే ఖాతా ఉందా?" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144 msgid "An error occurred while validating the file." -msgstr "" +msgstr "ఫైల్‌ను ధృవీకరిస్తున్నప్పుడు ఒక లోపం సంభవించింది." #: apps/client/src/pages/public/error.tsx:23 msgid "An internal server error occurred." -msgstr "" +msgstr "సర్వర్ లోపం సంభవించింది." #: apps/client/src/pages/public/error.tsx:32 msgid "An unexpected error occurred." -msgstr "" +msgstr "ఊహించని లోపం సంభవించింది." #: apps/client/src/pages/home/sections/features/index.tsx:134 msgid "and many more..." -msgstr "" +msgstr "మరియు మరెన్నో..." #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 msgid "Anyone with the link can view and download the resume." -msgstr "" +msgstr "లింక్ ఉన్న ఎవరికైనా రిజ్యూమ్‌ను వీక్షించడానికి మరియు డౌన్‌లోడ్ చేసుకోవడానికి అవకాశం ఉంది." #: apps/client/src/pages/builder/_components/toolbar.tsx:60 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" +msgstr "ఈ లింక్ ఉన్న ఎవరికైనా రిజ్యూమ్‌ను వీక్షించడానికి మరియు డౌన్‌లోడ్ చేసుకోవడానికి అవకాశం ఉంది. దీన్ని మీ ప్రొఫైల్‌లో లేదా రిక్రూటర్లతో పంచుకోండి." #: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41 msgid "Apply Custom CSS" -msgstr "స్వంత సి.ఎస్ఎ.స్. ని వర్తింపజేయండి" +msgstr "స్వంత CSS ని వర్తింపజేయండి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "Are you sure you want to delete this item?" @@ -164,28 +164,28 @@ msgstr "మీరు ఈ అంశాన్ని ఖచ్చితంగా #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:149 msgid "Are you sure you want to delete your resume?" -msgstr "" +msgstr "మీరు నిజంగా మీ రిజ్యూమ్‌ను తొలగించాలనుకుంటున్నారా?" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125 msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" +msgstr "మీరు నిజంగా రెండు-దశల ధృవీకరణను అచేతనం చేయాలనుకుంటున్నారా?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 msgid "Are you sure you want to lock this resume?" -msgstr "" +msgstr "మీరు నిజంగా ఈ రిజ్యూమ్‌ను లాక్ చేయాలనుకుంటున్నారా?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 msgid "Are you sure you want to unlock this resume?" -msgstr "" +msgstr "మీరు నిజంగా ఈ రిజ్యూమ్‌ను అన్‌లాక్ చేయాలనుకుంటున్నారా?" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Are you sure?" -msgstr "" +msgstr "నిజంగా చేయాలనుకుంటున్నారా?" #. For example, Computer Science or Business Administration #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 msgid "Area of Study" -msgstr "" +msgstr "అధ్యయన విభాగం" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:79 msgid "Aspect Ratio" @@ -193,223 +193,223 @@ msgstr "కారక నిష్పత్తి" #: apps/client/src/pages/home/sections/features/index.tsx:51 msgid "Available in {languagesCount} languages" -msgstr "{languagesCount} భాషలలో లభిస్తుంది" +msgstr "{languagesCount} భాషల్లో అందుబాటులో ఉంది" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 msgid "Awarder" -msgstr "" +msgstr "పురస్కార దాత" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258 msgid "Azure API Version" -msgstr "" +msgstr "అజ్యూర్ API వెర్షన్" #: apps/client/src/services/openai/client.ts:18 msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI." -msgstr "" +msgstr "Azure OpenAI ఉపయోగిస్తున్నప్పుడు Azure OpenAI బేస్ URL, డిప్లాయ్‌మెంట్ పేరు (మోడల్) మరియు API వెర్షన్ అవసరం." #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183 msgid "Azure OpenAI Resource URL" -msgstr "" +msgstr "అజూర్ OpenAI రిసోర్స్ URL" #: apps/client/src/pages/auth/backup-otp/page.tsx:99 #: apps/client/src/pages/auth/forgot-password/page.tsx:100 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243 msgid "Back" -msgstr "" +msgstr "వెనుకకి" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 msgid "Background Color" -msgstr "" +msgstr "నేపథ్య రంగు" #: apps/client/src/pages/auth/backup-otp/page.tsx:75 msgid "Backup Code" -msgstr "" +msgstr "బ్యాకప్ కోడ్" #: apps/client/src/pages/auth/backup-otp/page.tsx:81 msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" +msgstr "బ్యాకప్ కోడ్‌లలో కేవలం చిన్న అక్షరాలు లేదా సంఖ్యలు మాత్రమే ఉండాలి, మరియు అవి ఖచ్చితంగా 10 అక్షరాలుగా ఉండాలి." #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183 msgid "Base URL" -msgstr "" +msgstr "బేస్ URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." msgid "Basics" -msgstr "" +msgstr "ప్రాథమికాలు" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 msgid "Basics" -msgstr "" +msgstr "ప్రాథమికాలు" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 msgid "Border" -msgstr "" +msgstr "బోర్డర్" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:124 msgid "Border Radius" -msgstr "" +msgstr "సరిహద్దు వ్యాసార్థం" #: apps/client/src/pages/public/page.tsx:93 msgid "Built with" -msgstr "" +msgstr "తో నిర్మించబడింది" #: apps/client/src/components/copyright.tsx:27 #: apps/client/src/pages/home/sections/contributors/index.tsx:20 msgid "By the community, for the community." -msgstr "" +msgstr "కమ్యూనిటీ కోసం, కమ్యూనిటీ చేత." #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 msgid "Cancel" -msgstr "" +msgstr "రద్దు చేయండి" #: apps/client/src/components/ai-actions.tsx:107 #: apps/client/src/components/ai-actions.tsx:110 msgid "Casual" -msgstr "" +msgstr "సాధారణం" #: apps/client/src/pages/builder/_components/toolbar.tsx:130 msgid "Center Artboard" -msgstr "" +msgstr "సెంటర్ ఆర్ట్‌బోర్డ్" #: apps/client/src/components/locale-switch.tsx:17 msgid "Change Language" -msgstr "" +msgstr "భాష మార్చండి" #: apps/client/src/pages/auth/reset-password/page.tsx:99 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115 msgid "Change Password" -msgstr "" +msgstr "పాస్వర్డ్ మార్చండి" #: apps/client/src/components/ai-actions.tsx:101 msgid "Change Tone" -msgstr "" +msgstr "టోన్ మార్చండి" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:186 msgid "Changed your mind about the name? Give it a new one." -msgstr "" +msgstr "పేరుపై మీ మనసు మార్చుకున్నారా? దానికి కొత్త పేరు ఇవ్వండి." #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:70 msgid "Check your email for the confirmation link to update your email address." -msgstr "" +msgstr "మీ ఇమెయిల్ చిరునామాను నవీకరించడానికి ధృవీకరణ లింక్ కోసం మీ ఇమెయిల్‌ను తనిఖీ చేయండి." #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:144 msgid "Circle" -msgstr "" +msgstr "వృత్తం" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 msgid "Close" -msgstr "" +msgstr "మూసివేయండి" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:201 msgid "Code" -msgstr "" +msgstr "కోడ్" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:52 msgid "Code must be exactly 6 digits long." -msgstr "" +msgstr "కోడ్ ఖచ్చితంగా 6 అంకెలు ఉండాలి." #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136 msgid "Columns" -msgstr "" +msgstr "నిలువు వరుసలు" #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 msgid "Company" -msgstr "" +msgstr "కంపెనీ" #: apps/client/src/components/ai-actions.tsx:119 #: apps/client/src/components/ai-actions.tsx:122 msgid "Confident" -msgstr "" +msgstr "ఆత్మవిశ్వాసంగా" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246 msgid "Continue" -msgstr "" +msgstr "కొనసాగించు" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101 msgid "Copy" -msgstr "" +msgstr "కాపీ" #: apps/client/src/pages/builder/_components/toolbar.tsx:164 msgid "Copy Link to Resume" -msgstr "" +msgstr "రిజ్యూమ్ లింక్‌ను కాపీ చేయండి" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 msgid "Copy to Clipboard" -msgstr "" +msgstr "క్లిప్‌బోర్డ్‌కి కాపీ చేయండి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:179 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 msgid "Create" -msgstr "" +msgstr "సృష్టించండి" #: apps/client/src/pages/auth/register/page.tsx:64 #: apps/client/src/pages/auth/register/page.tsx:69 msgid "Create a new account" -msgstr "" +msgstr "క్రొత్త ఖాతాను సృష్టించండి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:163 msgid "Create a new item" -msgstr "" +msgstr "క్రొత్త అంశాన్ని సృష్టించండి" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:178 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:28 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:18 msgid "Create a new resume" -msgstr "" +msgstr "కొత్త రిజ్యూమ్ సృష్టించండి" #: apps/client/src/pages/auth/login/page.tsx:65 msgctxt "This is a link to create a new account" msgid "Create one now" -msgstr "" +msgstr "ఇప్పుడు ఒకదాన్ని సృష్టించండి" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:259 msgid "Create Sample Resume" -msgstr "" +msgstr "నమూనా రిజ్యూమ్ సృష్టించండి" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82 msgid "Current Password" -msgstr "" +msgstr "ప్రస్తుత పాస్‌వర్డ్" #: apps/client/src/pages/builder/sidebars/right/index.tsx:93 #: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27 #: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28 msgid "Custom CSS" -msgstr "" +msgstr "కస్టమ్ CSS" #: apps/client/src/pages/home/sections/features/index.tsx:62 msgid "Custom resume sections" -msgstr "" +msgstr "కస్టమ్ రిజ్యూమ్ విభాగాలు" #: apps/client/src/stores/resume.ts:47 msgid "Custom Section" -msgstr "" +msgstr "కస్టమ్ విభాగం" #: apps/client/src/pages/home/sections/features/index.tsx:60 msgid "Customisable colour palettes" -msgstr "" +msgstr "కస్టమైజ్ చేయదగిన కలర్ ప్యాలెట్లు" #: apps/client/src/pages/home/sections/features/index.tsx:61 msgid "Customisable layouts" -msgstr "" +msgstr "కస్టమైజ్ చేయదగిన లేఅవుట్లు" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 msgid "Danger Zone" -msgstr "" +msgstr "డేంజర్ జోన్" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:87 msgid "Dark" -msgstr "" +msgstr "చీకటి" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 msgid "Date" -msgstr "" +msgstr "తేదీ" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 @@ -417,7 +417,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 msgid "Date or Date Range" -msgstr "" +msgstr "తేదీ లేదా తేదీ పరిధి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:137 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:158 @@ -425,16 +425,16 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" -msgstr "" +msgstr "తొలగించు" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Delete Account" -msgstr "" +msgstr "ఖాతాను తొలగించండి" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 msgid "Deployment Name" -msgstr "" +msgstr "డిప్లాయ్‌మెంట్ పేరు" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50 @@ -442,62 +442,62 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84 msgid "Description" -msgstr "" +msgstr "వివరణ" #: apps/client/src/pages/home/sections/features/index.tsx:58 msgid "Design single/multi page resumes" -msgstr "" +msgstr "ఒక పేజీ/బహు పేజీ రిజ్యూమ్‌లను డిజైన్ చేయండి" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 msgid "Disable" -msgstr "" +msgstr "నిలిపివేయండి" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154 msgid "Disable 2FA" -msgstr "" +msgstr "2FA ని నిలిపివేయండి" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118 msgid "Discard" -msgstr "" +msgstr "రద్దు చేయండి" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110 msgid "Documentation" -msgstr "" +msgstr "డాక్యుమెంటేషన్" #: apps/client/src/pages/auth/login/page.tsx:62 msgid "Don't have an account?" -msgstr "" +msgstr "ఖాతా లేదా?" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88 msgid "Don't know where to begin? Hit the docs!" -msgstr "" +msgstr "ఎక్కడి నుండి ప్రారంభించాలో తెలియకపోతే? డాక్స్‌ను చూడండి!" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 msgid "Don't see your language? <0>Help translate the app." -msgstr "" +msgstr "మీ భాష కనిపించట్లేదా? <0>యాప్‌ను అనువదించడంలో సహాయం చేయండి." #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45 msgid "Donate to Reactive Resume" -msgstr "" +msgstr "Reactive Resume కు దానం చేయండి" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" +msgstr "మీ రిజ్యూమ్ యొక్క JSON స్నాప్‌షాట్‌ను డౌన్‌లోడ్ చేయండి. ఈ ఫైల్‌ను భవిష్యత్తులో మీ రిజ్యూమ్‌ను ఇంపోర్ట్ చేయడానికి ఉపయోగించవచ్చు, లేదా ఇతరులతో పంచుకుని కలిసి పనిచేయవచ్చు." #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78 msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" +msgstr "మీ రిజ్యూమ్ యొక్క PDF ను డౌన్‌లోడ్ చేయండి. ఈ ఫైల్‌ను ప్రింట్ చేయడానికి, రిక్రూటర్లకు పంపడానికి, లేదా జాబ్ పోర్టల్స్‌లో అప్‌లోడ్ చేయడానికి ఉపయోగించవచ్చు." #: apps/client/src/pages/builder/_components/toolbar.tsx:176 msgid "Download PDF" -msgstr "" +msgstr "PDF ను డౌన్‌లోడ్ చేయండి" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 msgid "Downloads" -msgstr "" +msgstr "డౌన్‌లోడ్‌లు" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:181 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:246 @@ -505,23 +505,23 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" -msgstr "" +msgstr "నకిలీ" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:165 msgid "Duplicate an existing item" -msgstr "" +msgstr "ఇప్పటికే ఉన్న అంశాన్ని నకిలీ చేయండి" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:180 msgid "Duplicate an existing resume" -msgstr "" +msgstr "ఇప్పటికే ఉన్న రిజ్యూమ్‌ను నకిలీ చేయండి" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97 msgid "Edit" -msgstr "" +msgstr "సవరించు" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:169 msgid "Effects" -msgstr "" +msgstr "ప్రభావాలు" #: apps/client/src/pages/auth/forgot-password/page.tsx:82 #: apps/client/src/pages/auth/login/page.tsx:90 @@ -529,15 +529,15 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181 msgid "Email" -msgstr "" +msgstr "ఇమెయిల్" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163 msgid "Enable 2FA" -msgstr "" +msgstr "2FAని ప్రారంభించండి" #: apps/client/src/pages/auth/reset-password/page.tsx:67 msgid "Enter a new password below, and make sure it's secure." -msgstr "" +msgstr "క్రింద కొత్త పాస్వర్డ్‌ను నమోదు చేసి, అది భద్రమైనదిగా ఉన్నదో లేదో ధృవించండి." #: apps/client/src/pages/auth/backup-otp/page.tsx:59 msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." From 87370cfdf0399ea1b96f16767a9b60b4f207f961 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Sat, 18 Oct 2025 22:30:51 +0200 Subject: [PATCH 6/6] Apply suggestion from @AmruthPillai --- apps/artboard/src/templates/gengar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/artboard/src/templates/gengar.tsx b/apps/artboard/src/templates/gengar.tsx index 69650c55..b1948c45 100644 --- a/apps/artboard/src/templates/gengar.tsx +++ b/apps/artboard/src/templates/gengar.tsx @@ -531,6 +531,7 @@ const mapSectionToComponent = (section: SectionKey) => { case "education": { return ; } + case "summary": { return ; }