chore: integrate improve-integration

This commit is contained in:
Amruth Pillai
2026-07-08 19:07:05 +02:00
parent 73daf22b2f
commit 90105cb148
139 changed files with 6054 additions and 7793 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ If your company would like to sponsor Reactive Resume, email [hello@amruthpillai
- Professionally designed templates
- A4 and Letter size support
- Customizable colors, fonts, and spacing
- Custom CSS for advanced styling
- Structured Style Rules for section and text styling
**Privacy & Control**
+31 -22
View File
@@ -17,24 +17,33 @@
"#react-pdf-renderer": "@react-pdf/renderer"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.8",
"@ai-sdk/google": "^4.0.8",
"@ai-sdk/openai": "^4.0.7",
"@ai-sdk/openai-compatible": "^3.0.5",
"@aws-sdk/client-s3": "^3.1079.0",
"@ai-sdk/anthropic": "^4.0.10",
"@ai-sdk/cerebras": "^3.0.6",
"@ai-sdk/cohere": "^4.0.6",
"@ai-sdk/deepseek": "^3.0.6",
"@ai-sdk/fireworks": "^3.0.7",
"@ai-sdk/google": "^4.0.10",
"@ai-sdk/groq": "^4.0.6",
"@ai-sdk/mistral": "^4.0.7",
"@ai-sdk/openai": "^4.0.9",
"@ai-sdk/openai-compatible": "^3.0.6",
"@ai-sdk/perplexity": "^4.0.7",
"@ai-sdk/togetherai": "^3.0.7",
"@ai-sdk/xai": "^4.0.9",
"@aws-sdk/client-s3": "^3.1081.0",
"@better-auth/api-key": "^1.6.23",
"@better-auth/drizzle-adapter": "^1.6.23",
"@better-auth/infra": "^0.3.4",
"@better-auth/infra": "^0.3.5",
"@better-auth/oauth-provider": "^1.6.23",
"@better-auth/passkey": "^1.6.23",
"@hono/node-server": "^2.0.8",
"@modelcontextprotocol/sdk": "^1.29.0",
"@orpc/client": "^1.14.6",
"@orpc/experimental-ratelimit": "^1.14.6",
"@orpc/json-schema": "^1.14.6",
"@orpc/openapi": "^1.14.6",
"@orpc/server": "^1.14.6",
"@orpc/zod": "^1.14.6",
"@orpc/client": "^1.14.7",
"@orpc/experimental-ratelimit": "^1.14.7",
"@orpc/json-schema": "^1.14.7",
"@orpc/openapi": "^1.14.7",
"@orpc/server": "^1.14.7",
"@orpc/zod": "^1.14.7",
"@react-pdf/renderer": "^4.5.1",
"@reactive-resume/api": "workspace:*",
"@reactive-resume/auth": "workspace:*",
@@ -46,7 +55,7 @@
"@sindresorhus/slugify": "^3.0.0",
"@t3-oss/env-core": "^0.13.11",
"@uiw/color-convert": "^2.10.3",
"ai": "^7.0.15",
"ai": "^7.0.18",
"bcrypt": "^6.0.0",
"better-auth": "1.6.23",
"cjk-regex": "^3.4.0",
@@ -55,15 +64,15 @@
"drizzle-zod": "1.0.0-beta.14-a36c63d",
"es-toolkit": "^1.49.0",
"fast-json-patch": "^3.1.1",
"hono": "^4.12.27",
"hono": "^4.12.28",
"jsonrepair": "^3.15.0",
"node-html-parser": "^8.0.4",
"node-html-parser": "^9.0.0",
"nodemailer": "^9.0.3",
"ollama-ai-provider-v2": "^3.6.0",
"ollama-ai-provider-v2": "^4.0.1",
"pg": "^8.22.0",
"phosphor-icons-react-pdf": "^0.1.3",
"react": "^19.2.7",
"react-email": "^6.6.6",
"react-email": "^6.6.8",
"react-pdf-html": "^2.1.5",
"resumable-stream": "^2.2.12",
"sharp": "^0.35.3",
@@ -74,13 +83,13 @@
},
"devDependencies": {
"@reactive-resume/config": "workspace:*",
"@types/node": "^26.1.0",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@typescript/native-preview": "7.0.0-dev.20260705.1",
"tsdown": "^0.22.3",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"tsdown": "^0.22.4",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}
+2
View File
@@ -33,6 +33,8 @@ describe("handleUpload", () => {
expect(response.status).toBe(200);
expect(readMock).toHaveBeenCalledWith("uploads/user-1/pictures/photo.jpeg");
expect(response.headers.get("Content-Type")).toBe("image/jpeg");
expect(response.headers.get("Cross-Origin-Resource-Policy")).toBe("same-site");
expect(response.headers.get("Access-Control-Allow-Origin")).toBeNull();
});
it("does not serve private agent attachment keys through the public uploads route", async () => {
-2
View File
@@ -1,7 +1,6 @@
import { createHash } from "node:crypto";
import { basename, extname, normalize } from "node:path";
import { getStorageService, inferContentType } from "@reactive-resume/api/features/storage";
import { env } from "@reactive-resume/env/server";
export async function handleUpload(request: Request) {
const { userId, filePath } = parseRouteParams(request.url);
@@ -41,7 +40,6 @@ export async function handleUpload(request: Request) {
headers.set("Referrer-Policy", "strict-origin-when-cross-origin");
headers.set("X-Frame-Options", "DENY");
headers.set("X-Download-Options", "noopen");
headers.set("Access-Control-Allow-Origin", env.APP_URL);
return new Response(toArrayBuffer(storedFile.data), { headers });
}
+9
View File
@@ -32,6 +32,15 @@ describe("web app fallback classification", () => {
expect(await response.text()).toBe("<html>app</html>");
});
it.each(["/", "/alice/resume"])("sets framing and report-only CSP security headers on %s", async (pathname) => {
const response = await handleWebApp(new Request(`https://example.com${pathname}`));
expect(response.status).toBe(200);
expect(response.headers.get("X-Frame-Options")).toBe("DENY");
expect(response.headers.get("X-Content-Type-Options")).toBe("nosniff");
expect(response.headers.get("Content-Security-Policy-Report-Only")).toContain("frame-ancestors 'none'");
});
it.each([
"/auth/login",
"/dashboard",
+10 -1
View File
@@ -52,12 +52,21 @@ function isPublicResumePath(pathname: string): boolean {
return segments.length === 2 && firstSegment !== undefined && !reservedPublicResumeSegments.has(firstSegment);
}
const BASE_SECURITY_HEADERS = {
"X-Frame-Options": "DENY",
"X-Content-Type-Options": "nosniff",
"Referrer-Policy": "strict-origin-when-cross-origin",
"Content-Security-Policy-Report-Only":
"default-src 'self'; img-src 'self' data: blob:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; connect-src 'self'; frame-ancestors 'none'; base-uri 'self'; object-src 'none'",
};
function getFallbackResponseHeaders(pathname: string) {
if (pathname === "/") return { "Content-Type": "text/html; charset=UTF-8" };
if (pathname === "/") return { "Content-Type": "text/html; charset=UTF-8", ...BASE_SECURITY_HEADERS };
if (isNoindexShellPath(pathname) || isPublicResumePath(pathname)) {
return {
"Content-Type": "text/html; charset=UTF-8",
"X-Robots-Tag": "noindex, follow",
...BASE_SECURITY_HEADERS,
};
}
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: af\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalaans"
msgid "Center Align"
msgstr "Middelbelyn"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Serebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klik hier om 'n lêer te kies om in te voer"
msgid "Close AI assistant"
msgstr "Maak KI-assistent toe"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Samehang"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Verklein inspringing"
msgid "Decrease zoom"
msgstr "Verminder zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DiepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Graad"
@@ -1885,6 +1897,10 @@ msgstr "Vind swak kolpunte en herskryf hulle met sterker uitkomste, getalle, omv
msgid "Finnish"
msgstr "Fins"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Vuurwerke"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Pas om te sien"
@@ -2072,6 +2088,10 @@ msgstr "Grieks"
msgid "Grid"
msgstr "Rooster"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Laat die span groei"
@@ -2271,6 +2291,10 @@ msgstr "Besig om jou CV in te voer..."
msgid "Importing…"
msgstr "Voer tans… in"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Sluit CV-kop in"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Verhoog inspringing"
@@ -2574,11 +2598,6 @@ msgstr "Lys"
msgid "Lithuanian"
msgstr "Litaus"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Regstreekse voorskou van jou CV in die {0} sjabloon"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Laai tans KI-verskaffers. Probeer asseblief weer oor 'n oomblik."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Werkende CV ontbreek"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral KI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama-wolk"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periode"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Verwarring"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persies"
@@ -3838,6 +3865,10 @@ msgstr "Wys wagwoord"
msgid "Show picture"
msgstr "Wys prent"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Wys dieselfde eerste-bladsy-kop op die dekbrief."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titel"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Om jou rekening uit te vee, moet jy die bevestigingstekst invoer en die knoppie hieronder klik."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Saam.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Die moeite werd"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ja, Reactive Resume is in verskeie tale beskikbaar. Jy kan jou voorkeurtaal kies op die instellingsbladsy, of deur die taalwisselaar regs bo te gebruik. As jy jou taal nie sien nie, of as jy die bestaande vertalings wil verbeter, kan jy <0>bydra tot die vertalings op Crowdin<1> (maak in nuwe oortjie oop)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: am\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Amharic\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -758,6 +758,10 @@ msgstr "ካታላንኛ"
msgid "Center Align"
msgstr "መሀከል ማሰለፊያ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "ሴሬብራስ"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ፋይል ለማምጣት ለመምረጥ እዚህ ጠቅ ያድርጉ"
msgid "Close AI assistant"
msgstr "የ AI ረዳትን ዝጋ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "ኮሄሬ"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "ገብን ቀንስ"
msgid "Decrease zoom"
msgstr "ማጉላትን ቀንስ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ዲፕሴክ"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "ዲግሪ"
@@ -1885,6 +1897,10 @@ msgstr "ደካማ ነጥቦችን ፈልግ እና ጠንካራ ውጤቶችን
msgid "Finnish"
msgstr "ፊኒሽ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "ርችቶች"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "ለእይታ ተስማሚ"
@@ -2072,6 +2088,10 @@ msgstr "ግሪክኛ"
msgid "Grid"
msgstr "ግሪድ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ግሮክ"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "ቡድኑን አስፋ"
@@ -2271,6 +2291,10 @@ msgstr "የየታሪክዎን በመጫን ላይ…"
msgid "Importing…"
msgstr "በማስመጣት ላይ…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "የሪዙሜውን ራስጌ አካትት"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "ገብ ጨምር"
@@ -2574,11 +2598,6 @@ msgstr "ዝርዝር"
msgid "Lithuanian"
msgstr "ሊቱዌንያንኛ"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "በ {0} አብነት ውስጥ የስራ ልምድዎ የቀጥታ ቅድመ እይታ"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "የAI አቅራቢዎችን በመጫን ላይ። እባክዎ ከአፍታ በኋላ እንደገና ይሞክሩ።"
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "የስራ ማጠቃለያ ይጎድላል"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "ሚስራል ኤአይ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "ሞዴል"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ኦዲያ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "የኦላማ ክላውድ"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "ወቅት"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "ግራ መጋባት"
#: src/libs/locale.ts
msgid "Persian"
msgstr "ፐርሲያንኛ"
@@ -3838,6 +3865,10 @@ msgstr "የይለፍ ቃል አሳይ"
msgid "Show picture"
msgstr "ስዕል አሳይ"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "በማመልከቻ ደብዳቤው ላይ ተመሳሳይ የመጀመሪያ ገጽ ራስጌ አሳይ።"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "ርዕስ"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "መለያዎን ለመሰረዝ የማረጋገጫ ጽሑፍን ያስገቡ እና ከታች ያለውን አዝራር ይጫኑ።"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "አንድ ሙከራ የሚያረካ"
msgid "X (Twitter)"
msgstr "ኤክስ (ትዊተር)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI ግሮክ"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "አዎ፣ Reactive Resume በብዙ ቋንቋዎች ላይ ይገኛል። የምትመርጡትን ቋንቋ በቅንብሮች ገጽ ውስጥ ወይም በላይኛው ቀኝ ጠርዝ ያለውን የቋንቋ መቀየሪያ በመጠቀም መምረጥ ትችላላችሁ። ቋንቋዎን ካላያችሁ፣ ወይም ቀረውን ትርጉም ለማሻሻል ከፈለጉ፣ በ<0> Crowdin ላይ ትርጉሞችን በማሻሻል መዋኛ ለመያዝ ትችላላችሁ<1> (በአዲስ ታብ ይከፈታል)</1></0>።"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ar\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@@ -758,6 +758,10 @@ msgstr "الكتالانية"
msgid "Center Align"
msgstr "محاذاة في الوسط"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "الأدمغة"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "انقر هنا لتحديد ملف لاستيراده"
msgid "Close AI assistant"
msgstr "مساعد الذكاء الاصطناعي للإغلاق"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "التحم"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "تقليل المسافة البادئة"
msgid "Decrease zoom"
msgstr "تقليل التكبير"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "البحث العميق"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "الدرجة"
@@ -1885,6 +1897,10 @@ msgstr "ابحث عن النقاط الضعيفة وأعد صياغتها بنت
msgid "Finnish"
msgstr "الفنلندية"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "ألعاب نارية"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "مناسب للعرض"
@@ -2072,6 +2088,10 @@ msgstr "اليونانية"
msgid "Grid"
msgstr "الشبكة"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "جروك"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "توسيع الفريق"
@@ -2271,6 +2291,10 @@ msgstr "جاري استيراد سيرتك الذاتية..."
msgid "Importing…"
msgstr "جارٍ الاستيراد…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "تضمين ترويسة السيرة الذاتية"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "زيادة المسافة البادئة"
@@ -2574,11 +2598,6 @@ msgstr "قائمة"
msgid "Lithuanian"
msgstr "اللتوانية"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "معاينة مباشرة لسيرتك الذاتية في قالب {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "جارٍ تحميل مزودي خدمات الذكاء الاصطناعي. يرجى المحاولة مرة أخرى بعد قليل."
@@ -2698,6 +2717,10 @@ msgstr "مايكروسوفت وورد"
msgid "Missing working resume"
msgstr "سيرة ذاتية مفقودة"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "ميسترال للذكاء الاصطناعي"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "النموذج"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "الأودية"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "أولاما"
msgid "Ollama Cloud"
msgstr "سحابة أولاما"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "الفترة"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "حيرة"
#: src/libs/locale.ts
msgid "Persian"
msgstr "الفارسية"
@@ -3838,6 +3865,10 @@ msgstr "إظهار كلمة المرور"
msgid "Show picture"
msgstr "عرض الصورة"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "إظهار نفس ترويسة الصفحة الأولى في خطاب التقديم."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "العنوان"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "لحذف حسابك، تحتاج إلى إدخال نص التأكيد والنقر على الزر أدناه."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "يستحق المحاولة"
msgid "X (Twitter)"
msgstr "X (تويتر)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "نعم، يتوفر Reactive Resume بعدة لغات. يمكنك اختيار لغتك المفضلة في صفحة الإعدادات، أو باستخدام مبدّل اللغة في الزاوية العلوية اليمنى. إذا لم ترَ لغتك، أو كنت ترغب في تحسين الترجمات الموجودة، يمكنك <0>المساهمة في الترجمات على Crowdin<1> (يفتح في علامة تبويب جديدة)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: az\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Azerbaijani\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalan"
msgid "Center Align"
msgstr "Mərkəzləndir"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Beyinciklər"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "İdxal üçün fayl seçmək üçün bura klikləyin"
msgid "Close AI assistant"
msgstr "Süni intellekt köməkçisini bağlayın"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Birgə"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Abzası azaldın"
msgid "Decrease zoom"
msgstr "Zumu azaldın"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Dərin Axtarış"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Dərəcə"
@@ -1885,6 +1897,10 @@ msgstr "Zəif ifadələri tapın və onları daha güclü nəticələr, rəqəml
msgid "Finnish"
msgstr "Fin"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Atəşfəşanlıq"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Görüntü üçün uyğunlaşdırın"
@@ -2072,6 +2088,10 @@ msgstr "Yunan"
msgid "Grid"
msgstr "Şəbəkə"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Qroq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Komandanı böyüdün"
@@ -2271,6 +2291,10 @@ msgstr "Özgeçmişiniz idxal olunur..."
msgid "Importing…"
msgstr "… idxal edilir"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "CV başlığını daxil et"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Abzası artırın"
@@ -2574,11 +2598,6 @@ msgstr "Siyahı"
msgid "Lithuanian"
msgstr "Litva"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} şablonunda CV-nizin canlı önizləməsi"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Süni intellekt provayderləri yüklənir. Zəhmət olmasa, bir az sonra yenidən cəhd edin."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "İşçi CV-si yoxdur"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral süni intellekt"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odiya"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Buludu"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Müddət"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Çaşqınlıq"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Fars"
@@ -3838,6 +3865,10 @@ msgstr "Şifrəni göstər"
msgid "Show picture"
msgstr "Şəkili göstər"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Müraciət məktubunda birinci səhifə başlığının eynisini göstər."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Başlıq"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Hesabınızı silmək üçün təsdiq mətnini daxil etməli və aşağıdakı düyməyə klikləməlisiniz."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Bir cəhd etməyə dəyər"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Bəli, Reactive Resume bir neçə dildə mövcuddur. Seçim etdiyiniz dili parametrlər səhifəsindən və ya sağ yuxarı küncdəki dil dəyişdiricisindən seçə bilərsiniz. Əgər dilinizi görmürsünüzsə və ya mövcud tərcümələri yaxşılaşdırmaq istəyirsinizsə, <0>Crowdində tərcümələrə töhfə verə bilərsiniz<1> (yeni vərəqdə açılır)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: bg\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Каталонски"
msgid "Center Align"
msgstr "Подравняване в центъра"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Церебрас"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Кликнете тук, за да изберете файл за имп
msgid "Close AI assistant"
msgstr "Затвори асистента с изкуствен интелект"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Кохерентност"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Намаляване на отстъпа"
msgid "Decrease zoom"
msgstr "Намаляване на мащаба"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Дълбоко търсене"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Степен"
@@ -1885,6 +1897,10 @@ msgstr "Намерете слаби точки и ги пренапишете с
msgid "Finnish"
msgstr "Фински"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Фойерверки"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Побиране в изглед"
@@ -2072,6 +2088,10 @@ msgstr "Гръцки"
msgid "Grid"
msgstr "Мрежа"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Грок"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Разширяване на екипа"
@@ -2271,6 +2291,10 @@ msgstr "Вашата автобиография се импортира..."
msgid "Importing…"
msgstr "Импортиране…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Включи заглавката на автобиографията"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Увеличаване на отстъпа"
@@ -2574,11 +2598,6 @@ msgstr "Списък"
msgid "Lithuanian"
msgstr "Литовски"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Преглед на автобиографията ви на живо в шаблона {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Зареждане на доставчици на ИИ. Моля, опитайте отново след малко."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Липсва работна автобиография"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Мистрал ИИ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Модел"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Одия"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Облак Олама"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Период"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Озадаченост"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Персийски"
@@ -3838,6 +3865,10 @@ msgstr "Показване на паролата"
msgid "Show picture"
msgstr "Покажи снимка"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Показвай същата заглавка на първата страница и в мотивационното писмо."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Заглавие"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "За да изтриете профила си, трябва да въведете текста за потвърждение и да кликнете бутона по-долу."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Заедно.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Струва си да опитате"
msgid "X (Twitter)"
msgstr "X (Туитър)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Грок"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Да, Reactive Resume е наличен на множество езици. Можете да изберете предпочитания от вас език от страницата с настройки или чрез превключвателя за език в горния десен ъгъл. Ако не виждате вашия език или искате да подобрите съществуващите преводи, можете да <0>допринесете към преводите в Crowdin<1> (отваря се в нов раздел)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: bn\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Bengali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "কাতালান"
msgid "Center Align"
msgstr "মধ্যের দিকে অ্যালাইন"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "সেরেব্রাস"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ইমপোর্ট করার জন্য এখান ক্ল
msgid "Close AI assistant"
msgstr "এআই সহকারী বন্ধ করুন"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "কোহেয়ার"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "ইন্ডেন্ট হ্রাস করুন"
msgid "Decrease zoom"
msgstr "জুম কমান"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ডিপসিক"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "ডিগ্রি"
@@ -1885,6 +1897,10 @@ msgstr "দুর্বল বুলেট পয়েন্টগুলো খ
msgid "Finnish"
msgstr "ফিনিশ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "আতশবাজি"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "দেখার জন্য উপযুক্ত"
@@ -2072,6 +2088,10 @@ msgstr "গ্রিক"
msgid "Grid"
msgstr "গ্রিড"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "গ্রোক"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "টিম বড় করুন"
@@ -2271,6 +2291,10 @@ msgstr "আপনার জীবনবৃত্তান্ত ইমপোর
msgid "Importing…"
msgstr "… আমদানি করা হচ্ছে"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "জীবনবৃত্তান্তের হেডার অন্তর্ভুক্ত করুন"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "ইন্ডেন্ট বৃদ্ধি করুন"
@@ -2574,11 +2598,6 @@ msgstr "তালিকা"
msgid "Lithuanian"
msgstr "লিথুয়ানিয়ান"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} টেমপ্লেটে আপনার জীবনবৃত্তান্তের সরাসরি প্রিভিউ দেখুন"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "এআই প্রোভাইডার লোড করা হচ্ছে। অনুগ্রহ করে কিছুক্ষণ পর আবার চেষ্টা করুন।"
@@ -2698,6 +2717,10 @@ msgstr "মাইক্রোসফট ওয়ার্ড"
msgid "Missing working resume"
msgstr "কাজের জীবনবৃত্তান্ত অনুপস্থিত"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "মিস্ট্রাল এআই"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "মডেল"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ওড়িয়া"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "ওলামা"
msgid "Ollama Cloud"
msgstr "ওলামা ক্লাউড"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "পিডিএফ"
msgid "Period"
msgstr "সময়কাল"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "বিভ্রান্তি"
#: src/libs/locale.ts
msgid "Persian"
msgstr "ফার্সি"
@@ -3838,6 +3865,10 @@ msgstr "পাসওয়ার্ড দেখান"
msgid "Show picture"
msgstr "ছবি দেখান"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "কভার লেটারে একই প্রথম পৃষ্ঠার হেডার দেখান।"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "শিরোনাম"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "আপনার অ্যাকাউন্ট মুছে ফেলতে চাইলে নিশ্চয়তাসূচক টেক্সট লিখে নিচের বাটনে ক্লিক করতে হবে।"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "চেষ্টা করে দেখা যেতে পারে।"
msgid "X (Twitter)"
msgstr "এক্স (টুইটার)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI গ্রোক"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "হ্যাঁ, Reactive Resume একাধিক ভাষায় উপলভ্য। আপনি সেটিংস পেজ থেকে বা ডান দিকের উপরের কোণের ভাষা পরিবর্তনকারী ব্যবহার করে নিজের পছন্দের ভাষা বেছে নিতে পারেন। যদি আপনার ভাষা তালিকায় না থাকে, বা আপনি বিদ্যমান অনুবাদ উন্নত করতে চান, তাহলে আপনি <0>Crowdin‑এ অনুবাদে অবদান রাখতে পারেন<1> (নতুন ট্যাবে খুলবে)</1></0>।"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ca\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Català"
msgid "Center Align"
msgstr "Alinea al centre"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebres"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Fes clic aquí per seleccionar un fitxer per importar"
msgid "Close AI assistant"
msgstr "Tanca l'assistent d'IA"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Coherència"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Reduir la sagnia"
msgid "Decrease zoom"
msgstr "Redueix el zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Titulació"
@@ -1885,6 +1897,10 @@ msgstr "Troba els punts febles i reescriu-los amb resultats, números, abast i v
msgid "Finnish"
msgstr "Finès"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Focs artificials"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Ajustar a la vista"
@@ -2072,6 +2088,10 @@ msgstr "Grec"
msgid "Grid"
msgstr "Graella"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Fes créixer lequip"
@@ -2271,6 +2291,10 @@ msgstr "Sestà important el currículum..."
msgid "Importing…"
msgstr "Important…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Inclou la capçalera del currículum"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Augmenta la sagnia"
@@ -2574,11 +2598,6 @@ msgstr "Llista"
msgid "Lithuanian"
msgstr "Lituà"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Vista prèvia en directe del vostre currículum a la plantilla {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "S'estan carregant els proveïdors d'IA. Si us plau, torneu-ho a provar d'aquí a un moment."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Falta un currículum laboral"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "IA Mistral"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Núvol d'Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Període"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplexitat"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persa"
@@ -3838,6 +3865,10 @@ msgstr "Mostra la contrasenya"
msgid "Show picture"
msgstr "Mostra la imatge"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Mostra la mateixa capçalera de la primera pàgina a la carta de presentació."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Títol"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Per suprimir el compte, has dintroduir el text de confirmació i fer clic al botó següent."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Junts.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Val la pena intentar-ho"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Sí, Reactive Resume està disponible en múltiples idiomes. Pots triar lidioma preferit a la pàgina de configuració o utilitzant el selector didioma a langle superior dret. Si no hi veus el teu idioma o vols millorar les traduccions existents, pots <0>contribuir a les traduccions a Crowdin<1> (sobre en una pestanya nova)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: cs\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@@ -758,6 +758,10 @@ msgstr "Katalánština"
msgid "Center Align"
msgstr "Zarovnat na střed"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Mozky"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Kliknutím zde vyberte soubor k importu"
msgid "Close AI assistant"
msgstr "Zavřít asistenta s umělou inteligencí"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Soudržný"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Zmenšit odsazení"
msgid "Decrease zoom"
msgstr "Zmenšit přiblížení"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Hluboké vyhledávání"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Titul"
@@ -1885,6 +1897,10 @@ msgstr "Najděte slabé odrážky a přepište je se silnějšími výsledky, č
msgid "Finnish"
msgstr "Finština"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Ohňostroj"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Přizpůsobit zobrazení"
@@ -2072,6 +2088,10 @@ msgstr "Řečtina"
msgid "Grid"
msgstr "Mřížka"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Rozšířit tým"
@@ -2271,6 +2291,10 @@ msgstr "Importování životopisu…"
msgid "Importing…"
msgstr "Import…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Zahrnout záhlaví životopisu"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Zvětšit odsazení"
@@ -2574,11 +2598,6 @@ msgstr "Seznam"
msgid "Lithuanian"
msgstr "Litevština"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Živý náhled vašeho životopisu v šabloně {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Načítání poskytovatelů umělé inteligence. Zkuste to prosím znovu za chvíli."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Chybí pracovní životopis"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Udijština"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Období"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Zmatek"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Perština"
@@ -3838,6 +3865,10 @@ msgstr "Zobrazit heslo"
msgid "Show picture"
msgstr "Zobrazit obrázek"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Zobrazit stejné záhlaví první stránky i v průvodním dopise."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Název"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Pro smazání účtu musíte zadat potvrzovací text a kliknout na tlačítko níže."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Stojí za to vyzkoušet"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ano, Reactive Resume je dostupné ve více jazycích. Svůj preferovaný jazyk si můžete vybrat na stránce nastavení nebo pomocí přepínače jazyka v pravém horním rohu. Pokud svůj jazyk nevidíte nebo chcete vylepšit existující překlady, můžete <0>přispět k překladům na Crowdin<1> (otevře se na nové kartě)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: da\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalansk"
msgid "Center Align"
msgstr "Centrer justering"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klik her for at vælge en fil, der skal importeres"
msgid "Close AI assistant"
msgstr "Luk AI-assistent"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Sammenhæng"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Formindsk indrykning"
msgid "Decrease zoom"
msgstr "Reducer zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Grad"
@@ -1885,6 +1897,10 @@ msgstr "Find svage punktopstillinger og omskriv dem med stærkere udfald, tal, o
msgid "Finnish"
msgstr "Finsk"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fyrværkeri"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Tilpas til visning"
@@ -2072,6 +2088,10 @@ msgstr "Græsk"
msgid "Grid"
msgstr "Gitter"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Udvid teamet"
@@ -2271,6 +2291,10 @@ msgstr "Importerer dit CV..."
msgid "Importing…"
msgstr "Importerer…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Medtag CV-header"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Øg indrykning"
@@ -2574,11 +2598,6 @@ msgstr "Liste"
msgid "Lithuanian"
msgstr "Litauisk"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Live forhåndsvisning af dit CV i skabelonen {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Indlæser AI-udbydere. Prøv igen om et øjeblik."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Mangler arbejds-CV"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama-skyen"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periode"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Forvirring"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persisk"
@@ -3838,6 +3865,10 @@ msgstr "Vis adgangskode"
msgid "Show picture"
msgstr "Vis billede"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Vis den samme header fra første side på følgebrevet."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titel"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "For at slette din konto skal du indtaste bekræftelsesteksten og klikke på knappen nedenfor."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Sammen.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Et forsøg værd"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ja, Reactive Resume er tilgængelig på flere sprog. Du kan vælge dit foretrukne sprog på indstillingssiden eller ved hjælp af sprogvælgeren i øverste højre hjørne. Hvis du ikke kan se dit sprog, eller hvis du gerne vil forbedre de eksisterende oversættelser, kan du <0>bidrage til oversættelserne på Crowdin<1> (åbner i ny fane)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalanisch"
msgid "Center Align"
msgstr "Zentriert"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Großhirn"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Hier klicken, um eine Datei zum Importieren auszuwählen"
msgid "Close AI assistant"
msgstr "Schließen Sie den KI-Assistenten"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Zusammenhängen"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Einzug verringern"
msgid "Decrease zoom"
msgstr "Zoom verringern"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Abschluss"
@@ -1885,6 +1897,10 @@ msgstr "Finden Sie schwache Stichpunkte und formulieren Sie sie mit aussagekräf
msgid "Finnish"
msgstr "Finnisch"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Feuerwerk"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Passend zur Ansicht"
@@ -2072,6 +2088,10 @@ msgstr "Griechisch"
msgid "Grid"
msgstr "Rasteransicht"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Team vergrößern"
@@ -2271,6 +2291,10 @@ msgstr "Dein Lebenslauf wird importiert ..."
msgid "Importing…"
msgstr "Importieren…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Lebenslauf-Kopfzeile einfügen"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Einzug vergrößern"
@@ -2574,11 +2598,6 @@ msgstr "Listenansicht"
msgid "Lithuanian"
msgstr "Litauisch"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Live-Vorschau Ihres Lebenslaufs in der {0} Vorlage"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "KI-Anbieter werden geladen. Bitte versuchen Sie es in einem Moment erneut."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Fehlender Arbeitslebenslauf"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral KI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modell"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama-Wolke"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Zeitraum"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Verwirrung"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persisch"
@@ -3838,6 +3865,10 @@ msgstr "Passwort anzeigen"
msgid "Show picture"
msgstr "Bild anzeigen"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Zeigt denselben Header der ersten Seite auch auf dem Anschreiben an."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titel"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Um Ihr Konto zu löschen, müssen Sie den Bestätigungstext eingeben und unten auf die Schaltfläche klicken."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Einen Versuch wert"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ja, Reactive Resume ist in mehreren Sprachen verfügbar. Du kannst deine bevorzugte Sprache auf der Einstellungsseite oder über den Sprachumschalter in der oberen rechten Ecke auswählen. Wenn du deine Sprache nicht findest oder die bestehenden Übersetzungen verbessern möchtest, kannst du <0>auf Crowdin zu den Übersetzungen beitragen<1> (öffnet in neuem Tab)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: el\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Καταλανικά"
msgid "Center Align"
msgstr "Στοίχιση στο κέντρο"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Εγκεφαλίδες"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Κάντε κλικ εδώ για να επιλέξετε ένα αρχ
msgid "Close AI assistant"
msgstr "Κλείσιμο βοηθού τεχνητής νοημοσύνης"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Διατηρώ συνέπεια"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Μείωση εσοχής"
msgid "Decrease zoom"
msgstr "Μείωση ζουμ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Βαθιά Αναζήτηση"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Πτυχίο"
@@ -1885,6 +1897,10 @@ msgstr "Βρείτε αδύναμες κουκκίδες και ξαναγράψ
msgid "Finnish"
msgstr "Φινλανδικά"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Πυροτεχνήματα"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Κατάλληλο για προβολή"
@@ -2072,6 +2088,10 @@ msgstr "Ελληνικά"
msgid "Grid"
msgstr "Πλέγμα"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Γκροκ"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Ανάπτυξη της ομάδας"
@@ -2271,6 +2291,10 @@ msgstr "Εισαγωγή του βιογραφικού σας σημειώματ
msgid "Importing…"
msgstr "Εισαγωγή…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Συμπερίληψη κεφαλίδας βιογραφικού"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Αύξηση εσοχής"
@@ -2574,11 +2598,6 @@ msgstr "Λίστα"
msgid "Lithuanian"
msgstr "Λιθουανικά"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Ζωντανή προεπισκόπηση του βιογραφικού σας στο πρότυπο {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Φόρτωση παρόχων τεχνητής νοημοσύνης. Δοκιμάστε ξανά σε λίγο."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Λείπει το βιογραφικό εργασίας"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Μοντέλο"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Οντιά"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ολάμα Νέφος"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Περίοδος"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Αμηχανία"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Περσικά"
@@ -3838,6 +3865,10 @@ msgstr "Εμφάνιση κωδικού πρόσβασης"
msgid "Show picture"
msgstr "Εμφάνιση εικόνας"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Εμφάνιση της ίδιας κεφαλίδας πρώτης σελίδας και στη συνοδευτική επιστολή."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Τίτλος"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Για να διαγράψετε τον λογαριασμό σας, πρέπει να εισαγάγετε το κείμενο επιβεβαίωσης και να κάνετε κλικ στο παρακάτω κουμπί."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Μαζί.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Αξίζει μια προσπάθεια"
msgid "X (Twitter)"
msgstr "Χ (Τwitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ναι, το Reactive Resume είναι διαθέσιμο σε πολλές γλώσσες. Μπορείτε να επιλέξετε την προτιμώμενη γλώσσα σας στη σελίδα ρυθμίσεων ή χρησιμοποιώντας τον επιλογέα γλώσσας στην επάνω δεξιά γωνία. Αν δεν βλέπετε τη γλώσσα σας ή θα θέλατε να βελτιώσετε τις υπάρχουσες μεταφράσεις, μπορείτε να <0>συμβάλετε στις μεταφράσεις στο Crowdin<1> (ανοίγει σε νέα καρτέλα)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: en_GB\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: English, United Kingdom\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Catalan"
msgid "Center Align"
msgstr "Center Align"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Click here to select a file to import"
msgid "Close AI assistant"
msgstr "Close AI assistant"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Cohere"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Decrease indent"
msgid "Decrease zoom"
msgstr "Decrease zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Degree"
@@ -1885,6 +1897,10 @@ msgstr "Find weak bullets and rewrite them with stronger outcomes, numbers, scop
msgid "Finnish"
msgstr "Finnish"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fireworks"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Fit to view"
@@ -2072,6 +2088,10 @@ msgstr "Greek"
msgid "Grid"
msgstr "Grid"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Grow the Team"
@@ -2271,6 +2291,10 @@ msgstr "Importing your resume..."
msgid "Importing…"
msgstr "Importing…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Include CV header"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Increase indent"
@@ -2574,11 +2598,6 @@ msgstr "List"
msgid "Lithuanian"
msgstr "Lithuanian"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Live preview of your resume in the {0} template"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Loading AI providers. Please try again in a moment."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Missing working resume"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Period"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplexity"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persian"
@@ -3838,6 +3865,10 @@ msgstr "Show password"
msgid "Show picture"
msgstr "Show picture"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Show the same first-page header on the cover letter."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Title"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "To delete your account, you need to enter the confirmation text and click the button below."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Worth a shot"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
+46 -7
View File
@@ -753,6 +753,10 @@ msgstr "Catalan"
msgid "Center Align"
msgstr "Center Align"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -849,6 +853,10 @@ msgstr "Click here to select a file to import"
msgid "Close AI assistant"
msgstr "Close AI assistant"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Cohere"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1277,6 +1285,10 @@ msgstr "Decrease indent"
msgid "Decrease zoom"
msgstr "Decrease zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Degree"
@@ -1880,6 +1892,10 @@ msgstr "Find weak bullets and rewrite them with stronger outcomes, numbers, scop
msgid "Finnish"
msgstr "Finnish"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fireworks"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Fit to view"
@@ -2067,6 +2083,10 @@ msgstr "Greek"
msgid "Grid"
msgstr "Grid"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Grow the Team"
@@ -2266,6 +2286,10 @@ msgstr "Importing your resume..."
msgid "Importing…"
msgstr "Importing…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Include resume header"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Increase indent"
@@ -2569,11 +2593,6 @@ msgstr "List"
msgid "Lithuanian"
msgstr "Lithuanian"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Live preview of your resume in the {0} template"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Loading AI providers. Please try again in a moment."
@@ -2693,6 +2712,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Missing working resume"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2866,8 +2889,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3086,6 +3109,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Period"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplexity"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persian"
@@ -3833,6 +3860,10 @@ msgstr "Show password"
msgid "Show picture"
msgstr "Show picture"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Show the same first-page header on the cover letter."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4402,6 +4433,10 @@ msgstr "Title"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "To delete your account, you need to enter the confirmation text and click the button below."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4856,6 +4891,10 @@ msgstr "Worth a shot"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:48\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Catalán"
msgid "Center Align"
msgstr "Alinear al centro"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebros"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Haz clic aquí para seleccionar un archivo para importar"
msgid "Close AI assistant"
msgstr "Asistente de IA de cierre"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Adherirse"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Disminuir sangría"
msgid "Decrease zoom"
msgstr "Disminuir el zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Búsqueda profunda"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Título académico"
@@ -1885,6 +1897,10 @@ msgstr "Identifica los puntos débiles y reescríbelos con resultados, cifras, a
msgid "Finnish"
msgstr "Finés"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fuegos artificiales"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Apto para visualización"
@@ -2072,6 +2088,10 @@ msgstr "Griego"
msgid "Grid"
msgstr "Cuadrícula"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Hacer crecer el equipo"
@@ -2271,6 +2291,10 @@ msgstr "Importando tu currículum..."
msgid "Importing…"
msgstr "Importando…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Incluir encabezado del currículum"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Aumentar sangría"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "Lituano"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Vista previa en vivo de tu currículum en la plantilla {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Cargando proveedores de IA. Inténtelo de nuevo en un momento."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Falta el currículum vitae laboral"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modelo"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Nube de Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periodo"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplejidad"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persa"
@@ -3838,6 +3865,10 @@ msgstr "Mostrar contraseña"
msgid "Show picture"
msgstr "Mostrar imagen"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Mostrar el mismo encabezado de la primera página en la carta de presentación."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Título"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Para eliminar tu cuenta, debes introducir el texto de confirmación y hacer clic en el botón de abajo."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Juntos.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Vale la pena intentarlo"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Sí, Reactive Resume está disponible en varios idiomas. Puedes elegir tu idioma preferido en la página de configuración o usando el selector de idioma en la esquina superior derecha. Si no ves tu idioma o quieres mejorar las traducciones existentes, puedes <0>contribuir a las traducciones en Crowdin<1> (abrir en una nueva pestaña)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: fa\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Persian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "کاتالان"
msgid "Center Align"
msgstr "تراز وسط"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "مغزها"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "برای انتخاب فایل برای وارد کردن، اینجا
msgid "Close AI assistant"
msgstr "دستیار هوش مصنوعی را ببندید"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "کوهر"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "کاهش تورفتگی"
msgid "Decrease zoom"
msgstr "کاهش زوم"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "جستجوی عمیق"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "مدرک"
@@ -1885,6 +1897,10 @@ msgstr "نقاط ضعف را پیدا کنید و آنها را با نتایج
msgid "Finnish"
msgstr "فنلاندی"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "آتش بازی"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "مناسب برای مشاهده"
@@ -2072,6 +2088,10 @@ msgstr "یونانی"
msgid "Grid"
msgstr "جدول"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "گروک"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "گسترش تیم"
@@ -2271,6 +2291,10 @@ msgstr "در حال وارد کردن رزومه شما..."
msgid "Importing…"
msgstr "در حال وارد کردن…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "افزودن سربرگ رزومه"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "افزایش تورفتگی"
@@ -2574,11 +2598,6 @@ msgstr "لیست"
msgid "Lithuanian"
msgstr "لیتوانیایی"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "پیش‌نمایش زنده رزومه شما در قالب {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "در حال بارگذاری ارائه دهندگان هوش مصنوعی. لطفاً چند لحظه دیگر دوباره امتحان کنید."
@@ -2698,6 +2717,10 @@ msgstr "مایکروسافت ورد"
msgid "Missing working resume"
msgstr "رزومه کاری موجود نیست"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "هوش مصنوعی میسترال"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "مدل"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "اودیایی"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "اولاما"
msgid "Ollama Cloud"
msgstr "ابر اولاما"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "پی‌دی‌اف"
msgid "Period"
msgstr "دوره"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "سرگشتگی"
#: src/libs/locale.ts
msgid "Persian"
msgstr "فارسی"
@@ -3838,6 +3865,10 @@ msgstr "نمایش رمز عبور"
msgid "Show picture"
msgstr "نمایش تصویر"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "همان سربرگ صفحه اول را در نامه پوششی نیز نمایش بده."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "عنوان"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "برای حذف حساب خود، باید متن تأیید را وارد کرده و دکمهٔ زیر را کلیک کنید."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "ارزش امتحان کردن دارد"
msgid "X (Twitter)"
msgstr "ایکس (توییتر)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI گروک"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "بله، Reactive Resume در چندین زبان در دسترس است. می‌توانید زبان دلخواه خود را در صفحهٔ تنظیمات یا با استفاده از تعویض‌کنندهٔ زبان در گوشهٔ بالا سمت راست انتخاب کنید. اگر زبان خود را نمی‌بینید یا می‌خواهید ترجمه‌های موجود را بهبود دهید، می‌توانید <0>در ترجمه‌ها روی Crowdin مشارکت کنید<1> (در زبانهٔ جدید باز می‌شود)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "katalaani"
msgid "Center Align"
msgstr "Keskitä"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Aivot"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Napsauta tästä valitaksesi tuotavan tiedoston"
msgid "Close AI assistant"
msgstr "Sulje tekoälyavustaja"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Koheroitua"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Pienennä sisennystä"
msgid "Decrease zoom"
msgstr "Pienennä zoomausta"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Tutkinto"
@@ -1885,6 +1897,10 @@ msgstr "Etsi heikkoja luettelokohtia ja kirjoita ne uudelleen vahvemmilla tuloks
msgid "Finnish"
msgstr "suomi"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Ilotulitus"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Sovita näkymään"
@@ -2072,6 +2088,10 @@ msgstr "kreikka"
msgid "Grid"
msgstr "Ruudukko"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Kasvata tiimiä"
@@ -2271,6 +2291,10 @@ msgstr "Tuodaan ansioluetteloasi..."
msgid "Importing…"
msgstr "Tuodaan…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Sisällytä CV:n ylätunniste"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Suurenna sisennystä"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "liettua"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Ansioluettelosi reaaliaikainen esikatselu {0} -mallissa"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Ladataan tekoälypalveluntarjoajia. Yritä uudelleen hetken kuluttua."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Puuttuva työansioluettelo"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral-tekoäly"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Malli"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Ajanjakso"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Hämmennys"
#: src/libs/locale.ts
msgid "Persian"
msgstr "persia"
@@ -3838,6 +3865,10 @@ msgstr "Näytä salasana"
msgid "Show picture"
msgstr "Näytä kuva"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Näytä sama ensimmäisen sivun ylätunniste myös saatekirjeessä."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Otsikko"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Poistaaksesi tilisi sinun täytyy syöttää vahvistusteksti ja napsauttaa alla olevaa painiketta."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Yhdessä.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Kannattaa kokeilla"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Kyllä, Reactive Resume on saatavilla useilla kielillä. Voit valita haluamasi kielen asetussivulla tai oikean yläkulman kielivalitsimesta. Jos et näe omaa kieltäsi tai haluat parantaa olemassa olevia käännöksiä, voit <0>osallistua käännöksiin Crowdinessa<1> (avautuu uuteen välilehteen)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -758,6 +758,10 @@ msgstr "Catalan"
msgid "Center Align"
msgstr "Alignement centré"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerveaux"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Cliquez ici pour sélectionner un fichier à importer"
msgid "Close AI assistant"
msgstr "Assistant IA proche"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Adhérer"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Diminuer le retrait"
msgid "Decrease zoom"
msgstr "Diminuer le zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Diplôme"
@@ -1885,6 +1897,10 @@ msgstr "Repérez les points faibles et reformulez-les avec des résultats, des c
msgid "Finnish"
msgstr "Finnois"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Feux d'artifice"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Ajuster à la vue"
@@ -2072,6 +2088,10 @@ msgstr "Grec"
msgid "Grid"
msgstr "Grille"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Faire grandir l'équipe"
@@ -2271,6 +2291,10 @@ msgstr "Importation de votre CV en cours..."
msgid "Importing…"
msgstr "Importer…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Inclure len-tête du CV"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Augmenter l'indentation"
@@ -2574,11 +2598,6 @@ msgstr "Liste"
msgid "Lithuanian"
msgstr "Lithuanien"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Aperçu en direct de votre CV dans le modèle {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Chargement des fournisseurs d'IA. Veuillez réessayer dans un instant."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "CV professionnel manquant"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral IA"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modèle"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Nuage Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF (EN ANGLAIS)"
msgid "Period"
msgstr "Période"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplexité"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persan"
@@ -3838,6 +3865,10 @@ msgstr "Afficher le mot de passe"
msgid "Show picture"
msgstr "Afficher l'image"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Afficher le même en-tête de première page sur la lettre de motivation."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titre"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Pour supprimer votre compte, vous devez saisir le texte de confirmation et cliquer sur le bouton ci-dessous."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Ensemble.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Ça vaut le coup d'essayer"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Oui, Reactive Resume est disponible en plusieurs langues. Vous pouvez choisir votre langue préférée dans la page des paramètres, ou en utilisant le sélecteur de langue dans le coin supérieur droit. Si vous ne voyez pas votre langue, ou si vous souhaitez améliorer les traductions existantes, vous pouvez <0>contribuer aux traductions sur Crowdin<1> (s'ouvre dans un nouvel onglet)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: he\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
@@ -758,6 +758,10 @@ msgstr "קטלאנית"
msgid "Center Align"
msgstr "יישור למרכז"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "מוח"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "לחץ כאן כדי לבחור קובץ לייבוא"
msgid "Close AI assistant"
msgstr "סגור את עוזר הבינה המלאכותית"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "לִדבּוֹק יָחָד"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "הקטנת כניסה"
msgid "Decrease zoom"
msgstr "הקטנת הזום"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "דיפקייק"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "תואר"
@@ -1885,6 +1897,10 @@ msgstr "מצא נקודות תבליט חלשות וכתוב אותן מחדש
msgid "Finnish"
msgstr "פינית"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "זיקוקים"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "התאמה לתצוגה"
@@ -2072,6 +2088,10 @@ msgstr "יוונית"
msgid "Grid"
msgstr "רשת"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "גרוק"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "הגדלת הצוות"
@@ -2271,6 +2291,10 @@ msgstr "מייבא את קורות החיים שלך..."
msgid "Importing…"
msgstr "ייבוא…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "כלול את כותרת קורות החיים"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "הגדלת כניסה"
@@ -2574,11 +2598,6 @@ msgstr "רשימה"
msgid "Lithuanian"
msgstr "ליטאית"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "תצוגה מקדימה חיה של קורות החיים שלך בתבנית {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "טוען ספקי בינה מלאכותית. אנא נסה שוב בעוד רגע."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "קורות חיים חסרים"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "מיסטרל בינה מלאכותית"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "מודל"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "אודיה"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "אולמה"
msgid "Ollama Cloud"
msgstr "אולמה קלאוד"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "תקופה"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "מְבוּכָה"
#: src/libs/locale.ts
msgid "Persian"
msgstr "פרסית"
@@ -3838,6 +3865,10 @@ msgstr "הצג סיסמה"
msgid "Show picture"
msgstr "הצג תמונה"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "הצג את אותה כותרת עמוד ראשון גם במכתב המקדים."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "כותרת"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "כדי למחוק את החשבון שלך, עליך להזין את טקסט האישור וללחוץ על הכפתור שלמטה."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "יחד.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "שווה ניסיון"
msgid "X (Twitter)"
msgstr "איקס (טוויטר)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI גרוק"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "כן, Reactive Resume זמין במספר שפות. אפשר לבחור את השפה המועדפת עליך בעמוד ההגדרות או באמצעות מחליף השפה בפינה העליונה הימנית. אם אינך רואה את השפה שלך, או אם ברצונך לשפר את התרגומים הקיימים, אפשר <0>לתמוך בתרגומים ב־Crowdin<1> (נפתח בלשונית חדשה)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "कातालान"
msgid "Center Align"
msgstr "मध्य में संरेखित करें"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "मस्तिष्क"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "इम्पोर्ट करने के लिए फ़ाइल
msgid "Close AI assistant"
msgstr "एआई सहायक को बंद करें"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "जुटना"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "इंडेंट घटाएँ"
msgid "Decrease zoom"
msgstr "ज़ूम कम करें"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "डीपसीक"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "डिग्री"
@@ -1885,6 +1897,10 @@ msgstr "कमजोर बिंदुओं को पहचानें औ
msgid "Finnish"
msgstr "फिनिश"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "आतिशबाजी"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "देखने के लिए उपयुक्त"
@@ -2072,6 +2088,10 @@ msgstr "ग्रीक"
msgid "Grid"
msgstr "ग्रिड"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ग्रोक"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "टीम बढ़ाएँ"
@@ -2271,6 +2291,10 @@ msgstr "आपका रेज़्यूमे आयात किया ज
msgid "Importing…"
msgstr "आयात करना…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "रिज़्यूमे हेडर शामिल करें"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "बढ़ते हुए अंतर में"
@@ -2574,11 +2598,6 @@ msgstr "सूची"
msgid "Lithuanian"
msgstr "लिथुआनियाई"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} टेम्पलेट में अपने रिज्यूमे का लाइव पूर्वावलोकन देखें"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "एआई प्रदाताओं को लोड किया जा रहा है। कृपया कुछ देर बाद पुनः प्रयास करें।"
@@ -2698,6 +2717,10 @@ msgstr "माइक्रोसॉफ्ट वर्ड"
msgid "Missing working resume"
msgstr "कार्य संबंधी रिज्यूमे गुम है"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "मिस्ट्रल एआई"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "मॉडल"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ओड़िया"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "ओल्लामा"
msgid "Ollama Cloud"
msgstr "ओलामा क्लाउड"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "पीडीएफ"
msgid "Period"
msgstr "अवधि"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "विकलता"
#: src/libs/locale.ts
msgid "Persian"
msgstr "फ़ारसी"
@@ -3838,6 +3865,10 @@ msgstr "पासवर्ड दिखाएँ"
msgid "Show picture"
msgstr "चित्र दर्शाएं"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "कवर लेटर पर वही पहला पेज हेडर दिखाएं।"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "शीर्षक"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "अपना खाता हटाने के लिए, आपको पुष्टिकरण पाठ दर्ज करना होगा और नीचे दिए गए बटन पर क्लिक करना होगा।"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "कोशिश करने लायक"
msgid "X (Twitter)"
msgstr "एक्स (ट्विटर)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI ग्रोक"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "हाँ, Reactive Resume कई भाषाओं में उपलब्ध है। आप सेटिंग्स पेज में, या ऊपर दाएँ कोने में भाषा स्विचर का उपयोग करके अपनी पसंदीदा भाषा चुन सकते हैं। यदि आपको अपनी भाषा नहीं दिखती, या आप मौजूदा अनुवादों में सुधार करना चाहते हैं, तो आप <0>Crowdin पर अनुवादों में योगदान दे सकते हैं<1> (नए टैब में खुलता है)</1></0>।"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "katalán"
msgid "Center Align"
msgstr "Középre igazítás"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Agy"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Kattints ide az importálandó fájl kiválasztásához"
msgid "Close AI assistant"
msgstr "Bezárás AI asszisztens"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Összefügg"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Behúzás csökkentése"
msgid "Decrease zoom"
msgstr "Csökkentse a nagyítást"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Fokozat"
@@ -1885,6 +1897,10 @@ msgstr "Keress gyenge felsoroláspontokat, és írd át őket erősebb eredmény
msgid "Finnish"
msgstr "finn"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Tűzijáték"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Nézethez igazítva"
@@ -2072,6 +2088,10 @@ msgstr "görög"
msgid "Grid"
msgstr "Rács"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "A csapat bővítése"
@@ -2271,6 +2291,10 @@ msgstr "Önéletrajz importálása..."
msgid "Importing…"
msgstr "… importálása"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Önéletrajz fejlécének beillesztése"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Behúzás növelése"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "litván"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Élő előnézet az önéletrajzodról a {0} sablonban"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "MI-szolgáltatók betöltése folyamatban. Kérjük, próbálja újra egy pillanat múlva."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Hiányzó munkaköri önéletrajz"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral mesterséges intelligencia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modell"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "odija"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Időszak"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Zavar"
#: src/libs/locale.ts
msgid "Persian"
msgstr "perzsa"
@@ -3838,6 +3865,10 @@ msgstr "Jelszó megjelenítése"
msgid "Show picture"
msgstr "Kép megjelenítése"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Ugyanazon első oldali fejléc megjelenítése a motivációs levélen is."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Cím"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "A fiókod törléséhez add meg a megerősítő szöveget, majd kattints az alábbi gombra."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Együtt.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Megér egy próbát"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Igen, a Reactive Resume több nyelven is elérhető. A beállítások oldalon választhatod ki a kívánt nyelvet, vagy a jobb felső sarokban található nyelvváltó segítségével. Ha nem látod a saját nyelvedet, vagy szeretnél javítani a meglévő fordításokon, <0>közreműködhetsz a fordításokban a Crowdinon<1> (új lapon nyílik meg)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "Katala"
msgid "Center Align"
msgstr "Rata Tengah"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Otak Besar"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klik di sini untuk memilih file yang akan diimpor"
msgid "Close AI assistant"
msgstr "Tutup asisten AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Berpadu"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Kurangi lekukan"
msgid "Decrease zoom"
msgstr "Kurangi zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Gelar"
@@ -1885,6 +1897,10 @@ msgstr "Temukan poin-poin yang lemah dan tulis ulang dengan hasil, angka, cakupa
msgid "Finnish"
msgstr "Finlandia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Kembang api"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Sesuai untuk dilihat"
@@ -2072,6 +2088,10 @@ msgstr "Yunani"
msgid "Grid"
msgstr "Grid"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Perbesar Tim"
@@ -2271,6 +2291,10 @@ msgstr "Mengimpor resume Anda..."
msgid "Importing…"
msgstr "Mengimpor…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Sertakan header resume"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Perbesar lekukan"
@@ -2574,11 +2598,6 @@ msgstr "List"
msgid "Lithuanian"
msgstr "Lituania"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Pratinjau langsung resume Anda di templat {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Sedang memuat penyedia AI. Silakan coba lagi sebentar lagi."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Riwayat pekerjaan yang hilang"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periode"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Kebingungan"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persia"
@@ -3838,6 +3865,10 @@ msgstr "Tampilkan kata sandi"
msgid "Show picture"
msgstr "Tampilkan gambar"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Tampilkan header halaman pertama yang sama pada surat lamaran."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Judul"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Untuk menghapus akun Anda, Anda perlu memasukkan teks konfirmasi dan klik tombol di bawah."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Layak dicoba"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ya, Reactive Resume tersedia dalam banyak bahasa. Anda dapat memilih bahasa pilihan Anda di halaman pengaturan, atau menggunakan pengalih bahasa di sudut kanan atas. Jika Anda tidak melihat bahasa Anda, atau ingin meningkatkan terjemahan yang ada, Anda dapat <0>berkontribusi pada terjemahan di Crowdin<1> (terbuka di tab baru)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Catalano"
msgid "Center Align"
msgstr "Allinea al centro"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cervelli"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Fai clic qui per selezionare un file da importare"
msgid "Close AI assistant"
msgstr "Assistente AI ravvicinato"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Coerenza"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Diminuire la rientranza"
msgid "Decrease zoom"
msgstr "Diminuire lo zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Ricerca profonda"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Titolo di studio"
@@ -1885,6 +1897,10 @@ msgstr "Individua i punti deboli e riscrivili con risultati più solidi, dati pi
msgid "Finnish"
msgstr "Finlandese"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "fuochi d'artificio"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Adatto alla visione"
@@ -2072,6 +2088,10 @@ msgstr "Greco"
msgid "Grid"
msgstr "Griglia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Amplia il team"
@@ -2271,6 +2291,10 @@ msgstr "Importazione del tuo curriculum in corso..."
msgid "Importing…"
msgstr "Importazione…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Includi l'intestazione del CV"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Aumentare il rientro"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "Lituano"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Anteprima in tempo reale del tuo curriculum nel modello {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Caricamento dei provider di intelligenza artificiale. Riprova tra un attimo."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Mancanza di curriculum vitae"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Intelligenza artificiale Mistral"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modello"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Nuvola Ollam"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periodo"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplessità"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persiano"
@@ -3838,6 +3865,10 @@ msgstr "Mostra la password"
msgid "Show picture"
msgstr "Mostra l'immagine"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Mostra la stessa intestazione della prima pagina anche nella lettera di presentazione."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titolo"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Per eliminare il tuo account devi inserire il testo di conferma e fare clic sul pulsante qui sotto."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Vale un tentativo"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Sì, Reactive Resume è disponibile in più lingue. Puoi scegliere la tua lingua preferita nella pagina delle impostazioni o usando il selettore di lingua nell'angolo in alto a destra. Se non vedi la tua lingua, o se vuoi migliorare le traduzioni esistenti, puoi <0>contribuire alle traduzioni su Crowdin<1> (apre in una nuova scheda)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "カタロニア語"
msgid "Center Align"
msgstr "中央揃え"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "脳"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ここをクリックしてインポートするファイルを選択"
msgid "Close AI assistant"
msgstr "AIアシスタントを閉じる"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "調和する"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "インデントを減らす"
msgid "Decrease zoom"
msgstr "ズームを縮小する"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ディープシーク"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "学位"
@@ -1885,6 +1897,10 @@ msgstr "弱い箇条書きを見つけ出し、より力強い成果、数値、
msgid "Finnish"
msgstr "フィンランド語"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "花火"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "見るのにふさわしい"
@@ -2072,6 +2088,10 @@ msgstr "ギリシャ語"
msgid "Grid"
msgstr "グリッド表示"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "グロク"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "チームを拡大"
@@ -2271,6 +2291,10 @@ msgstr "レジュメをインポートしています…"
msgid "Importing…"
msgstr "… をインポートしています"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "履歴書のヘッダーを含める"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "インデントを増やす"
@@ -2574,11 +2598,6 @@ msgstr "一覧"
msgid "Lithuanian"
msgstr "リトアニア語"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} テンプレートでの履歴書のライブプレビュー"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AIプロバイダーを読み込んでいます。しばらくしてからもう一度お試しください。"
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "レジュメが選択されていません"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "ミストラルAI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "モデル"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "オディア語"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Orlama"
msgid "Ollama Cloud"
msgstr "オラマ・クラウド"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "期間"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "困惑"
#: src/libs/locale.ts
msgid "Persian"
msgstr "ペルシア語"
@@ -3838,6 +3865,10 @@ msgstr "パスワードを表示する"
msgid "Show picture"
msgstr "画像を表示"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "カバーレターにも1ページ目と同じヘッダーを表示します。"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "タイトル"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "アカウントを削除するには、確認用のテキストを入力し、下のボタンをクリックしてください。"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "一緒に。"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "試す価値あり"
msgid "X (Twitter)"
msgstr "X(ツイッター)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "はい。Reactive Resume は複数の言語に対応しています。設定ページ、または右上の言語切り替えからお好みの言語を選択できます。もしご希望の言語が見つからない場合や、既存の翻訳を改善したい場合は、<0>Crowdin で翻訳に貢献<1>(新しいタブで開きます)</1></0>できます。"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: km\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "Catalan"
msgid "Center Align"
msgstr "តម្រង់​កណ្ដាល"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "ខួរក្បាល"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ចុច​ទីនេះ​ដើម្បី​ជ្រើស​ឯ
msgid "Close AI assistant"
msgstr "បិទជំនួយការ AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "កូហៀរ"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "បន្ថយ​ការ​ចូល​បន្ទាត់"
msgid "Decrease zoom"
msgstr "បន្ថយការពង្រីក"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "សញ្ញាប័ត្រ"
@@ -1885,6 +1897,10 @@ msgstr "ស្វែងរកចំណុចខ្សោយ ហើយសរស
msgid "Finnish"
msgstr "Finnish"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "កាំជ្រួច"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "សមនឹងមើល"
@@ -2072,6 +2088,10 @@ msgstr "Greek"
msgid "Grid"
msgstr "ក្រឡារៀបចំ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ហ្គ្រូក"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "ពង្រីក​ក្រុម"
@@ -2271,6 +2291,10 @@ msgstr "កំពុង​នាំចូល​ប្រវត្តិរូប
msgid "Importing…"
msgstr "កំពុងនាំចូល…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "បញ្ចូលបឋមកថានៃប្រវត្តិរូប"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "បង្កើន​ការ​ចូល​បន្ទាត់"
@@ -2574,11 +2598,6 @@ msgstr "បញ្ជី"
msgid "Lithuanian"
msgstr "Lithuanian"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "ការមើលជាមុនផ្ទាល់នៃប្រវត្តិរូបសង្ខេបរបស់អ្នកនៅក្នុងគំរូ {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "កំពុងផ្ទុកអ្នកផ្តល់សេវា AI។ សូមព្យាយាមម្តងទៀតក្នុងពេលឆាប់ៗនេះ។"
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "បាត់ប្រវត្តិរូបសង្ខេបការងារ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "មីស្ត្រាល អាយអាយ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "ម៉ូដែល"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "ពពកអូឡាម៉ា"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "កំឡុងពេល"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "ភាពច្របូកច្របល់"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persian"
@@ -3838,6 +3865,10 @@ msgstr "បង្ហាញពាក្យសម្ងាត់"
msgid "Show picture"
msgstr "បង្ហាញរូបភាព"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "បង្ហាញបឋមកថាទំព័រទីមួយដូចគ្នានៅលើលិខិតសម្រាប់ដាក់ពាក្យ។"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "ចំណងជើង"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "ដើម្បី​លុប​គណនី​របស់​អ្នក អ្នក​ត្រូវ​បញ្ចូល​អក្សរ​បញ្ជាក់ ហើយ​ចុច​ប៊ូតុង​ខាងក្រោម។"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "គួរតែសាកល្បង"
msgid "X (Twitter)"
msgstr "X (ធ្វីតធ័រ)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "បាទ Reactive Resume អាច​ប្រើ​បាន​ជា​ភាសា​ច្រើន។ អ្នក​អាច​ជ្រើស​ភាសា​ដែល​អ្នក​ពេញចិត្ត​នៅលើ​ទំព័រ​ការកំណត់ ឬ​ដោយ​ប្រើ​កម្មវិធី​ប្ដូរ​ភាសា​នៅ​កូណឺ​ឆ្វេងលើ។ បើ​អ្នក​មិន​ឃើញ​ភាសា​របស់​អ្នក ឬ​ចង់​ធ្វើ​ឱ្យ​ការ​បកប្រែ​ដែល​មាន​ស្រាប់​ប្រសើរ​ឡើង អ្នក​អាច <0>ចូលរួម​បកប្រែនៅលើ Crowdin<1> (បើក​ក្នុង​ផ្ទាំង​ថ្មី)</1></0>។"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: kn\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Kannada\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "ಕ್ಯಾಟಲನ್"
msgid "Center Align"
msgstr "ಮಧ್ಯ ಸರಿಸು"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "ಸೆರೆಬ್ರಸ್"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ಆಮದು ಮಾಡಲು ಕಡತವನ್ನು ಆಯ್ಕೆ
msgid "Close AI assistant"
msgstr "AI ಸಹಾಯಕವನ್ನು ಮುಚ್ಚಿ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "ಕೊಹೆರೆ"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "ಇಂಡೆಂಟ್ ಕಡಿಮೆ ಮಾಡಿ"
msgid "Decrease zoom"
msgstr "ಝೂಮ್ ಕಡಿಮೆ ಮಾಡಿ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ಡೀಪ್‌ಸೀಕ್"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "ಪದವಿ"
@@ -1885,6 +1897,10 @@ msgstr "ದುರ್ಬಲ ಗುಂಡುಗಳನ್ನು ಹುಡುಕಿ
msgid "Finnish"
msgstr "ಫಿನ್ನಿಷ್"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "ಪಟಾಕಿಗಳು"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "ವೀಕ್ಷಿಸಲು ಹೊಂದಿಕೊಳ್ಳಿ"
@@ -2072,6 +2088,10 @@ msgstr "ಗ್ರೀಕ್"
msgid "Grid"
msgstr "ಗ್ರಿಡ್"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ಗ್ರೋಕ್"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "ತಂಡವನ್ನು ವಿಸ್ತರಿಸಿ"
@@ -2271,6 +2291,10 @@ msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಆಮದು
msgid "Importing…"
msgstr "… ಆಮದು ಮಾಡಿಕೊಳ್ಳಲಾಗುತ್ತಿದೆ"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "ರೆಸ್ಯೂಮೆಯ ಹೆಡರ್ ಸೇರಿಸಿ"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "ಇಂಡೆಂಟ್ ಹೆಚ್ಚಿಸಿ"
@@ -2574,11 +2598,6 @@ msgstr "ಪಟ್ಟಿ"
msgid "Lithuanian"
msgstr "ಲಿಥುವೇನಿಯನ್"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} ಟೆಂಪ್ಲೇಟ್‌ನಲ್ಲಿ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್‌ನ ಲೈವ್ ಪೂರ್ವವೀಕ್ಷಣೆ"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AI ಪೂರೈಕೆದಾರರನ್ನು ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "ಕೆಲಸದ ರೆಸ್ಯೂಮ್ ಕಾಣೆಯಾಗಿದೆ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "ಮಿಸ್ಟ್ರಲ್ AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "ಮಾದರಿ"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ಒಡಿಯಾ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "ಒಲ್ಲಮಾ ಮೇಘ"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "ಅವಧಿ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "ಗೊಂದಲ"
#: src/libs/locale.ts
msgid "Persian"
msgstr "ಫಾರ್ಸಿ"
@@ -3838,6 +3865,10 @@ msgstr "ಪಾಸ್‌ವರ್ಡ್ ತೋರಿಸಿ"
msgid "Show picture"
msgstr "ಚಿತ್ರವನ್ನು ತೋರಿಸಿ"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "ಕವರ್ ಲೆಟರ್‌ನಲ್ಲಿ ಅದೇ ಮೊದಲ ಪುಟದ ಹೆಡರ್ ಅನ್ನು ತೋರಿಸಿ."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "ಶೀರ್ಷಿಕೆ"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಅಳಿಸಲು, ನೀವು ದೃಢೀಕರಣ ಪಠ್ಯವನ್ನು ನಮೂದಿಸಿ ಮತ್ತು ಕೆಳಗಿನ ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಬೇಕು."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "ಟುಗೆದರ್.ಐ"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "ಪ್ರಯತ್ನಿಸಲು ಯೋಗ್ಯ"
msgid "X (Twitter)"
msgstr "ಎಕ್ಸ್ (ಟ್ವಿಟರ್)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI ಗ್ರೋಕ್"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "ಹೌದು, Reactive Resume ಅನೇಕ ಭಾಷೆಗಳಲ್ಲಿ ಲಭ್ಯವಿದೆ. ನೀವು ಸೆಟ್ಟಿಂಗ್ಸ್ ಪುಟದಲ್ಲಿ ಅಥವಾ ಮೇಲ್ಭಾಗದ ಬಲ ಮೂಲೆಯಲ್ಲಿರುವ ಭಾಷಾ ಸ್ವಿಚರ್ ಬಳಸಿ ನಿಮ್ಮ ಇಷ್ಟದ ಭಾಷೆಯನ್ನು ಆರಿಸಬಹುದು. ನಿಮ್ಮ ಭಾಷೆ ಕಾಣದಿದ್ದರೆ ಅಥವಾ ಇತ್ತೀಚಗಿನ ಅನುವಾದಗಳನ್ನು ಸುಧಾರಿಸಲು ಬಯಸಿದರೆ, ನೀವು <0>Crowdin ನಲ್ಲಿ ಅನುವಾದಗಳಿಗೆ ಕೊಡುಗೆ ನೀಡಬಹುದು<1> (ಹೊಸ ಟ್ಯಾಬ್‌ನಲ್ಲಿ ತೆರೆಯುತ್ತದೆ)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "카탈루냐어"
msgid "Center Align"
msgstr "가운데 정렬"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "대뇌"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "가져올 파일을 선택하려면 여기를 클릭하세요"
msgid "Close AI assistant"
msgstr "AI 비서 닫기"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "응집하다"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "들여쓰기 감소"
msgid "Decrease zoom"
msgstr "확대/축소 크기 줄이기"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "딥시크"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "학위"
@@ -1885,6 +1897,10 @@ msgstr "약한 항목들을 찾아내어 더 강력한 결과, 수치, 범위
msgid "Finnish"
msgstr "핀란드어"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "불꽃"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "보기에 적합함"
@@ -2072,6 +2088,10 @@ msgstr "그리스어"
msgid "Grid"
msgstr "그리드"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "그로크"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "팀 확장"
@@ -2271,6 +2291,10 @@ msgstr "이력서를 가져오는 중입니다..."
msgid "Importing…"
msgstr "… 가져오기"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "이력서 헤더 포함"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "들여쓰기 증가"
@@ -2574,11 +2598,6 @@ msgstr "목록"
msgid "Lithuanian"
msgstr "리투아니아어"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} 템플릿에서 이력서를 실시간으로 미리 보세요."
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AI 제공업체를 불러오는 중입니다. 잠시 후 다시 시도해 주세요."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "이력서가 누락되었습니다."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "미스트랄 AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "모델"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "오디아어"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "올라마 클라우드"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "기간"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "당황"
#: src/libs/locale.ts
msgid "Persian"
msgstr "페르시아어"
@@ -3838,6 +3865,10 @@ msgstr "비밀번호 표시"
msgid "Show picture"
msgstr "사진 표시"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "자기소개서에도 동일한 첫 페이지 헤더를 표시합니다."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "제목"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "계정을 삭제하려면 확인 문구를 입력한 뒤 아래 버튼을 클릭해야 합니다."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "투게더.에이"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "시도해 볼 만함"
msgid "X (Twitter)"
msgstr "X (트위터)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI 그록"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "네, Reactive Resume는 여러 언어로 제공됩니다. 설정 페이지나 오른쪽 상단의 언어 전환기를 사용해 원하는 언어를 선택할 수 있습니다. 원하는 언어가 없거나 기존 번역을 개선하고 싶다면, <0>Crowdin에서 번역에 기여해 보세요<1> (새 탭에서 열림)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
@@ -758,6 +758,10 @@ msgstr "Katalonų"
msgid "Center Align"
msgstr "Lygiuoti centre"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Smegenys"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Spustelėkite čia, kad pasirinktumėte importuojamą failą"
msgid "Close AI assistant"
msgstr "Uždaryti DI asistentą"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Koheras"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Sumažinti įtrauką"
msgid "Decrease zoom"
msgstr "Sumažinti mastelį"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Laipsnis"
@@ -1885,6 +1897,10 @@ msgstr "Raskite silpnus sąrašus ir perrašykite juos su stipresniais rezultata
msgid "Finnish"
msgstr "Suomių"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fejerverkai"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Pritaikyti peržiūrai"
@@ -2072,6 +2088,10 @@ msgstr "Graikų"
msgid "Grid"
msgstr "Tinklelis"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Plėsti komandą"
@@ -2271,6 +2291,10 @@ msgstr "Importuojamas jūsų gyvenimo aprašymas..."
msgid "Importing…"
msgstr "Importuojama…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Įtraukti gyvenimo aprašymo antraštę"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Padidinti įtrauką"
@@ -2574,11 +2598,6 @@ msgstr "Sąrašas"
msgid "Lithuanian"
msgstr "Lietuvių"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Tiesioginė jūsų gyvenimo aprašymo peržiūra šablone {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Įkeliami dirbtinio intelekto teikėjai. Bandykite dar kartą po akimirkos."
@@ -2698,6 +2717,10 @@ msgstr "\"Microsoft Word"
msgid "Missing working resume"
msgstr "Trūksta darbo gyvenimo aprašymo"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modelis"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odijų"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Laikotarpis"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Sumišimas"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persų"
@@ -3838,6 +3865,10 @@ msgstr "Rodyti slaptažodį"
msgid "Show picture"
msgstr "Rodyti paveikslėlį"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Rodyti tą pačią pirmojo puslapio antraštę ir motyvaciniame laiške."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Pavadinimas"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Norėdami ištrinti paskyrą, įveskite patvirtinimo tekstą ir spustelėkite žemiau esantį mygtuką."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Kartu.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Verta pabandyti"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grokas"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Taip, „Reactive Resume“ prieinama keliomis kalbomis. Galite pasirinkti pageidaujamą kalbą nustatymų puslapyje arba naudoti kalbos perjungiklį viršutiniame dešiniajame kampe. Jei nematote savo kalbos arba norite patobulinti esamus vertimus, galite <0>prisidėti prie vertimų „Crowdin“<1> (atidaro naujame skirtuke)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: lv\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Latvian\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
@@ -758,6 +758,10 @@ msgstr "Katalāņu"
msgid "Center Align"
msgstr "Centrēt"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Smadzenes"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Noklikšķiniet šeit, lai izvēlētos importējamo failu"
msgid "Close AI assistant"
msgstr "Aizvērt mākslīgā intelekta palīgu"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Kohere"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Samazināt atkāpi"
msgid "Decrease zoom"
msgstr "Samazināt tālummaiņu"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Grāds"
@@ -1885,6 +1897,10 @@ msgstr "Atrodiet vājas aizzīmes un pārrakstiet tās ar spēcīgākiem rezult
msgid "Finnish"
msgstr "Somu"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Uguņošana"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Piemērots skatam"
@@ -2072,6 +2088,10 @@ msgstr "Grieķu"
msgid "Grid"
msgstr "Režģis"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Paplašināt komandu"
@@ -2271,6 +2291,10 @@ msgstr "Tiek importēts jūsu CV..."
msgid "Importing…"
msgstr "Importē…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Iekļaut CV galveni"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Palielināt atkāpi"
@@ -2574,11 +2598,6 @@ msgstr "Saraksts"
msgid "Lithuanian"
msgstr "Lietuviešu"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Jūsu CV tiešraides priekšskatījums veidnē {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Notiek mākslīgā intelekta pakalpojumu sniedzēju ielāde. Lūdzu, mēģiniet vēlreiz pēc brīža."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Trūkst darba CV"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modelis"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odiju"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periods"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Apjukums"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persiešu"
@@ -3838,6 +3865,10 @@ msgstr "Rādīt paroli"
msgid "Show picture"
msgstr "Rādīt attēlu"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Rādīt to pašu pirmās lapas galveni arī motivācijas vēstulē."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Nosaukums"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Lai dzēstu savu kontu, jums jāievada apstiprinājuma teksts un jānoklikšķina uz zemāk esošās pogas."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Kopā.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Ir vērts mēģināt"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Groks"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Jā, Reactive Resume ir pieejams vairākās valodās. Jūs varat izvēlēties vēlamo valodu iestatījumu lapā vai, izmantojot valodas pārslēdzēju augšējā labajā stūrī. Ja neredzat savu valodu vai vēlaties uzlabot esošos tulkojumus, varat <0>piedalīties tulkošanā vietnē Crowdin<1> (atveras jaunā cilnē)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ml\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Malayalam\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "കറ്റലാൻ"
msgid "Center Align"
msgstr "സെന്റർ അലൈനിൽ ആക്കുക"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "സെറിബ്രകൾ"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ഇംപോർട്ട് ചെയ്യാൻ ഒരു ഫയൽ
msgid "Close AI assistant"
msgstr "AI അസിസ്റ്റന്റ് അടയ്ക്കുക"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "കോഹെർ"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "ഇൻഡന്റ് കുറയ്ക്കുക"
msgid "Decrease zoom"
msgstr "സൂം കുറയ്ക്കുക"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ഡീപ്‌സീക്ക്"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "ഡിഗ്രി"
@@ -1885,6 +1897,10 @@ msgstr "ദുർബലമായ ബുള്ളറ്റുകൾ കണ്ട
msgid "Finnish"
msgstr "ഫിന്നിഷ്"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "വെടിക്കെട്ട്"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "കാണാൻ അനുയോജ്യം"
@@ -2072,6 +2088,10 @@ msgstr "ഗ്രീക്ക്"
msgid "Grid"
msgstr "ഗ്രിഡ്"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ഗ്രോക്ക്"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "ടീം വികസിപ്പിക്കുക"
@@ -2271,6 +2291,10 @@ msgstr "നിങ്ങളുടെ റിസ്യൂം ഇംപോർട്
msgid "Importing…"
msgstr "… ഇറക്കുമതി ചെയ്യുന്നു"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "റെസ്യൂമിന്റെ ഹെഡർ ഉൾപ്പെടുത്തുക"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "ഇൻഡന്റ് വർദ്ധിപ്പിക്കുക"
@@ -2574,11 +2598,6 @@ msgstr "ലിസ്റ്റ്"
msgid "Lithuanian"
msgstr "ലിത്വാനിയൻ"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} ടെംപ്ലേറ്റിൽ നിങ്ങളുടെ റെസ്യൂമെയുടെ തത്സമയ പ്രിവ്യൂ"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AI ദാതാക്കളെ ലോഡ് ചെയ്യുന്നു. ദയവായി അൽപ്പസമയത്തിനുശേഷം വീണ്ടും ശ്രമിക്കുക."
@@ -2698,6 +2717,10 @@ msgstr "മൈക്രോസോഫ്റ്റ് വേഡ്"
msgid "Missing working resume"
msgstr "വർക്കിംഗ് റെസ്യൂമെ കാണുന്നില്ല"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "മിസ്ട്രൽ AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "മോഡൽ"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ഒഡിയ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "ഒല്ലാമ"
msgid "Ollama Cloud"
msgstr "ഒല്ലാമ മേഘം"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "പിഡിഎഫ്"
msgid "Period"
msgstr "കാലയളവ്"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "ആശയക്കുഴപ്പം"
#: src/libs/locale.ts
msgid "Persian"
msgstr "പേഴ്‌സിയൻ"
@@ -3838,6 +3865,10 @@ msgstr "പാസ്‌വേഡ് കാണിക്കുക"
msgid "Show picture"
msgstr "ചിത്രം കാണിക്കുക"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "കവർ ലെറ്ററിലും അതേ ആദ്യ പേജ് ഹെഡർ കാണിക്കുക."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "ടൈറ്റിൽ"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "നിങ്ങളുടെ അക്കൗണ്ട് ഡിലീറ്റ് ചെയ്യാൻ, നിങ്ങൾ സ്ഥിരീകരണ ടെക്സ്റ്റ് നൽകുകയും താഴെയുള്ള ബട്ടൺ ക്ലിക്ക് ചെയ്യുകയും വേണം."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "ടുഗെദർ.ഐ"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "ഒരു ഷോട്ട് വിലമതിക്കുന്നു"
msgid "X (Twitter)"
msgstr "എക്സ് (ട്വിറ്റർ)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI ഗ്രോക്ക്"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "അതെ, Reactive Resume പല ഭാഷകളിലും ലഭ്യമാണ്. സെറ്റിംഗ്സ് പേജിൽ നിന്നോ മുകളിലെ വലതു കോണിലുള്ള ഭാഷാ സ്വിച്ചർ ഉപയോഗിച്ചോ നിങ്ങൾക്ക് ഇഷ്ടമുള്ള ഭാഷ തിരഞ്ഞെടുക്കാം. നിങ്ങളുടെ ഭാഷ ലഭ്യമല്ലെങ്കിൽ, അല്ലെങ്കിൽ നിലവിലുള്ള തർജ്ജമകൾ മെച്ചപ്പെടുത്താനാഗ്രഹിക്കുന്നുവെങ്കിൽ, നിങ്ങൾക്ക് <0>Crowdin‑ൽ തർജ്ജമകൾക്ക് സംഭാവന ചെയ്യാം<1> (പുതിയ ടാബിൽ തുറക്കും)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: mr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Marathi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "कॅटालन"
msgid "Center Align"
msgstr "मधोमध जुळवा"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "सेरेब्रास"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "इम्पोर्ट करण्यासाठी फाईल न
msgid "Close AI assistant"
msgstr "एआय सहाय्यक बंद करा"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "कोहेअर"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "इंडेंट कमी करा"
msgid "Decrease zoom"
msgstr "झूम कमी करा"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "डीपसीक"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "पदवी"
@@ -1885,6 +1897,10 @@ msgstr "कमजोर मुद्दे शोधा आणि अधिक
msgid "Finnish"
msgstr "फिन्निश"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "फटाके"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "पाहण्यासाठी योग्य"
@@ -2072,6 +2088,10 @@ msgstr "ग्रीक"
msgid "Grid"
msgstr "ग्रिड"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ग्रोक"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "टीम वाढवा"
@@ -2271,6 +2291,10 @@ msgstr "तुमचा रेझ्युमे इम्पोर्ट के
msgid "Importing…"
msgstr "… आयात करत आहे"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "रेझ्युमे हेडर समाविष्ट करा"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "इंडेंट वाढवा"
@@ -2574,11 +2598,6 @@ msgstr "यादी"
msgid "Lithuanian"
msgstr "लिथुआनियन"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} टेम्पलेटमध्ये तुमच्या रिझ्युमेचे थेट पूर्वावलोकन"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "एआय प्रोव्हायडर्स लोड होत आहेत. कृपया थोड्या वेळाने पुन्हा प्रयत्न करा."
@@ -2698,6 +2717,10 @@ msgstr "मायक्रोसॉफ्ट वर्ड"
msgid "Missing working resume"
msgstr "कामाचा बायोडाटा गहाळ आहे"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "मिस्ट्रल एआय"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "मॉडेल"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ओडिया"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "ओल्लामा"
msgid "Ollama Cloud"
msgstr "ओलामा क्लाउड"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "पीडीएफ"
msgid "Period"
msgstr "कालावधी"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "गोंधळ"
#: src/libs/locale.ts
msgid "Persian"
msgstr "फारसी"
@@ -3838,6 +3865,10 @@ msgstr "पासवर्ड दाखवा"
msgid "Show picture"
msgstr "चित्र दाखवा"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "कव्हर लेटरवर तोच पहिला पेज हेडर दाखवा."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "शीर्षक"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "तुमचे खाते हटवण्यासाठी तुम्हाला पुष्टीकरण मजकूर टाकून खालील बटणावर क्लिक करणे आवश्यक आहे."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "एक शॉट वाचतो"
msgid "X (Twitter)"
msgstr "एक्स (ट्विटर)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "होय, Reactive Resume अनेक भाषांमध्ये उपलब्ध आहे. तुम्ही सेटिंग्ज पेजवर किंवा उजव्या वरच्या कोपऱ्यातील भाषा स्विचर वापरून तुमची आवडती भाषा निवडू शकता. जर तुम्हाला तुमची भाषा दिसत नसेल किंवा विद्यमान भाषांतर सुधारायचे असेल, तर तुम्ही <0>Crowdin वर भाषांतरांमध्ये योगदान देऊ शकता<1> (नवीन टॅबमध्ये उघडते)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ms\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Malay\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "Catalan"
msgid "Center Align"
msgstr "Jajaran Tengah"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Serebrum"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klik di sini untuk memilih fail untuk diimport"
msgid "Close AI assistant"
msgstr "Tutup pembantu AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Bersatu padu"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Kurangkan inden"
msgid "Decrease zoom"
msgstr "Kurangkan zum"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Ijazah"
@@ -1885,6 +1897,10 @@ msgstr "Cari poin yang lemah dan tulis semula dengan hasil, nombor, skop dan kat
msgid "Finnish"
msgstr "Finland"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Bunga api"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Sesuai untuk dilihat"
@@ -2072,6 +2088,10 @@ msgstr "Greek"
msgid "Grid"
msgstr "Grid"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Tambahkan Ahli Pasukan"
@@ -2271,6 +2291,10 @@ msgstr "Mengimport resume anda..."
msgid "Importing…"
msgstr "Mengimport…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Sertakan pengepala resume"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Tingkatkan inden"
@@ -2574,11 +2598,6 @@ msgstr "Senarai"
msgid "Lithuanian"
msgstr "Lithuania"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Pratonton langsung resume anda dalam templat {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Memuatkan penyedia AI. Sila cuba lagi sebentar lagi."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Resume kerja yang hilang"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Awan Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Tempoh"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Kekeliruan"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Parsi"
@@ -3838,6 +3865,10 @@ msgstr "Tunjukkan kata laluan"
msgid "Show picture"
msgstr "Tunjukkan gambar"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Tunjukkan pengepala halaman pertama yang sama pada surat iringan."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Tajuk"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Untuk memadam akaun anda, anda perlu memasukkan teks pengesahan dan klik butang di bawah."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Bersama.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Berbaloi"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ya, Reactive Resume tersedia dalam pelbagai bahasa. Anda boleh memilih bahasa pilihan anda di halaman tetapan, atau menggunakan penukar bahasa di penjuru kanan atas. Jika anda tidak melihat bahasa anda, atau anda ingin menambah baik terjemahan sedia ada, anda boleh <0>menyumbang kepada terjemahan di Crowdin<1> (dibuka dalam tab baharu)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ne\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "क्याटालान"
msgid "Center Align"
msgstr "बीचतिर क्रमबद्ध (Center Align)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "सेरेब्रास"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "आयात गर्न फाइल छान्न यहाँ क
msgid "Close AI assistant"
msgstr "एआई सहायक बन्द गर्नुहोस्"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "कोहेर"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "इन्डेन्ट घटाउनुहोस्"
msgid "Decrease zoom"
msgstr "जुम घटाउनुहोस्"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "डीपसिक"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "डिग्री"
@@ -1885,6 +1897,10 @@ msgstr "कमजोर बुलेटहरू फेला पार्नु
msgid "Finnish"
msgstr "फिनिस"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "आतिशबाजी"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "हेर्नको लागि उपयुक्त"
@@ -2072,6 +2088,10 @@ msgstr "ग्रीक"
msgid "Grid"
msgstr "ग्रिड"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ग्रोक"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "टिम बढाउनुहोस्"
@@ -2271,6 +2291,10 @@ msgstr "तपाईंको बायोडाटा आयात हुँद
msgid "Importing…"
msgstr "आयात गर्दै…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "रिजुमे हेडर समावेश गर्नुहोस्"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "इन्डेन्ट बढाउनुहोस्"
@@ -2574,11 +2598,6 @@ msgstr "सूची"
msgid "Lithuanian"
msgstr "लिथुआनियन"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} टेम्प्लेटमा तपाईंको बायोडाटाको प्रत्यक्ष पूर्वावलोकन"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AI प्रदायकहरू लोड गर्दै। कृपया केही बेरमा फेरि प्रयास गर्नुहोस्।"
@@ -2698,6 +2717,10 @@ msgstr "माइक्रोसफ्ट वर्ड"
msgid "Missing working resume"
msgstr "काम गर्ने बायोडाटा हराइरहेको छ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "मिस्ट्रल एआई"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "मोडेल"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ओडिया"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "ओल्लामा"
msgid "Ollama Cloud"
msgstr "ओलामा क्लाउड"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "पीडीएफ"
msgid "Period"
msgstr "अवधि"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "अन्योल"
#: src/libs/locale.ts
msgid "Persian"
msgstr "फारसी"
@@ -3838,6 +3865,10 @@ msgstr "पासवर्ड देखाउनुहोस्"
msgid "Show picture"
msgstr "तस्वीर देखाउनुहोस्"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "कभर लेटरमा उही पहिलो पृष्ठको हेडर देखाउनुहोस्।"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "शीर्षक"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "तपाईंको खाता मेटाउन, तपाईंले यकिन पाठ (confirmation text) प्रविष्ट गरेर तलको बटन थिच्नुपर्छ।"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai का थप वस्तुहरू"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "एक शट लायक"
msgid "X (Twitter)"
msgstr "एक्स (ट्विटर)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI ग्रोक"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "हो, Reactive Resume धेरै भाषाहरूमा उपलब्ध छ। तपाईंले सेटिङ पेजबाट वा माथिको दायाँ कुनामा रहेको भाषा सुइचर प्रयोग गरेर आफ्नो मनपर्ने भाषा छान्न सक्नुहुन्छ। यदि आफ्नो भाषा नदेखिनुभयो वा विद्यमान अनुवाद सुधार गर्न चाहनुहुन्छ भने, तपाईं <0>Crowdin मा अनुवादमा योगदान गर्न सक्नुहुन्छ<1> (नयाँ ट्याबमा खुल्छ)</1></0>।"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Catalaans"
msgid "Center Align"
msgstr "Centreren"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klik hier om een bestand te selecteren om te importeren"
msgid "Close AI assistant"
msgstr "AI-assistent sluiten"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Samenhangen"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Verklein de inspringing"
msgid "Decrease zoom"
msgstr "Verklein de zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Diepzoeken"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Diploma"
@@ -1885,6 +1897,10 @@ msgstr "Identificeer zwakke punten en herschrijf ze met sterkere resultaten, cij
msgid "Finnish"
msgstr "Fins"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Vuurwerk"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Geschikt om te bekijken"
@@ -2072,6 +2088,10 @@ msgstr "Grieks"
msgid "Grid"
msgstr "Raster"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Het team uitbreiden"
@@ -2271,6 +2291,10 @@ msgstr "Uw cv wordt geïmporteerd..."
msgid "Importing…"
msgstr "Importeren…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Cv-koptekst opnemen"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Verhoog de inkeping"
@@ -2574,11 +2598,6 @@ msgstr "Lijst"
msgid "Lithuanian"
msgstr "Litouws"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Live voorbeeld van je cv in de {0} -sjabloon"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AI-providers worden geladen. Probeer het over een moment opnieuw."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Ontbrekend werk-cv"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periode"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Verwarring"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Perzisch"
@@ -3838,6 +3865,10 @@ msgstr "Wachtwoord tonen"
msgid "Show picture"
msgstr "Afbeelding weergeven"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Toon dezelfde koptekst van de eerste pagina op de motivatiebrief."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titel"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Om uw account te verwijderen, moet u de bevestigingstekst invoeren en op de knop hieronder klikken."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Samen.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Het proberen waard"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ja, Reactive Resume is beschikbaar in meerdere talen. U kunt uw voorkeurstaal kiezen op de instellingenpagina of met de taalwisselaar rechtsboven. Als u uw taal niet ziet, of als u de bestaande vertalingen wilt verbeteren, kunt u <0>bijdagen aan de vertalingen op Crowdin<1> (opent in nieuw tabblad)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: no\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalansk"
msgid "Center Align"
msgstr "Midtstill"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Hjernen"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klikk her for å velge en fil å importere"
msgid "Close AI assistant"
msgstr "Lukk AI-assistenten"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Koherens"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Reduser innrykk"
msgid "Decrease zoom"
msgstr "Reduser zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Grad"
@@ -1885,6 +1897,10 @@ msgstr "Finn svake punkter og skriv dem om med sterkere utfall, tall, omfang og
msgid "Finnish"
msgstr "Finsk"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fyrverkeri"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Tilpasset til visning"
@@ -2072,6 +2088,10 @@ msgstr "Gresk"
msgid "Grid"
msgstr "Rutenett"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Voks teamet"
@@ -2271,6 +2291,10 @@ msgstr "Importerer CV-en din..."
msgid "Importing…"
msgstr "Importerer…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Inkluder CV-topptekst"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Øk innrykk"
@@ -2574,11 +2598,6 @@ msgstr "Liste"
msgid "Lithuanian"
msgstr "Litauisk"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Forhåndsvisning av CV-en din i sanntid i {0} -malen"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Laster inn AI-leverandører. Prøv igjen om et øyeblikk."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Mangler arbeids-CV"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modell"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama-skyen"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periode"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Forvirring"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persisk"
@@ -3838,6 +3865,10 @@ msgstr "Vis passord"
msgid "Show picture"
msgstr "Vis bilde"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Vis den samme topptekst fra første side på følgebrevet."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Tittel"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "For å slette kontoen din må du skrive inn bekreftelsesteksten og klikke på knappen nedenfor."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Sammen.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Verdt et forsøk"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ja, Reactive Resume er tilgjengelig på flere språk. Du kan velge foretrukket språk på innstillingssiden, eller ved å bruke språkvælgeren øverst til høyre. Hvis du ikke ser språket ditt, eller du vil forbedre eksisterende oversettelser, kan du <0>bidra til oversettelsene på Crowdin<1> (åpnes i ny fane)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: or\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Odia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "କାଟାଲାନ୍"
msgid "Center Align"
msgstr "ମଧ୍ୟରେ ସଙ୍ଗୁଯୋଗ କରନ୍ତୁ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "ସେରେବ୍ରାସ୍"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ଆୟାତ କରିବା ପାଇଁ ଫାଇଲ୍ ଚୟନ କ
msgid "Close AI assistant"
msgstr "AI ଆସିଷ୍ଟାଣ୍ଟ ବନ୍ଦ କରନ୍ତୁ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "କୋହେର"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "ଇଣ୍ଡେଣ୍ଟ କମାନ୍ତୁ"
msgid "Decrease zoom"
msgstr "ଜୁମ୍ କମାନ୍ତୁ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ଡିପସିକ୍"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "ଡିଗ୍ରୀ"
@@ -1885,6 +1897,10 @@ msgstr "ଦୁର୍ବଳ ବୁଲେଟ୍ ଖୋଜନ୍ତୁ ଏବଂ
msgid "Finnish"
msgstr "ଫିନିଶ୍"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "ଆତସବାଜି"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "ଦେଖିବା ପାଇଁ ଫିଟ୍"
@@ -2072,6 +2088,10 @@ msgstr "ଗ୍ରୀକ୍"
msgid "Grid"
msgstr "ଗ୍ରିଡ୍ (Grid)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "ଗ୍ରୋକ୍"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "ଟିମ୍‌କୁ ବଢ଼ାନ୍ତୁ"
@@ -2271,6 +2291,10 @@ msgstr "ଆପଣଙ୍କ ରେଜ୍ୟୁମେ ଆୟାତ ହେଉଛି
msgid "Importing…"
msgstr "ଆମଦାନି କରାଯାଉଛି…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "ରେଜ୍ୟୁମେ ହେଡର୍ ଅନ୍ତର୍ଭୁକ୍ତ କରନ୍ତୁ"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "ଇଣ୍ଡେଣ୍ଟ ବୃଦ୍ଧି କରନ୍ତୁ"
@@ -2574,11 +2598,6 @@ msgstr "ତାଲିକା (List)"
msgid "Lithuanian"
msgstr "ଲିଥୁଆନିଆନ୍"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} ଟେମ୍ପଲେଟରେ ଆପଣଙ୍କ ରିଜ୍ୟୁମର ଲାଇଭ୍ ପ୍ରିଭ୍ୟୁ"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AI ପ୍ରଦାନକାରୀଙ୍କୁ ଲୋଡ୍ କରାଯାଉଛି। ଦୟାକରି କିଛି ସମୟ ମଧ୍ୟରେ ପୁଣି ଚେଷ୍ଟା କରନ୍ତୁ।"
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "କାର୍ଯ୍ୟକ୍ଷମ ରିଜ୍ୟୁମ୍ ଉପଲବ୍ଧ ନାହିଁ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "ମିଷ୍ଟ୍ରାଲ୍ ଏଆଇ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "ମଡେଲ୍"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ଓଡ଼ିଆ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "ଓଲାମା କ୍ଲାଉଡ୍"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "ଅବଧି"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "ଦ୍ୱନ୍ଦ୍ୱ"
#: src/libs/locale.ts
msgid "Persian"
msgstr "ପର୍ସିଆନ୍"
@@ -3838,6 +3865,10 @@ msgstr "ପାସୱାର୍ଡ ଦେଖାନ୍ତୁ"
msgid "Show picture"
msgstr "ଚିତ୍ର ଦେଖାନ୍ତୁ"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "କଭର ଲେଟରରେ ସମାନ ପ୍ରଥମ ପୃଷ୍ଠା ହେଡର ଦେଖାନ୍ତୁ।"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "ଶିରୋନାମା"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "ଆପଣଙ୍କ ଆକାଉଣ୍ଟ ବିଲୋପ କରିବା ପାଇଁ, ଆପଣକୁ ନିଶ୍ଚିତିକରଣ ପାଠ୍ୟ ପ୍ରବେଶ କରି ତଳେ ଥିବା ବଟନ୍‌କୁ କ୍ଲିକ୍ କରିବାକୁ ପଡିବ।"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "ଏକାଠି.ଆଇ"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "ଏକ ଗୁଳିର ମୂଲ୍ୟ |"
msgid "X (Twitter)"
msgstr "X (ଟ୍ୱିଟର)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI ଗ୍ରୋକ୍"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "ହଁ, Reactive Resume ଅନେକ ଭାଷାରେ ଉପଲବ୍ଧ। ଆପଣ ସେଟିଂସ୍ ପେଜ୍‌ରେ, କିମ୍ବା ଡାହାଣ ପର୍ଯ୍ୟନ୍ତ ଉପର କୋଣରେ ଥିବା ଭାଷା ସ୍ୱିଚ୍‌ର ବ୍ୟବହାର କରି ପସନ୍ଦକ୍ରାତ ଭାଷା ଚୟନ କରିପାରିବେ। ଯଦି ଆପଣ ଆପଣଙ୍କ ଭାଷାକୁ ଦେଖୁନଥିବେ, କିମ୍ବା ଅବସ୍ଥିତ ଅନୁବାଦଗୁଡିକୁ ଉନ୍ନତ କରିବାକୁ ଚାହାଁନ୍ତି, ତେବେ ଆପଣ <0>Crowdin ରେ ଅନୁବାଦଗୁଡିକୁ ଅବଦାନ ଦେଇପାରିବେ<1> (ନୂତନ ଟାବ୍‌ରେ ଖୋଲେ)</1></0>।"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@@ -758,6 +758,10 @@ msgstr "Kataloński"
msgid "Center Align"
msgstr "Wyrównaj do środka"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Mózgi"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Kliknij tutaj, aby wybrać plik do importu"
msgid "Close AI assistant"
msgstr "Zamknij asystenta AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Przystać do siebie"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Zmniejsz wcięcie"
msgid "Decrease zoom"
msgstr "Zmniejsz powiększenie"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Głębokie poszukiwania"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Stopień"
@@ -1885,6 +1897,10 @@ msgstr "Znajdź słabe punkty i przepisz je, podając mocniejsze wyniki, liczby,
msgid "Finnish"
msgstr "Fiński"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fajerwerki"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Dopasuj do widoku"
@@ -2072,6 +2088,10 @@ msgstr "Grecki"
msgid "Grid"
msgstr "Siatka"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Rozszerz zespół"
@@ -2271,6 +2291,10 @@ msgstr "Importowanie CV..."
msgid "Importing…"
msgstr "Importowanie…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Dołącz nagłówek CV"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Zwiększ wcięcie"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "Litewski"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Podgląd na żywo Twojego CV w szablonie {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Ładowanie dostawców sztucznej inteligencji. Spróbuj ponownie za chwilę."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Brakuje CV"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Chmura Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Okres"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Zakłopotanie"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Perski"
@@ -3838,6 +3865,10 @@ msgstr "Proszę pokazać hasło"
msgid "Show picture"
msgstr "Pokaż zdjęcie"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Pokaż ten sam nagłówek pierwszej strony na liście motywacyjnym."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Tytuł"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Aby usunąć konto, wpisz tekst potwierdzający i kliknij przycisk poniżej."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Razem.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Warto spróbować"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Tak, Reactive Resume jest dostępne w wielu językach. Możesz wybrać preferowany język na stronie ustawień lub za pomocą przełącznika języka w prawym górnym rogu. Jeśli nie widzisz swojego języka lub chcesz ulepszyć istniejące tłumaczenia, możesz <0>współtworzyć tłumaczenia na Crowdin<1> (otwiera się w nowej karcie)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Catalão"
msgid "Center Align"
msgstr "Alinhar ao centro"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cérebros"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Clique aqui para selecionar um arquivo para importar"
msgid "Close AI assistant"
msgstr "Fechar assistente de IA"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Coerência"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Diminuir recuo"
msgid "Decrease zoom"
msgstr "Diminuir o zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Grau"
@@ -1885,6 +1897,10 @@ msgstr "Identifique os pontos fracos e reescreva-os com resultados mais impactan
msgid "Finnish"
msgstr "Finlandês"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fogos de artifício"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Adequado para visualização"
@@ -2072,6 +2088,10 @@ msgstr "Grego"
msgid "Grid"
msgstr "Grid"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Aumentar a equipe"
@@ -2271,6 +2291,10 @@ msgstr "Importando seu currículo..."
msgid "Importing…"
msgstr "Importando…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Incluir cabeçalho do currículo"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Aumentar recuo"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "Lituano"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Pré-visualização em tempo real do seu currículo no modelo {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Carregando provedores de IA. Tente novamente em instantes."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Currículo de trabalho ausente"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "IA Mistral"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modelo"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Nuvem de Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Período"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplexidade"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persa"
@@ -3838,6 +3865,10 @@ msgstr "Mostrar senha"
msgid "Show picture"
msgstr "Mostrar imagem"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Mostrar o mesmo cabeçalho da primeira página na carta de apresentação."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Título"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Para excluir sua conta, você precisa inserir o texto de confirmação e clicar no botão abaixo."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Juntos.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Vale a pena tentar"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Sim, o Reactive Resume está disponível em vários idiomas. Você pode escolher seu idioma preferido na página de configurações ou usando o seletor de idioma no canto superior direito. Se você não encontrar seu idioma ou quiser melhorar as traduções existentes, você pode <0>contribuir com as traduções no Crowdin<1> (abre em nova aba)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Catalão"
msgid "Center Align"
msgstr "Alinhar ao centro"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cérebros"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Clique aqui para selecionar um ficheiro para importar"
msgid "Close AI assistant"
msgstr "Fechar assistente de IA"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Coerência"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Diminuir recuo"
msgid "Decrease zoom"
msgstr "Diminuir o zoom"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Grau"
@@ -1885,6 +1897,10 @@ msgstr "Identifique os pontos fracos e reescreva-os com resultados mais impactan
msgid "Finnish"
msgstr "Finlandês"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fogos de artifício"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Adequado para visualização"
@@ -2072,6 +2088,10 @@ msgstr "Grego"
msgid "Grid"
msgstr "Grelha"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Fazer crescer a equipa"
@@ -2271,6 +2291,10 @@ msgstr "A importar o seu currículo..."
msgid "Importing…"
msgstr "Importando…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Incluir cabeçalho do CV"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Aumentar recuo"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "Lituano"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Pré-visualização em tempo real do seu currículo no modelo {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Carregando fornecedores de IA. Tente novamente dentro de instantes."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Currículo de trabalho ausente"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "IA Mistral"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modelo"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Nuvem de Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Período"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplexidade"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persa"
@@ -3838,6 +3865,10 @@ msgstr "Mostrar palavra-passe"
msgid "Show picture"
msgstr "Mostrar imagem"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Mostrar o mesmo cabeçalho da primeira página na carta de apresentação."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Título"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Para eliminar a sua conta, tem de introduzir o texto de confirmação e clicar no botão abaixo."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Juntos.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Vale a pena tentar"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Sim, o Reactive Resume está disponível em vários idiomas. Pode escolher o seu idioma preferido na página de configurações ou utilizando o seletor de idioma no canto superior direito. Se não vir o seu idioma ou quiser melhorar as traduções existentes, pode <0>contribuir para as traduções no Crowdin<1> (abre num novo separador)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ro\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
@@ -758,6 +758,10 @@ msgstr "Catalană"
msgid "Center Align"
msgstr "Aliniere la centru"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebra"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Faceți clic aici pentru a selecta un fișier de importat"
msgid "Close AI assistant"
msgstr "Închide asistentul AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Coerență"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Micșorează indentarea"
msgid "Decrease zoom"
msgstr "Reduceți zoomul"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Căutare profundă"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Diplomă"
@@ -1885,6 +1897,10 @@ msgstr "Găsește punctele slabe și rescrie-le cu rezultate, numere, domenii de
msgid "Finnish"
msgstr "Finlandeză"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Focuri de artificii"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Potrivire pentru vizualizare"
@@ -2072,6 +2088,10 @@ msgstr "Greacă"
msgid "Grid"
msgstr "Grilă"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Extinde echipa"
@@ -2271,6 +2291,10 @@ msgstr "Se importă CV-ul..."
msgid "Importing…"
msgstr "Importarea…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Include antetul CV-ului"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Măriți indentarea"
@@ -2574,11 +2598,6 @@ msgstr "Listă"
msgid "Lithuanian"
msgstr "Lituaniană"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Previzualizare live a CV-ului dvs. în șablonul {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Se încarcă furnizorii de inteligență artificială. Vă rugăm să încercați din nou imediat."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "CV de lucru lipsă"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Norul Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Perioadă"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Perplexitate"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persană"
@@ -3838,6 +3865,10 @@ msgstr "Afișați parola"
msgid "Show picture"
msgstr "Afișați imaginea"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Afișează același antet de primă pagină și pe scrisoarea de intenție."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titlu"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Pentru a vă șterge contul, trebuie să introduceți textul de confirmare și să faceți clic pe butonul de mai jos."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Împreună.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Merită o șansă"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Da, Reactive Resume este disponibil în mai multe limbi. Puteți alege limba preferată în pagina de setări sau folosind comutatorul de limbă din colțul din dreapta sus. Dacă nu vedeți limba dvs. sau doriți să îmbunătățiți traducerile existente, puteți <0>contribui la traduceri pe Crowdin<1> (se deschide într-o filă nouă)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ru\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@@ -758,6 +758,10 @@ msgstr "Каталанский"
msgid "Center Align"
msgstr "Выровнять по центру"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Мозги"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Нажмите здесь, чтобы выбрать файл для и
msgid "Close AI assistant"
msgstr "Закрыть ИИ-помощника"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Когере"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Уменьшить отступ"
msgid "Decrease zoom"
msgstr "Уменьшить масштаб"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Степень"
@@ -1885,6 +1897,10 @@ msgstr "Найдите слабые пункты и переформулируй
msgid "Finnish"
msgstr "Финский"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Фейерверк"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Подходит для просмотра"
@@ -2072,6 +2088,10 @@ msgstr "Греческий"
msgid "Grid"
msgstr "Плитка"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Грок"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Расширить команду"
@@ -2271,6 +2291,10 @@ msgstr "Импорт вашего резюме..."
msgid "Importing…"
msgstr "Импорт…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Добавить заголовок резюме"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Увеличить отступ"
@@ -2574,11 +2598,6 @@ msgstr "Список"
msgid "Lithuanian"
msgstr "Литовский"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Предварительный просмотр вашего резюме в шаблоне {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Загрузка поставщиков ИИ. Пожалуйста, попробуйте еще раз через минуту."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Отсутствует резюме с места работы."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Модель"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Ория"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Оллама"
msgid "Ollama Cloud"
msgstr "Облако Алламы"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Период"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Замешательство"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Персидский"
@@ -3838,6 +3865,10 @@ msgstr "Показать пароль"
msgid "Show picture"
msgstr "Показать картинку"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Показывать тот же заголовок первой страницы в сопроводительном письме."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Название"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Чтобы удалить учетную запись, вам нужно ввести текст подтверждения и нажать кнопку ниже."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Стоит попробовать"
msgid "X (Twitter)"
msgstr "X (Твиттер)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Да, Reactive Resume доступен на нескольких языках. Вы можете выбрать предпочитаемый язык на странице настроек или с помощью переключателя языка в правом верхнем углу. Если вы не видите свой язык или хотите улучшить существующие переводы, вы можете <0>поучаствовать в переводах на Crowdin<1> (открывается в новой вкладке)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: sk\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@@ -758,6 +758,10 @@ msgstr "Katalánčina"
msgid "Center Align"
msgstr "Zarovnať na stred"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Mozgy"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Kliknutím sem vyber súbor na import"
msgid "Close AI assistant"
msgstr "Zatvoriť asistenta s umelou inteligenciou"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Súdržnosť"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Zmenšiť odsadenie"
msgid "Decrease zoom"
msgstr "Zmenšiť priblíženie"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Hlboké vyhľadávanie"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Titul"
@@ -1885,6 +1897,10 @@ msgstr "Nájdite slabé odrážky a prepíšte ich so silnejšími výsledkami,
msgid "Finnish"
msgstr "Fínčina"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Ohňostroj"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Prispôsobiť zobrazeniu"
@@ -2072,6 +2088,10 @@ msgstr "Gréčtina"
msgid "Grid"
msgstr "Mriežka"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Rozšíriť tím"
@@ -2271,6 +2291,10 @@ msgstr "Importujem tvoj životopis..."
msgid "Importing…"
msgstr "Importuje sa…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Zahrnúť hlavičku životopisu"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Zväčšiť odsadenie"
@@ -2574,11 +2598,6 @@ msgstr "Zoznam"
msgid "Lithuanian"
msgstr "Litovčina"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Živý náhľad vášho životopisu v šablóne {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Načítavajú sa poskytovatelia umelej inteligencie. Skúste to znova o chvíľu."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Chýbajúci pracovný životopis"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Urijčina"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Obdobie"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Zmätok"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Perzština"
@@ -3838,6 +3865,10 @@ msgstr "Zobraziť heslo"
msgid "Show picture"
msgstr "Zobraziť obrázok"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Zobraziť rovnakú hlavičku prvej strany aj v motivačnom liste."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Názov"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Na vymazanie účtu musíš zadať potvrdzujúci text a kliknúť na tlačidlo nižšie."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Spolu.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Stojí za to"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Áno, Reactive Resume je dostupné vo viacerých jazykoch. Uprednostňovaný jazyk si môžeš zvoliť na stránke nastavení alebo pomocou prepínača jazykov v pravom hornom rohu. Ak svoj jazyk nevidíš alebo chceš zlepšiť existujúce preklady, môžeš <0>prispieť k prekladom na Crowdin<1> (otvorí sa na novej karte)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: sl\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
@@ -758,6 +758,10 @@ msgstr "Katalonščina"
msgid "Center Align"
msgstr "Poravnava na sredino"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Kliknite tukaj za izbiro datoteke za uvoz"
msgid "Close AI assistant"
msgstr "Zapri pomočnika umetne inteligence"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Skladno"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Zmanjšaj zamik"
msgid "Decrease zoom"
msgstr "Zmanjšaj povečavo"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Globoko iskanje"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Stopnja"
@@ -1885,6 +1897,10 @@ msgstr "Poiščite šibke točke in jih preoblikujte z močnejšimi rezultati,
msgid "Finnish"
msgstr "Finščina"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Ognjemet"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Prilagodi pogledu"
@@ -2072,6 +2088,10 @@ msgstr "Grščina"
msgid "Grid"
msgstr "Mreža"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Povečaj ekipo"
@@ -2271,6 +2291,10 @@ msgstr "Uvažanje vašega življenjepisa..."
msgid "Importing…"
msgstr "Uvažanje…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Vključi glavo življenjepisa"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Povečaj zamik"
@@ -2574,11 +2598,6 @@ msgstr "Seznam"
msgid "Lithuanian"
msgstr "Litovščina"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Predogled vašega življenjepisa v živo v predlogi {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Nalaganje ponudnikov umetne inteligence. Poskusite znova čez trenutek."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Manjka delovni življenjepis"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "odijščina"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Cloud"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Obdobje"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Zmedenost"
#: src/libs/locale.ts
msgid "Persian"
msgstr "perzijščina"
@@ -3838,6 +3865,10 @@ msgstr "Prikaži geslo"
msgid "Show picture"
msgstr "Prikaži sliko"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Prikaži enako glavo prve strani tudi na spremnem pismu."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Naziv"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Za izbris računa morate vnesti potrditveno besedilo in klikniti spodnji gumb."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Skupaj.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Vredno poskusiti"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Da, Reactive Resume je na voljo v več jezikih. Želeni jezik lahko izberete na strani z nastavitvami ali z izbirnikom jezika v zgornjem desnem kotu. Če svojega jezika ne najdete ali bi želeli izboljšati obstoječe prevode, lahko <0>prispevate prevode na Crowdin<1> (odpre se v novem zavihku)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: sq\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Albanian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalanisht"
msgid "Center Align"
msgstr "Rreshto në qendër"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klikoni këtu për të zgjedhur një skedar për importim"
msgid "Close AI assistant"
msgstr "Mbyll asistentin e inteligjencës artificiale"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Koherë"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Zvogëlo indentin"
msgid "Decrease zoom"
msgstr "Zvogëlo zmadhimin"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Kërkim i thellë"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Diploma"
@@ -1885,6 +1897,10 @@ msgstr "Gjej pikat e dobëta dhe rishkruani ato me rezultate, numra, fushëvepri
msgid "Finnish"
msgstr "Finlandisht"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fishekzjarre"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "I përshtatshëm për tu parë"
@@ -2072,6 +2088,10 @@ msgstr "Greqisht"
msgid "Grid"
msgstr "Rrjetë"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Zmadho ekipin"
@@ -2271,6 +2291,10 @@ msgstr "Po importohet CV-ja juaj..."
msgid "Importing…"
msgstr "Duke importuar…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Përfshi kokën e CV-së"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Rrit indentin"
@@ -2574,11 +2598,6 @@ msgstr "Listë"
msgid "Lithuanian"
msgstr "Lituanisht"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Pamje paraprake e drejtpërdrejtë e CV-së suaj në shabllonin {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Duke ngarkuar ofruesit e inteligjencës artificiale. Ju lutemi provoni përsëri pas pak."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Mungon CV-ja e punës"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modeli"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Reja Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Periudha"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Hutim"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persisht"
@@ -3838,6 +3865,10 @@ msgstr "Shfaq fjalëkalimin"
msgid "Show picture"
msgstr "Shfaq foton"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Shfaq të njëjtën kokë të faqes së parë edhe në letrën motivuese."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titulli"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Për të fshirë llogarinë tuaj, duhet të shkruani tekstin e konfirmimit dhe të klikoni butonin më poshtë."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Së bashku.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Ia vlen një gjuajtje"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Po, Reactive Resume është i disponueshëm në shumë gjuhë. Mund të zgjidhni gjuhën tuaj të preferuar në faqen e parametrave, ose duke përdorur zgjedhësin e gjuhës në këndin e sipërm djathtas. Nëse nuk e shihni gjuhën tuaj, ose dëshironi të përmirësoni përkthimet ekzistuese, mund të <0>kontribuoni për përkthimet në Crowdin<1> (hapet në skedë të re)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: sr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Serbian (Cyrillic)\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@@ -758,6 +758,10 @@ msgstr "Каталонски"
msgid "Center Align"
msgstr "Поравнај по средини"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Церебрас"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Кликните овде да изаберете датотеку за
msgid "Close AI assistant"
msgstr "Затвори AI асистент"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Кохерентно"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Смањи увлачење"
msgid "Decrease zoom"
msgstr "Смањи зумирање"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ДипСеек"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Степен"
@@ -1885,6 +1897,10 @@ msgstr "Пронађите слабе тачке и препишите их са
msgid "Finnish"
msgstr "Фински"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Ватромет"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Прилагоди приказу"
@@ -2072,6 +2088,10 @@ msgstr "Грчки"
msgid "Grid"
msgstr "Мрежа"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Грок"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Прошири тим"
@@ -2271,6 +2291,10 @@ msgstr "Увоз вашег резимеа..."
msgid "Importing…"
msgstr "Увоз…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Укључи заглавље резимеа"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Повећај увлачење"
@@ -2574,11 +2598,6 @@ msgstr "Листа"
msgid "Lithuanian"
msgstr "Литвански"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Преглед вашег животописа уживо у шаблону {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Учитавање добављача вештачке интелигенције. Молимо покушајте поново за тренутак."
@@ -2698,6 +2717,10 @@ msgstr "Микрософт Ворд"
msgid "Missing working resume"
msgstr "Недостаје радни животопис"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Мистрал АИ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Модел"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Одија"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Оллама"
msgid "Ollama Cloud"
msgstr "Олама Клауд"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "ПДФ"
msgid "Period"
msgstr "Период"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Збуњеност"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Персијски"
@@ -3838,6 +3865,10 @@ msgstr "Прикажи лозинку"
msgid "Show picture"
msgstr "Прикажи слику"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Прикажи исто заглавље прве стране и на пропратном писму."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Наслов"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Да бисте обрисали свој налог, потребно је да унесете потврдни текст и кликнете на дугме испод."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Заједно.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Вреди покушати"
msgid "X (Twitter)"
msgstr "X (Твитер)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Грок"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Да, Реактивни Резиме је доступан на више језика. Омиљени језик можете изабрати на страници подешавања или помоћу прекидача језика у горњем десном углу. Ако не видите свој језик или желите да побољшате постојеће преводе, можете <0>допринети преводима на Crowdin-у<1> (отвара се у новом језичку)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: sv\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalanska"
msgid "Center Align"
msgstr "Centrera"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Cerebras"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Klicka här för att välja en fil att importera"
msgid "Close AI assistant"
msgstr "Stäng AI-assistenten"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Sammanhängande"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Minska indrag"
msgid "Decrease zoom"
msgstr "Minska zoomen"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Examen"
@@ -1885,6 +1897,10 @@ msgstr "Hitta svaga punkter och skriv om dem med starkare utfall, siffror, omfat
msgid "Finnish"
msgstr "Finska"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Fyrverkeri"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Anpassa för visning"
@@ -2072,6 +2088,10 @@ msgstr "Grekiska"
msgid "Grid"
msgstr "Rutnät"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Väx teamet"
@@ -2271,6 +2291,10 @@ msgstr "Importerar ditt CV..."
msgid "Importing…"
msgstr "Importerar…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Inkludera CV-sidhuvud"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Öka indraget"
@@ -2574,11 +2598,6 @@ msgstr "Lista"
msgid "Lithuanian"
msgstr "Litauiska"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Förhandsvisning av ditt CV i realtid i mallen {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Laddar AI-leverantörer. Försök igen om en stund."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Saknar arbets-CV"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Modell"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama-molnet"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Period"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Bryderi"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Persiska"
@@ -3838,6 +3865,10 @@ msgstr "Visa lösenord"
msgid "Show picture"
msgstr "Visa bild"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Visa samma förstasidshuvud på det personliga brevet."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Titel"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "För att radera ditt konto måste du ange bekräftelsetexten och klicka på knappen nedan."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Tillsammans.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Värt ett försök"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ja, Reactive Resume finns på flera språk. Du kan välja ditt föredragna språk på inställningssidan eller med språkväljaren uppe till höger. Om du inte ser ditt språk, eller vill förbättra de befintliga översättningarna, kan du <0>bidra till översättningarna på Crowdin<1> (öppnas i ny flik)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: ta\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Tamil\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "கட்டலான்"
msgid "Center Align"
msgstr "நடுவில் சீரமை"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "பெருமூளைகள்"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "இறக்குமதி செய்ய ஒரு கோப்பை
msgid "Close AI assistant"
msgstr "AI உதவியாளரை மூடு"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "கோஹியர்"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "உள் தள்ளலைக் குறைக்கவும்"
msgid "Decrease zoom"
msgstr "ஜூம் அளவைக் குறைக்கவும்"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "டீப்சீக்"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "பட்டம்"
@@ -1885,6 +1897,10 @@ msgstr "பலவீனமான அம்சங்களைக் கண்ட
msgid "Finnish"
msgstr "ஃபின்னிஷ்"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "பட்டாசுகள்"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "பார்வைக்கு ஏற்றது"
@@ -2072,6 +2088,10 @@ msgstr "கிரேக்கம்"
msgid "Grid"
msgstr "கட்டம்"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "க்ரோக்"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "அணியை வளர்த்தெடுக்கவும்"
@@ -2271,6 +2291,10 @@ msgstr "உங்கள் ரெஸ்யூமியை இறக்கும
msgid "Importing…"
msgstr "… இறக்குமதி செய்கிறது"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "சுயவிவரத் தலைப்பைச் சேர்க்கவும்"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "உள் தள்ளலை அதிகரிக்கவும்"
@@ -2574,11 +2598,6 @@ msgstr "பட்டியல்"
msgid "Lithuanian"
msgstr "லிதுவேனியன்"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} டெம்ப்ளேட்டில் உங்கள் ரெஸ்யூமேயின் நேரடி முன்னோட்டம்"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "செயற்கை நுண்ணறிவு வழங்குநர்கள் ஏற்றப்படுகின்றன. தயவுசெய்து சிறிது நேரத்தில் மீண்டும் முயற்சிக்கவும்."
@@ -2698,6 +2717,10 @@ msgstr "மைக்ரோசாஃப்ட் வேர்ட்"
msgid "Missing working resume"
msgstr "வேலைக்கான ரெஸ்யூம் காணவில்லை"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "மிஸ்ட்ரல் ஏஐ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "மாதிரி"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ஒடியா"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "ல்லாமா"
msgid "Ollama Cloud"
msgstr "ல்லாமா கிளவுட்"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "பிடிஎஃப்"
msgid "Period"
msgstr "காலம்"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "குழப்பம்"
#: src/libs/locale.ts
msgid "Persian"
msgstr "பேர்ஷியன்"
@@ -3838,6 +3865,10 @@ msgstr "கடவுச்சொல்லைக் காட்டு"
msgid "Show picture"
msgstr "படத்தைக் காட்டு"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "கவர் லெட்டரிலும் அதே முதல் பக்க தலைப்பைக் காட்டு."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "தலைப்பு"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "உங்கள் கணக்கை நீக்க, கீழே உள்ள உறுதிப்படுத்தல் உரையை உள்ளீடு செய்து, கீழே உள்ள பொத்தானை கிளிக் செய்ய வேண்டும்."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "ஒரு ஷாட் மதிப்பு"
msgid "X (Twitter)"
msgstr "X (ட்விட்டர்)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI க்ரோக்"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "ஆம், Reactive Resume பல மொழிகளில் கிடைக்கிறது. நீங்கள் அமைப்புகள் பக்கத்தில், அல்லது மேல் வலது மூலையில் உள்ள மொழி மாற்றியைப் பயன்படுத்தி உங்கள் விருப்பமான மொழியைத் தேர்ந்தெடுக்கலாம். உங்கள் மொழி பட்டியலில் தெரியவில்லையெனில், அல்லது ஏற்கனவே உள்ள மொழிபெயர்ப்புகளை மேம்படுத்த விரும்பினால், நீங்கள் <0>Crowdin-ல் உள்ள மொழிபெயர்ப்புகளுக்கு பங்களிக்கலாம்<1> (புதிய தாவலில் திறக்கிறது)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: te\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Telugu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "కాటలాన్"
msgid "Center Align"
msgstr "మద్యAlign"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "సెరెబ్రాస్"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "ఇంపోర్ట్ చేయడానికి ఫైల్ ను
msgid "Close AI assistant"
msgstr "AI సహాయకుడిని మూసివేయండి"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "పొందికగా"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "ఇండెంట్‌ను తగ్గించండి"
msgid "Decrease zoom"
msgstr "జూమ్‌ను తగ్గించండి"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "డీప్‌సీక్"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "డిగ్రీ"
@@ -1885,6 +1897,10 @@ msgstr "బలహీనమైన అంశాలను గుర్తించ
msgid "Finnish"
msgstr "ఫిన్నిష్"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "బాణసంచా"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "వీక్షించడానికి సరిపోతుంది"
@@ -2072,6 +2088,10 @@ msgstr "గ్రీకు"
msgid "Grid"
msgstr "గ్రిడ్"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "గ్రోక్"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "సమితిని అభివృద్ధి చేయండి"
@@ -2271,6 +2291,10 @@ msgstr "మీ రిజ్యూమ్‌ను ఇంపోర్ట్ చే
msgid "Importing…"
msgstr "… దిగుమతి అవుతోంది"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "రెజ్యూమే హెడర్‌ను చేర్చండి"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "ఇండెంట్‌ను పెంచండి"
@@ -2574,11 +2598,6 @@ msgstr "జాబితా"
msgid "Lithuanian"
msgstr "లిథువేనియన్"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} టెంప్లేట్‌లో మీ రెజ్యూమె యొక్క లైవ్ ప్రివ్యూ"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "AI ప్రొవైడర్లు లోడ్ అవుతున్నాయి. దయచేసి కాసేపటి తర్వాత మళ్ళీ ప్రయత్నించండి."
@@ -2698,6 +2717,10 @@ msgstr "మైక్రోసాఫ్ట్ వర్డ్"
msgid "Missing working resume"
msgstr "తప్పిపోయిన వర్కింగ్ రెజ్యూమె"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "మిస్ట్రాల్ AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "మోడల్"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "ఒడియా"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "ల్లామా"
msgid "Ollama Cloud"
msgstr "ల్లామా క్లౌడ్"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "పిడిఎఫ్"
msgid "Period"
msgstr "కాలము"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "గందరగోళం"
#: src/libs/locale.ts
msgid "Persian"
msgstr "పర్షియన్"
@@ -3838,6 +3865,10 @@ msgstr "పాస్‌వర్డ్ చూపించు"
msgid "Show picture"
msgstr "చిత్రాన్ని చూపించు"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "కవర్ లెటర్‌పై కూడా అదే మొదటి పేజీ హెడర్‌ను చూపించు."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "టైటిల్"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "మీ ఖాతాను తొలగించడానికి, కన్ఫర్మేషన్ టెక్స్ట్ ఇవ్వండి మరియు క్రింద ఉన్న బటన్‌ను నొక్కండి."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "కలిసి.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "ప్రయత్నించదగ్గది"
msgid "X (Twitter)"
msgstr "X (ట్విట్టర్)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI గ్రోక్"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "అవును, Reactive Resume అనేక భాషల్లో అందుబాటులో ఉంది. మీరు సెట్టింగ్స్ పేజీలో లేదా పై కోణంలో భాష మార్పిడి ద్వారా మీకు ఇష్టమైన భాషను ఎంచుకోవచ్చు. మీ భాష కనిపించకపోతే, లేకపోతే మీరు ప్రస్తుత అనువాదాలను మెరుగుపరచాలనుకుంటే, మీరు <0>Crowdinలో అనువాదాలకు ప్రయత్నించవచ్చు<1> (కొత్త ట్యాబ్‌లో తెరవబడుతుంది)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: th\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "คาตาลัน"
msgid "Center Align"
msgstr "จัดกึ่งกลาง"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "เซเรบราส"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "คลิกที่นี่เพื่อเลือกไฟล์
msgid "Close AI assistant"
msgstr "ปิดผู้ช่วย AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "โคฮีร์"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "ลดระยะห่าง"
msgid "Decrease zoom"
msgstr "ลดระดับการซูม"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "ดีพซีค"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "ปริญญา"
@@ -1885,6 +1897,10 @@ msgstr "ค้นหาประเด็นสำคัญที่อ่อน
msgid "Finnish"
msgstr "ฟินแลนด์"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "ดอกไม้ไฟ"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "เหมาะสำหรับรับชม"
@@ -2072,6 +2088,10 @@ msgstr "กรีก"
msgid "Grid"
msgstr "ตาราง"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "โกรค"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "ขยายทีม"
@@ -2271,6 +2291,10 @@ msgstr "กำลังนำเข้าเรซูเม่ของคุณ
msgid "Importing…"
msgstr "กำลังนำเข้า…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "รวมส่วนหัวของเรซูเม่"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "เพิ่มระยะเยื้อง"
@@ -2574,11 +2598,6 @@ msgstr "รายการ"
msgid "Lithuanian"
msgstr "ลิทัวเนีย"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "ดูตัวอย่างประวัติย่อของคุณแบบเรียลไทม์ในเทมเพลต {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "กำลังโหลดผู้ให้บริการ AI โปรดลองอีกครั้งในภายหลัง"
@@ -2698,6 +2717,10 @@ msgstr "ไมโครซอฟต์ เวิร์ด"
msgid "Missing working resume"
msgstr "ประวัติการทำงานไม่ครบถ้วน"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "มิสทรัล AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "โมเดล"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "โอเดีย"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "โอลาม"
msgid "Ollama Cloud"
msgstr "โอลาม่าคลาวด์"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "ช่วงเวลา"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "ความสับสน"
#: src/libs/locale.ts
msgid "Persian"
msgstr "เปอร์เซีย"
@@ -3838,6 +3865,10 @@ msgstr "แสดงรหัสผ่าน"
msgid "Show picture"
msgstr "แสดงรูปภาพ"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "แสดงส่วนหัวหน้าแรกเดียวกันบนจดหมายสมัครงาน"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "ชื่อ"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "ในการลบบัญชีของคุณ กรุณากรอกข้อความยืนยันและคลิกปุ่มด้านล่าง"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "ทูธตี้.ไอ"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "น่าลอง"
msgid "X (Twitter)"
msgstr "X (ทวิตเตอร์)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "ใช่, Reactive Resume มีให้บริการหลายภาษา คุณสามารถเลือกภาษาที่คุณต้องการได้ในหน้าตั้งค่าหรือใช้ตัวสลับภาษาในมุมขวาบน หากคุณไม่เห็นภาษาของคุณ หรือหากคุณต้องการปรับปรุงคำแปลปัจจุบัน คุณสามารถ<0>ร่วมแปลบน Crowdin<1> (เปิดในแท็บใหม่)</1></0> ได้"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalanca"
msgid "Center Align"
msgstr "Ortala"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Beyinler"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "İçe aktarmak için bir dosya seçmek üzere buraya tıklayın"
msgid "Close AI assistant"
msgstr "Yapay zeka asistanını kapat"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Uyum"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Girintiyi azalt"
msgid "Decrease zoom"
msgstr "Yakınlaştırmayı azalt"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Derece"
@@ -1885,6 +1897,10 @@ msgstr "Zayıf madde işaretlerini bulun ve daha güçlü sonuçlar, sayılar, k
msgid "Finnish"
msgstr "Fince"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Havai fişekler"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Görüntülemeye uygun"
@@ -2072,6 +2088,10 @@ msgstr "Yunanca"
msgid "Grid"
msgstr "Izgara"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Ekibi Büyüt"
@@ -2271,6 +2291,10 @@ msgstr "Özgeçmişiniz içe aktarılıyor..."
msgid "Importing…"
msgstr "… İçe Aktarılıyor"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Özgeçmiş başlığını dahil et"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Girintiyi artır"
@@ -2574,11 +2598,6 @@ msgstr "Liste"
msgid "Lithuanian"
msgstr "Litvanca"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Özgeçmişinizin canlı önizlemesi {0} şablonunda"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Yapay zeka sağlayıcıları yükleniyor. Lütfen bir süre sonra tekrar deneyin."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Eksik iş özgeçmişi"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral Yapay Zeka"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odiya"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama Bulutu"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Dönem"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Şaşkınlık"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Farsça"
@@ -3838,6 +3865,10 @@ msgstr "Şifreyi göster"
msgid "Show picture"
msgstr "Resmi göster"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Ön yazıda da aynı ilk sayfa başlığını göster."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Başlık"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Hesabınızı silmek için onay metnini girmeniz ve aşağıdaki butona tıklamanız gerekir."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Birlikte.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Denemeye değer"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Evet, Reactive Özgeçmiş birçok dilde mevcuttur. Tercih ettiğiniz dili ayarlar sayfasından veya sağ üst köşedeki dil değiştiriciyi kullanarak seçebilirsiniz. Eğer dilinizi göremiyorsanız ya da mevcut çevirileri geliştirmek istiyorsanız, <0>Crowdin'de çevirilere katkıda bulunabilirsiniz<1> (yeni sekmede açılır)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: uk\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@@ -758,6 +758,10 @@ msgstr "Каталонська"
msgid "Center Align"
msgstr "Вирівняти по центру"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Церебрас"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Натисніть тут, щоб вибрати файл для імп
msgid "Close AI assistant"
msgstr "Закрити помічника зі штучним інтелектом"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Зв'язати"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Зменшити відступ"
msgid "Decrease zoom"
msgstr "Зменшити масштаб"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Глибокий пошук"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Ступінь"
@@ -1885,6 +1897,10 @@ msgstr "Знайдіть слабкі пункти та перепишіть ї
msgid "Finnish"
msgstr "Фінська"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Феєрверки"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Пристосувати до перегляду"
@@ -2072,6 +2088,10 @@ msgstr "Грецька"
msgid "Grid"
msgstr "Сітка"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Грок"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Розширити команду"
@@ -2271,6 +2291,10 @@ msgstr "Імпортуємо ваше резюме..."
msgid "Importing…"
msgstr "Імпорт…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Додати заголовок резюме"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Збільшити відступ"
@@ -2574,11 +2598,6 @@ msgstr "Список"
msgid "Lithuanian"
msgstr "Литовська"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Попередній перегляд вашого резюме в шаблоні {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Завантаження постачальників ШІ. Будь ласка, спробуйте ще раз за мить."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Відсутнє робоче резюме"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Містраль ШІ"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Модель"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Одія"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Оллама."
msgid "Ollama Cloud"
msgstr "Хмара Оллама"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Період"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Збентеження"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Перська"
@@ -3838,6 +3865,10 @@ msgstr "Показати пароль"
msgid "Show picture"
msgstr "Показати зображення"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Показувати той самий заголовок першої сторінки в супровідному листі."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Назва"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Щоб видалити акаунт, введіть підтверджувальний текст і натисніть кнопку нижче."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Разом.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Варто спробувати"
msgid "X (Twitter)"
msgstr "Х (Твіттер)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Грок"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Так, Reactive Resume доступна багатьма мовами. Ви можете обрати бажану мову на сторінці налаштувань або через перемикач мови у верхньому правому кутку. Якщо ви не бачите своєї мови або хочете покращити існуючий переклад, ви можете <0>долучитися до перекладу на Crowdin<1> (відкриється у новій вкладці)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: uz\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Uzbek\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -758,6 +758,10 @@ msgstr "Katalan tili"
msgid "Center Align"
msgstr "Markazda tekislash"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Miya"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Import qilish uchun faylni tanlash uchun shu yerni bosing"
msgid "Close AI assistant"
msgstr "Sun'iy intellekt yordamchisini yopish"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Cohere"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Xatcho'pni kamaytirish"
msgid "Decrease zoom"
msgstr "Masshtabni kichraytirish"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "DeepSeek"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Daraja"
@@ -1885,6 +1897,10 @@ msgstr "Zaif o'qlarni toping va ularni kuchliroq natijalar, raqamlar, ko'lam va
msgid "Finnish"
msgstr "Fin tili"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Mushakbozlik"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Ko'rish uchun moslash"
@@ -2072,6 +2088,10 @@ msgstr "Yunon tili"
msgid "Grid"
msgstr "Jadval"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Jamoani kengaytirish"
@@ -2271,6 +2291,10 @@ msgstr "Rezyumengiz import qilinmoqda..."
msgid "Importing…"
msgstr "… import qilinmoqda"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Rezyume sarlavhasini qoshish"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Xoch chiziqni kattalashtirish"
@@ -2574,11 +2598,6 @@ msgstr "Roʻyxat"
msgid "Lithuanian"
msgstr "Litva tili"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "{0} shablonida rezyumening jonli ko'rinishi"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Sun'iy intellekt provayderlari yuklanmoqda. Iltimos, bir zumda qayta urinib ko'ring."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Ishchi rezyume yo'q"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Mistral AI"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Model"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odiya tili"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Ollama buluti"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Davr"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Sarosimaga tushish"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Fors tili"
@@ -3838,6 +3865,10 @@ msgstr "Parolni ko'rsating"
msgid "Show picture"
msgstr "Rasmni ko'rsatish"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Xatda ham birinchi sahifadagi bir xil sarlavhani ko'rsatish."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Sarlavha"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Hisobingizni oʻchirish uchun tasdiqlash matnini kiriting va quyidagi tugmani bosing."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Sinab ko'rishga arziydi"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Ha, Reactive Resume bir nechta tillarda mavjud. Siz sozlamalar sahifasida yoki yuqori o'ng burchakdagi til almashtirgich yordamida o'zingizga qulay tilni tanlashingiz mumkin. Agar tilingiz ro'yxatda bo'lmasa yoki mavjud tarjimalarni yaxshilashni istasangiz, <0>Crowdin'da tarjimalarga hissa qo'shishingiz mumkin<1> (yangi tabda ochiladi)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "Tiếng Catalan"
msgid "Center Align"
msgstr "Căn giữa"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "Não bộ"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "Nhấn vào đây để chọn file cần nhập khẩu"
msgid "Close AI assistant"
msgstr "Trợ lý AI gần gũi"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "Liên kết"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "Giảm độ thụt lề"
msgid "Decrease zoom"
msgstr "Giảm độ phóng to"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "Tìm kiếm sâu"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "Bằng cấp"
@@ -1885,6 +1897,10 @@ msgstr "Hãy tìm những gạch đầu dòng yếu và viết lại chúng vớ
msgid "Finnish"
msgstr "Tiếng Phần Lan"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "Pháo hoa"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "Phù hợp để xem"
@@ -2072,6 +2088,10 @@ msgstr "Tiếng Hy Lạp"
msgid "Grid"
msgstr "Lưới"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "Groq"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "Phát triển đội ngũ"
@@ -2271,6 +2291,10 @@ msgstr "Đang nhập sơ yếu lý lịch của bạn..."
msgid "Importing…"
msgstr "Đang nhập…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "Bao gồm đầu trang hồ sơ"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "Tăng khoảng cách thụt lề"
@@ -2574,11 +2598,6 @@ msgstr "Danh sách"
msgid "Lithuanian"
msgstr "Tiếng Litva"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "Xem trước trực tiếp sơ yếu lý lịch của bạn trong mẫu {0}"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "Đang tải các nhà cung cấp AI. Vui lòng thử lại sau một lát."
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "Hồ sơ xin việc bị thiếu"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "Trí tuệ nhân tạo Mistral"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "Mô hình"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "Odia"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "Đám mây Ollama"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "Thời gian"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "Sự bối rối"
#: src/libs/locale.ts
msgid "Persian"
msgstr "Ba Tư"
@@ -3838,6 +3865,10 @@ msgstr "Hiển thị mật khẩu"
msgid "Show picture"
msgstr "Hiển thị hình ảnh"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "Hiển thị cùng đầu trang của trang đầu tiên trên thư xin việc."
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "Tiêu đề"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "Để xóa tài khoản của bạn, bạn cần nhập văn bản xác nhận và nhấp vào nút bên dưới."
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "Đáng để thử"
msgid "X (Twitter)"
msgstr "X (Twitter)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "Vâng, Resume Phản Ứng có sẵn bằng nhiều ngôn ngữ. Bạn có thể chọn ngôn ngữ ưa thích ở trang cài đặt, hoặc dùng bộ chuyển đổi ngôn ngữ ở góc trên cùng bên phải. Nếu bạn không thấy ngôn ngữ của mình, hoặc muốn cải thiện bản dịch hiện tại, bạn có thể <0>đóng góp dịch thuật trên Crowdin<1> (mở ở tab mới)</1></0>."
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "加泰罗尼亚语"
msgid "Center Align"
msgstr "居中对齐"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "大脑"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "点击此处选择要导入的文件"
msgid "Close AI assistant"
msgstr "近距离人工智能助手"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "凝聚"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "减少缩进"
msgid "Decrease zoom"
msgstr "降低缩放比例"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "深潜"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "学位"
@@ -1885,6 +1897,10 @@ msgstr "找出薄弱的要点,用更强有力的结果、数字、范围和更
msgid "Finnish"
msgstr "芬兰语"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "烟花"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "适合观看"
@@ -2072,6 +2088,10 @@ msgstr "希腊语"
msgid "Grid"
msgstr "网格"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "格罗克"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "扩充团队"
@@ -2271,6 +2291,10 @@ msgstr "正在导入你的简历…"
msgid "Importing…"
msgstr "正在导入…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "包含简历页眉"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "增加缩进"
@@ -2574,11 +2598,6 @@ msgstr "列表"
msgid "Lithuanian"
msgstr "立陶宛语"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "在 {0} 模板中实时预览您的简历"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "正在加载人工智能提供商。请稍后再试。"
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "缺少工作简历"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "米斯特拉尔人工智能"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "模型"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "奥里亚语"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "奥拉玛"
msgid "Ollama Cloud"
msgstr "奥拉玛"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "起止时间"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "困惑"
#: src/libs/locale.ts
msgid "Persian"
msgstr "波斯语"
@@ -3838,6 +3865,10 @@ msgstr "显示密码"
msgid "Show picture"
msgstr "显示图片"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "在求职信上显示相同的首页页眉。"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "标题"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "要删除你的账号,你需要输入确认文本,然后点击下方按钮。"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "值得一试"
msgid "X (Twitter)"
msgstr "X(推特)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "是的,Reactive Resume 支持多种语言。你可以在设置页面或右上角的语言切换器中选择你偏好的语言。如果没有找到你的语言,或者你想改进现有翻译,可以<0>在 Crowdin 上参与翻译<1>(在新标签页中打开)</1></0>。"
+47 -8
View File
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-07-07 15:03\n"
"PO-Revision-Date: 2026-07-08 16:53\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -758,6 +758,10 @@ msgstr "加泰隆尼亞語"
msgid "Center Align"
msgstr "置中對齊"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr "大腦"
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -854,6 +858,10 @@ msgstr "按這裡選擇要匯入的檔案"
msgid "Close AI assistant"
msgstr "近距離人工智慧助手"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr "凝聚"
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1282,6 +1290,10 @@ msgstr "減少縮排"
msgid "Decrease zoom"
msgstr "降低縮放比例"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr "深潛"
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr "學位"
@@ -1885,6 +1897,10 @@ msgstr "找出薄弱的要點,用更強有力的結果、數字、範圍和更
msgid "Finnish"
msgstr "芬蘭語"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr "煙火"
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr "適合觀看"
@@ -2072,6 +2088,10 @@ msgstr "希臘語"
msgid "Grid"
msgstr "網格"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr "格羅克"
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr "擴大團隊"
@@ -2271,6 +2291,10 @@ msgstr "正在匯入您的履歷…"
msgid "Importing…"
msgstr "正在導入…"
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr "包含履歷頁首"
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr "增加縮排"
@@ -2574,11 +2598,6 @@ msgstr "列表"
msgid "Lithuanian"
msgstr "立陶宛語"
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr "在 {0} 範本中即時預覽您的履歷"
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr "正在加載人工智慧提供者。請稍後再試。"
@@ -2698,6 +2717,10 @@ msgstr "Microsoft Word"
msgid "Missing working resume"
msgstr "缺少工作履歷"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr "米斯特拉爾人工智慧"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr "模型"
@@ -2871,8 +2894,8 @@ msgid "Odia"
msgstr "歐利亞語"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgstr "Ollama"
msgid "Ollama Cloud"
msgstr "奧拉瑪雲"
#: src/routes/_home/-sections/features.tsx
msgid "One-Click Sign-In"
@@ -3091,6 +3114,10 @@ msgstr "PDF"
msgid "Period"
msgstr "期間"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr "困惑"
#: src/libs/locale.ts
msgid "Persian"
msgstr "波斯語"
@@ -3838,6 +3865,10 @@ msgstr "顯示密碼"
msgid "Show picture"
msgstr "顯示圖片"
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr "在求職信上顯示相同的首頁頁首。"
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4407,6 +4438,10 @@ msgstr "標題"
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr "若要刪除帳戶,您必須先輸入確認文字,然後點擊下方按鈕。"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr "Together.ai"
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4861,6 +4896,10 @@ msgstr "值得一試"
msgid "X (Twitter)"
msgstr "X(推特)"
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr "xAI Grok"
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr "沒錯,Reactive Resume 支援多種語言。您可以在設定頁面或右上角的語言切換器中選擇偏好的語言。如果沒有找到您的語言,或是想改進現有翻譯,您可以<0>在 Crowdin 上貢獻翻譯<1>(在新分頁中開啟)</1></0>。"
+45 -6
View File
@@ -753,6 +753,10 @@ msgstr ""
msgid "Center Align"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cerebras"
msgstr ""
#: src/dialogs/resume/sections/custom.tsx
#: src/libs/resume/section-title.ts
#: src/libs/resume/section.tsx
@@ -849,6 +853,10 @@ msgstr ""
msgid "Close AI assistant"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Cohere"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/left/sections/custom.tsx
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-menu.tsx
msgid "Columns"
@@ -1277,6 +1285,10 @@ msgstr ""
msgid "Decrease zoom"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "DeepSeek"
msgstr ""
#: src/dialogs/resume/sections/education.tsx
msgid "Degree"
msgstr ""
@@ -1880,6 +1892,10 @@ msgstr ""
msgid "Finnish"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Fireworks"
msgstr ""
#: src/routes/builder/$resumeId/-components/dock.tsx
msgid "Fit to view"
msgstr ""
@@ -2067,6 +2083,10 @@ msgstr ""
msgid "Grid"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Groq"
msgstr ""
#: src/routes/_home/-sections/donate.tsx
msgid "Grow the Team"
msgstr ""
@@ -2266,6 +2286,10 @@ msgstr ""
msgid "Importing…"
msgstr ""
#: src/features/resume/export/download-dialog.tsx
msgid "Include resume header"
msgstr ""
#: src/components/input/rich-input.tsx
msgid "Increase indent"
msgstr ""
@@ -2569,11 +2593,6 @@ msgstr ""
msgid "Lithuanian"
msgstr ""
#. placeholder {0}: metadata.name
#: src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx
msgid "Live preview of your resume in the {0} template"
msgstr ""
#: src/dialogs/resume/import.tsx
msgid "Loading AI providers. Please try again in a moment."
msgstr ""
@@ -2693,6 +2712,10 @@ msgstr ""
msgid "Missing working resume"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Mistral AI"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Model"
msgstr ""
@@ -2866,7 +2889,7 @@ msgid "Odia"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Ollama"
msgid "Ollama Cloud"
msgstr ""
#: src/routes/_home/-sections/features.tsx
@@ -3086,6 +3109,10 @@ msgstr ""
msgid "Period"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Perplexity"
msgstr ""
#: src/libs/locale.ts
msgid "Persian"
msgstr ""
@@ -3833,6 +3860,10 @@ msgstr ""
msgid "Show picture"
msgstr ""
#: src/features/resume/export/download-dialog.tsx
msgid "Show the same first-page header on the cover letter."
msgstr ""
#. placeholder {0}: rows.length
#. placeholder {1}: applications.length
#: src/features/applications/components/table-view.tsx
@@ -4402,6 +4433,10 @@ msgstr ""
msgid "To delete your account, you need to enter the confirmation text and click the button below."
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "Together.ai"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/left/shared/section-base.tsx
#: src/routes/builder/$resumeId/-sidebar/right/shared/section-base.tsx
msgid "Toggle {sectionTitle} section"
@@ -4856,6 +4891,10 @@ msgstr ""
msgid "X (Twitter)"
msgstr ""
#: src/features/settings/integrations/components/ai-section.tsx
msgid "xAI Grok"
msgstr ""
#: src/routes/_home/-sections/faq.tsx
msgid "Yes, Reactive Resume is available in multiple languages. You can choose your preferred language in the settings page, or using the language switcher in the top right corner. If you don't see your language, or you would like to improve the existing translations, you can <0>contribute to the translations on Crowdin<1> (opens in new tab)</1></0>."
msgstr ""
+22 -22
View File
@@ -16,20 +16,20 @@
"lingui:extract": "lingui extract --clean --overwrite"
},
"dependencies": {
"@ai-sdk/react": "^4.0.16",
"@ai-sdk/react": "^4.0.19",
"@base-ui/react": "^1.6.0",
"@better-auth/api-key": "^1.6.23",
"@better-auth/infra": "^0.3.4",
"@better-auth/infra": "^0.3.5",
"@better-auth/oauth-provider": "^1.6.23",
"@better-auth/passkey": "^1.6.23",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lingui/core": "^6.4.0",
"@lingui/react": "^6.4.0",
"@orpc/client": "^1.14.6",
"@orpc/server": "^1.14.6",
"@orpc/tanstack-query": "^1.14.6",
"@lingui/core": "^6.5.0",
"@lingui/react": "^6.5.0",
"@orpc/client": "^1.14.7",
"@orpc/server": "^1.14.7",
"@orpc/tanstack-query": "^1.14.7",
"@phosphor-icons/react": "^2.1.10",
"@react-pdf/renderer": "^4.5.1",
"@reactive-resume/ai": "workspace:*",
@@ -48,17 +48,17 @@
"@tanstack/react-hotkeys": "^0.10.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-router": "^1.170.17",
"@tiptap/extension-color": "^3.27.1",
"@tiptap/extension-highlight": "^3.27.1",
"@tiptap/extension-text-align": "^3.27.1",
"@tiptap/extension-text-style": "^3.27.1",
"@tiptap/pm": "^3.27.1",
"@tiptap/react": "^3.27.1",
"@tiptap/starter-kit": "^3.27.1",
"@tiptap/extension-color": "^3.27.3",
"@tiptap/extension-highlight": "^3.27.3",
"@tiptap/extension-text-align": "^3.27.3",
"@tiptap/extension-text-style": "^3.27.3",
"@tiptap/pm": "^3.27.3",
"@tiptap/react": "^3.27.3",
"@tiptap/starter-kit": "^3.27.3",
"@types/js-cookie": "^3.0.6",
"@uiw/color-convert": "^2.10.3",
"@uiw/react-color-colorful": "^2.10.3",
"ai": "^7.0.15",
"ai": "^7.0.18",
"better-auth": "1.6.23",
"cmdk": "^1.1.1",
"drizzle-orm": "1.0.0-rc.4",
@@ -72,7 +72,7 @@
"qrcode.react": "^4.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-easy-crop": "^6.1.0",
"react-easy-crop": "^6.2.2",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.12.1",
"react-window": "^2.2.7",
@@ -86,10 +86,10 @@
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@lingui/babel-plugin-lingui-macro": "^6.4.0",
"@lingui/cli": "^6.4.0",
"@lingui/format-po": "^6.4.0",
"@lingui/vite-plugin": "^6.4.0",
"@lingui/babel-plugin-lingui-macro": "^6.5.0",
"@lingui/cli": "^6.5.0",
"@lingui/format-po": "^6.5.0",
"@lingui/vite-plugin": "^6.5.0",
"@reactive-resume/config": "workspace:*",
"@rolldown/plugin-babel": "^0.2.3",
"@tanstack/devtools-vite": "^0.8.1",
@@ -101,12 +101,12 @@
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260705.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitejs/plugin-react": "^6.0.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-react-compiler": "^1.0.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript": "^7.0.2",
"vite": "^8.1.3"
}
}
+16 -16
View File
@@ -5,25 +5,25 @@ import { cn } from "@reactive-resume/utils/style";
import { Combobox } from "@/components/ui/combobox";
import { FontDisplay } from "./font-display";
// Options depend only on the static font list, so compute them once per process
// instead of per component instance (the body + heading pickers rendered identical output twice).
const FONT_FAMILY_OPTIONS = fontList.map((font) => ({
value: font.family,
keywords: getFontSearchKeywords(font.family),
label: (
<FontDisplay
family={font.family}
label={getFontDisplayName(font.family)}
type={font.type}
url={"preview" in font ? font.preview : undefined}
/>
),
}));
type FontFamilyComboboxProps = Omit<SingleComboboxProps, "options">;
export function FontFamilyCombobox({ className, ...props }: FontFamilyComboboxProps) {
const options = useMemo(() => {
return fontList.map((font) => ({
value: font.family,
keywords: getFontSearchKeywords(font.family),
label: (
<FontDisplay
family={font.family}
label={getFontDisplayName(font.family)}
type={font.type}
url={"preview" in font ? font.preview : undefined}
/>
),
}));
}, []);
return <Combobox {...props} options={options} className={cn("w-full", className)} />;
return <Combobox {...props} options={FONT_FAMILY_OPTIONS} className={cn("w-full", className)} />;
}
type FontWeightComboboxProps = Omit<MultiComboboxProps, "options" | "multiple"> & { fontFamily: string };
@@ -1,7 +1,7 @@
import { t } from "@lingui/core/macro";
import { Trans } from "@lingui/react/macro";
import { useHotkeys } from "@tanstack/react-hotkeys";
import { useRef } from "react";
import { useEffect, useRef, useState } from "react";
import { Command, CommandEmpty, CommandInput, CommandList } from "@reactive-resume/ui/components/command";
import {
Dialog,
@@ -17,10 +17,13 @@ import { useCommandPaletteStore } from "./store";
export function CommandPalette() {
const inputRef = useRef<HTMLInputElement>(null);
const commandRef = useRef<HTMLDivElement>(null);
const [selectedValue, setSelectedValue] = useState<string>();
const { open, search, pages, setOpen, setSearch, goBack } = useCommandPaletteStore();
const isFirstPage = pages.length === 0;
const currentPage = pages[pages.length - 1];
const commandListPage = currentPage ?? "root";
// Toggle command palette with Cmd+K / Ctrl+K
useHotkeys([
@@ -67,6 +70,18 @@ export function CommandPalette() {
setSearch(value);
};
useEffect(() => {
if (!open) return;
const firstItem = commandRef.current?.querySelector<HTMLElement>(
`[data-command-page="${commandListPage}"] [cmdk-item]:not([aria-disabled="true"])`,
);
const value = firstItem?.getAttribute("data-value");
if (value) setSelectedValue(value);
inputRef.current?.focus();
}, [open, commandListPage]);
return (
<Dialog open={open} onOpenChange={handleOpenChange}>
<DialogHeader className="sr-only print:hidden">
@@ -97,7 +112,10 @@ export function CommandPalette() {
}
>
<Command
ref={commandRef}
loop
value={selectedValue}
onValueChange={setSelectedValue}
aria-label={t({
comment: "Accessible label for command list region inside command palette",
message: "Command Palette",
@@ -125,7 +143,7 @@ export function CommandPalette() {
})}
/>
<CommandList>
<CommandList key={commandListPage} data-command-page={commandListPage}>
<CommandEmpty>
<Trans comment="Empty-state message when no command palette results match the search query">
The command you're looking for doesn't exist.
@@ -1,6 +1,7 @@
// @vitest-environment happy-dom
import { fireEvent, render, screen } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import { afterEach, beforeAll, describe, expect, it, vi } from "vitest";
import { i18n } from "@lingui/core";
import { I18nProvider } from "@lingui/react";
@@ -21,6 +22,10 @@ vi.mock("@tanstack/react-query", () => ({
useQuery: vi.fn(),
}));
vi.mock("@tanstack/react-hotkeys", () => ({
useHotkeys: vi.fn(),
}));
vi.mock("@tanstack/react-router", () => ({
useNavigate: () => mocks.navigate,
useRouteContext: () => ({ session: { user: { id: "user-1" } } }),
@@ -36,6 +41,10 @@ vi.mock("@/features/applications/queries", () => ({
applicationsListQueryOptions: mocks.applicationsListQueryOptions,
}));
vi.mock("@/features/theme/provider", () => ({
useTheme: () => ({ setTheme: vi.fn(), theme: "light", toggleTheme: vi.fn() }),
}));
vi.mock("@/libs/orpc/client", () => ({
orpc: {
resume: {
@@ -53,6 +62,7 @@ vi.mock("@/libs/orpc/client", () => ({
},
}));
const { CommandPalette } = await import("../index");
const { ResumesCommandGroup } = await import("./resumes");
const { NavigationCommandGroup } = await import("./navigation");
@@ -83,8 +93,67 @@ const renderGroup = () =>
</I18nProvider>,
);
function TestCommandPalette() {
return (
<I18nProvider i18n={i18n}>
<CommandPalette />
</I18nProvider>
);
}
describe("ResumesCommandGroup", () => {
it("loads resumes with the default list input on the resumes page", () => {
it.each([
["resumes", "", "Create a new resume"],
["applications", "{ArrowDown}", "New Application"],
["threads", "{ArrowDown}{ArrowDown}", "New Thread"],
])("opens the %s list page from the root palette with Enter", async (page, keys, createLabel) => {
mockUseQueryData((entity) => {
if (entity === "resumes") return [{ id: "resume-1", name: "Evil Apricot Pike", slug: "apricot" }];
if (entity === "applications")
return [{ id: "application-1", company: "Umbrella", role: "Staff Engineer", archived: false }];
if (entity === "threads")
return [{ id: "thread-1", title: "Cover letter rewrite", resumeName: "Product Resume" }];
return [];
});
useCommandPaletteStore.setState({ open: true });
render(<TestCommandPalette />);
await userEvent.click(screen.getByRole("combobox"));
await userEvent.keyboard(`${keys}{Enter}`);
expect(useCommandPaletteStore.getState().pages).toEqual([page]);
expect(await screen.findByText(createLabel)).toBeInTheDocument();
expect(screen.queryByText("The command you're looking for doesn't exist.")).not.toBeInTheDocument();
});
it.each([
["resumes", "", "Create a new resume", "Evil Apricot Pike"],
["applications", "{ArrowDown}", "New Application", "Umbrella"],
["threads", "{ArrowDown}{ArrowDown}", "New Thread", "Cover letter rewrite"],
])("keeps arrow-key navigation active on the %s list page", async (_page, keys, createLabel, itemLabel) => {
mockUseQueryData((entity) => {
if (entity === "resumes") return [{ id: "resume-1", name: "Evil Apricot Pike", slug: "apricot" }];
if (entity === "applications")
return [{ id: "application-1", company: "Umbrella", role: "Staff Engineer", archived: false }];
if (entity === "threads")
return [{ id: "thread-1", title: "Cover letter rewrite", resumeName: "Product Resume" }];
return [];
});
useCommandPaletteStore.setState({ open: true });
render(<TestCommandPalette />);
await userEvent.click(screen.getByRole("combobox"));
await userEvent.keyboard(`${keys}{Enter}`);
const createItem = await screen.findByText(createLabel);
await userEvent.keyboard("{ArrowDown}");
expect((await screen.findByText(itemLabel)).closest("[cmdk-item]")).toHaveAttribute("aria-selected", "true");
await userEvent.keyboard("{ArrowUp}");
expect(createItem.closest("[cmdk-item]")).toHaveAttribute("aria-selected", "true");
});
it("does not show resume results beside the root categories on the resumes route", () => {
mocks.pathname = "/dashboard/resumes";
mockUseQueryData((entity) =>
entity === "resumes" ? [{ id: "resume-1", name: "Evil Apricot Pike", slug: "apricot" }] : [],
@@ -92,6 +161,19 @@ describe("ResumesCommandGroup", () => {
renderGroup();
expect(screen.getAllByText("Resumes")).toHaveLength(1);
expect(screen.queryByText("Create a new resume")).not.toBeInTheDocument();
expect(screen.queryByText("Evil Apricot Pike")).not.toBeInTheDocument();
});
it("loads resumes with the default list input after opening the resumes command page", () => {
useCommandPaletteStore.setState({ pages: ["resumes"] });
mockUseQueryData((entity) =>
entity === "resumes" ? [{ id: "resume-1", name: "Evil Apricot Pike", slug: "apricot" }] : [],
);
renderGroup();
expect(mocks.resumeQueryOptions).toHaveBeenCalledWith({
enabled: true,
input: { sort: "lastUpdatedAt", tags: [] },
@@ -100,8 +182,7 @@ describe("ResumesCommandGroup", () => {
});
it("filters resume results from the command palette search", () => {
mocks.pathname = "/dashboard/resumes";
useCommandPaletteStore.setState({ search: "apri" });
useCommandPaletteStore.setState({ pages: ["resumes"], search: "apri" });
mockUseQueryData((entity) =>
entity === "resumes"
? [
@@ -118,7 +199,7 @@ describe("ResumesCommandGroup", () => {
});
it("loads applications on the applications page", () => {
mocks.pathname = "/dashboard/applications";
useCommandPaletteStore.setState({ pages: ["applications"] });
mockUseQueryData((entity) =>
entity === "applications"
? [{ id: "application-1", company: "Umbrella", role: "Staff Engineer", archived: false }]
@@ -132,8 +213,7 @@ describe("ResumesCommandGroup", () => {
});
it("filters application results from the command palette search", () => {
mocks.pathname = "/dashboard/applications";
useCommandPaletteStore.setState({ search: "umbrella" });
useCommandPaletteStore.setState({ pages: ["applications"], search: "umbrella" });
mockUseQueryData((entity) =>
entity === "applications"
? [
@@ -150,7 +230,7 @@ describe("ResumesCommandGroup", () => {
});
it("opens the selected application by id", () => {
mocks.pathname = "/dashboard/applications";
useCommandPaletteStore.setState({ pages: ["applications"] });
mockUseQueryData((entity) =>
entity === "applications"
? [{ id: "application-1", company: "Umbrella", role: "Staff Engineer", archived: false }]
@@ -167,7 +247,7 @@ describe("ResumesCommandGroup", () => {
});
it("loads threads on agent pages", () => {
mocks.pathname = "/agent";
useCommandPaletteStore.setState({ pages: ["threads"] });
mockUseQueryData((entity) =>
entity === "threads" ? [{ id: "thread-1", title: "Cover letter rewrite", resumeName: "Product Resume" }] : [],
);
@@ -179,8 +259,7 @@ describe("ResumesCommandGroup", () => {
});
it("filters thread results from the command palette search", () => {
mocks.pathname = "/agent";
useCommandPaletteStore.setState({ search: "cover" });
useCommandPaletteStore.setState({ pages: ["threads"], search: "cover" });
mockUseQueryData((entity) =>
entity === "threads"
? [
@@ -3,7 +3,7 @@ import { t } from "@lingui/core/macro";
import { Trans } from "@lingui/react/macro";
import { BriefcaseIcon, ChatCircleDotsIcon, PlusIcon, ReadCvLogoIcon } from "@phosphor-icons/react";
import { useQuery } from "@tanstack/react-query";
import { useNavigate, useRouteContext, useRouterState } from "@tanstack/react-router";
import { useNavigate, useRouteContext } from "@tanstack/react-router";
import { CommandLoading } from "cmdk";
import { CommandItem, CommandShortcut } from "@reactive-resume/ui/components/command";
import { Kbd } from "@reactive-resume/ui/components/kbd";
@@ -20,12 +20,6 @@ type SearchPage = "resumes" | "applications" | "threads";
const isSearchPage = (page: string | undefined): page is SearchPage =>
page === "resumes" || page === "applications" || page === "threads";
const getRouteSearchPage = (pathname: string): SearchPage | undefined => {
if (pathname.startsWith("/dashboard/resumes")) return "resumes";
if (pathname.startsWith("/dashboard/applications")) return "applications";
if (pathname.startsWith("/agent")) return "threads";
};
const matchesSearch = (search: string, values: Array<string | null | undefined>) => {
const query = search.trim().toLowerCase();
return !query || values.some((value) => value?.toLowerCase().includes(query));
@@ -35,7 +29,6 @@ export function ResumesCommandGroup() {
const navigate = useNavigate();
const { openDialog } = useDialogStore();
const { session } = useRouteContext({ strict: false });
const pathname = useRouterState({ select: (state) => state.location.pathname });
const reset = useCommandPaletteStore((state) => state.reset);
const peekPage = useCommandPaletteStore((state) => state.peekPage);
const pushPage = useCommandPaletteStore((state) => state.pushPage);
@@ -43,7 +36,7 @@ export function ResumesCommandGroup() {
const commandPage = peekPage();
const commandSearchPage = isSearchPage(commandPage) ? commandPage : undefined;
const searchPage = commandSearchPage ?? (!commandPage ? getRouteSearchPage(pathname) : undefined);
const searchPage = commandSearchPage;
const { data: resumes, isLoading } = useQuery(
orpc.resume.list.queryOptions({
@@ -11,7 +11,7 @@ import {
FileTextIcon,
MarkdownLogoIcon,
} from "@phosphor-icons/react";
import { useState } from "react";
import { useId, useState } from "react";
import { Button } from "@reactive-resume/ui/components/button";
import {
Dialog,
@@ -21,6 +21,7 @@ import {
DialogTitle,
DialogTrigger,
} from "@reactive-resume/ui/components/dialog";
import { Switch } from "@reactive-resume/ui/components/switch";
import { Tabs, TabsList, TabsTrigger } from "@reactive-resume/ui/components/tabs";
import { cn } from "@reactive-resume/utils/style";
import { useResumeExport } from "./use-resume-export";
@@ -63,6 +64,8 @@ function FormatRow({ action, description, disabled, icon, title }: FormatRowProp
export function ResumeDownloadDialog({ resume, trigger }: ResumeDownloadDialogProps) {
const [open, setOpen] = useState(false);
const [scope, setScope] = useState<ResumeExportTarget>("resume");
const [includeCoverLetterHeader, setIncludeCoverLetterHeader] = useState(false);
const includeHeaderSwitchId = useId();
const { hasCoverLetter, isExporting, onDownloadDOCX, onDownloadJSON, onDownloadMarkdown, onDownloadPDF } =
useResumeExport(resume);
const disabled = !resume || isExporting;
@@ -102,6 +105,28 @@ export function ResumeDownloadDialog({ resume, trigger }: ResumeDownloadDialogPr
</TabsList>
</Tabs>
{activeScope === "cover-letter" && (
<label
htmlFor={includeHeaderSwitchId}
className="flex cursor-pointer items-center gap-3 rounded-lg border bg-background p-3"
>
<Switch
id={includeHeaderSwitchId}
checked={includeCoverLetterHeader}
onCheckedChange={setIncludeCoverLetterHeader}
/>
<span className="flex min-w-0 flex-1 flex-col gap-0.5">
<span className="font-medium text-sm">
<Trans>Include resume header</Trans>
</span>
<span className="text-muted-foreground text-xs leading-normal">
<Trans>Show the same first-page header on the cover letter.</Trans>
</span>
</span>
</label>
)}
<div className="grid gap-2">
<FormatRow
icon={
@@ -114,7 +139,7 @@ export function ResumeDownloadDialog({ resume, trigger }: ResumeDownloadDialogPr
size="sm"
aria-label="Download PDF"
disabled={isExporting}
onClick={() => run(() => onDownloadPDF(activeScope))}
onClick={() => run(() => onDownloadPDF(activeScope, { includeCoverLetterHeader }))}
>
<DownloadSimpleIcon />
<Trans>Download</Trans>
@@ -5,6 +5,10 @@ import { createResumePdfBlob as createPdfBlob } from "@reactive-resume/pdf/brows
import { ResumeDocument } from "@reactive-resume/pdf/document";
import { createSectionTitleResolverForLocale, useSectionTitleResolver } from "@/libs/resume/section-title-locale";
type ResumePdfRenderOptions = {
includeCoverLetterHeader?: boolean;
};
export const useLocalizedResumeDocument = (data?: ResumeData, template?: Template) => {
const sectionTitleResolver = useSectionTitleResolver(data?.metadata.page.locale);
@@ -21,12 +25,17 @@ export const useLocalizedResumeDocument = (data?: ResumeData, template?: Templat
}, [data, template, sectionTitleResolver]);
};
export const createResumePdfBlob = async (data: ResumeData, template?: Template) => {
export const createResumePdfBlob = async (
data: ResumeData,
template?: Template,
renderOptions?: ResumePdfRenderOptions,
) => {
const sectionTitleResolver = await createSectionTitleResolverForLocale(data.metadata.page.locale);
return createPdfBlob({
data,
template,
...(renderOptions ? { renderOptions } : {}),
resolveSectionTitle: sectionTitleResolver,
});
};
@@ -33,6 +33,10 @@ const getExportName = (resume: ExportableResume) => resume.name || resume.data.b
const getTargetExportName = (resume: ExportableResume, target: ResumeExportTarget) =>
target === "cover-letter" ? `${getExportName(resume)} Cover Letter` : getExportName(resume);
type DownloadPdfOptions = {
includeCoverLetterHeader?: boolean;
};
/**
* Single source of truth for resume export (PDF / DOCX / JSON / Print). Previously duplicated verbatim
* between the builder dock and the right-panel Export section (#17).
@@ -76,14 +80,18 @@ export function useResumeExport(resume: ExportableResume | undefined) {
);
const onDownloadPDF = useCallback(
async (target: ResumeExportTarget = "resume") => {
async (target: ResumeExportTarget = "resume", options?: DownloadPdfOptions) => {
if (!resume) return;
if (target === "cover-letter" && !resumeHasCoverLetter(resume.data)) return;
const toastId = toast.loading(t`Please wait while your PDF is being generated...`);
setIsExporting(true);
try {
const data = getResumeExportData(resume.data, target);
const blob = await createResumePdfBlob(data);
const blob = await createResumePdfBlob(
data,
undefined,
target === "cover-letter" ? { includeCoverLetterHeader: options?.includeCoverLetterHeader } : undefined,
);
downloadWithAnchor(blob, generateFilename(getTargetExportName(resume, target), "pdf"));
} catch {
toast.error(t`There was a problem while generating the PDF, please try again.`);
@@ -142,6 +142,27 @@ describe("AISettingsSection", () => {
mutations.delete.mockReset();
});
it("offers popular AI SDK providers and labels Ollama as cloud-hosted", () => {
renderSection();
for (const label of [
"Mistral AI",
"Cohere",
"xAI Grok",
"Groq",
"DeepSeek",
"Together.ai",
"Fireworks",
"Cerebras",
"Perplexity",
"Ollama Cloud",
]) {
expect(screen.getByRole("option", { name: label })).toBeInTheDocument();
}
expect(screen.queryByRole("option", { name: "Ollama" })).not.toBeInTheDocument();
});
it("uses the save-and-test result as the connected provider row", async () => {
const created = provider({});
const tested = provider({ enabled: true, testStatus: "success", lastTestedAt: new Date("2026-07-04T01:00:00Z") });
@@ -64,10 +64,73 @@ const providerOptions: AIProviderOption[] = [
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.openrouter,
defaultModel: "openai/gpt-4.1",
},
{
value: "mistral",
label: t`Mistral AI`,
keywords: ["mistral", "magistral"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.mistral,
defaultModel: "mistral-large-latest",
},
{
value: "cohere",
label: t`Cohere`,
keywords: ["cohere", "command"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.cohere,
defaultModel: "command-a-03-2025",
},
{
value: "xai",
label: t`xAI Grok`,
keywords: ["xai", "grok"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.xai,
defaultModel: "grok-4",
},
{
value: "groq",
label: t`Groq`,
keywords: ["groq", "llama"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.groq,
defaultModel: "llama-3.3-70b-versatile",
},
{
value: "deepseek",
label: t`DeepSeek`,
keywords: ["deepseek"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.deepseek,
defaultModel: "deepseek-chat",
},
{
value: "togetherai",
label: t`Together.ai`,
keywords: ["together", "togetherai", "llama"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.togetherai,
defaultModel: "meta-llama/Meta-Llama-3.3-70B-Instruct-Turbo",
},
{
value: "fireworks",
label: t`Fireworks`,
keywords: ["fireworks", "llama", "deepseek"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.fireworks,
defaultModel: "accounts/fireworks/models/llama-v3p3-70b-instruct",
},
{
value: "cerebras",
label: t`Cerebras`,
keywords: ["cerebras", "llama"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.cerebras,
defaultModel: "llama3.3-70b",
},
{
value: "perplexity",
label: t`Perplexity`,
keywords: ["perplexity", "sonar"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.perplexity,
defaultModel: "sonar-pro",
},
{
value: "ollama",
label: t`Ollama`,
keywords: ["ollama", "local"],
label: t`Ollama Cloud`,
keywords: ["ollama", "cloud"],
defaultBaseURL: AI_PROVIDER_DEFAULT_BASE_URLS.ollama,
defaultModel: "llama3.1",
},
@@ -92,7 +92,8 @@ describe("updateSectionItem", () => {
});
const customSection = result.customSections.find((s) => s.id === "custom-1");
expect((customSection?.items[0] as { value?: string }).value).toBe("new");
if (!customSection) throw new Error("Custom section not found");
expect((customSection.items[0] as { value?: string }).value).toBe("new");
});
it("does nothing when custom section is not found", () => {
@@ -0,0 +1,13 @@
import { readFileSync } from "node:fs";
import { describe, expect, it } from "vitest";
const source = readFileSync("src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx", "utf8");
describe("layout page header", () => {
it("uses container queries to prevent narrow sidebar control collisions", () => {
expect(source).toContain("@container bg-secondary/50");
expect(source).toContain("grid-cols-[minmax(0,1fr)_auto]");
expect(source).toContain("@max-[22rem]:grid-cols-1");
expect(source).toContain("flex min-w-0 flex-wrap");
});
});
@@ -297,31 +297,37 @@ function PageContainer({
return (
<div className="space-y-3 rounded-md border border-dashed bg-background/40">
<div className="flex items-center justify-between bg-secondary/50 px-4 py-3">
<div className="flex w-full items-center gap-4">
<span className="font-medium text-xs">
<Trans comment="Layout editor page label with 1-based page number">Page {pageIndex + 1}</Trans>
</span>
<label htmlFor={fullWidthSwitchId} className="flex cursor-pointer items-center gap-2">
<Switch
id={fullWidthSwitchId}
checked={page.fullWidth}
onCheckedChange={(checked) => onToggleFullWidth(pageIndex, checked)}
/>
<span className="font-medium text-muted-foreground text-xs">
<Trans comment="Layout editor toggle label that makes a page single-column">Full Width</Trans>
<div className="@container bg-secondary/50 px-4 py-3">
<div className="grid @max-[22rem]:grid-cols-1 grid-cols-[minmax(0,1fr)_auto] items-center gap-x-3 gap-y-2">
<div className="flex min-w-0 flex-wrap items-center gap-x-4 gap-y-2">
<span className="font-medium text-xs">
<Trans comment="Layout editor page label with 1-based page number">Page {pageIndex + 1}</Trans>
</span>
</label>
</div>
{canDelete && (
<Button variant="ghost" onClick={() => onDelete(pageIndex)} className="h-5 w-auto gap-x-2.5 px-0!">
<TrashIcon />
<Trans>Delete Page</Trans>
</Button>
)}
<label htmlFor={fullWidthSwitchId} className="flex min-w-0 cursor-pointer items-center gap-2">
<Switch
id={fullWidthSwitchId}
checked={page.fullWidth}
onCheckedChange={(checked) => onToggleFullWidth(pageIndex, checked)}
/>
<span className="font-medium text-muted-foreground text-xs">
<Trans comment="Layout editor toggle label that makes a page single-column">Full Width</Trans>
</span>
</label>
</div>
{canDelete && (
<Button
variant="ghost"
onClick={() => onDelete(pageIndex)}
className="size-auto gap-x-2.5 justify-self-end p-0!"
>
<TrashIcon />
<Trans>Delete Page</Trans>
</Button>
)}
</div>
</div>
<div
@@ -1,5 +1,6 @@
// @vitest-environment happy-dom
import { readFileSync } from "node:fs";
import { fireEvent, render, screen } from "@testing-library/react";
import { afterEach, beforeAll, describe, expect, it, vi } from "vitest";
import { i18n } from "@lingui/core";
@@ -64,4 +65,11 @@ describe("TemplateSectionBuilder", () => {
const img = screen.getByAltText("Ditto") as HTMLImageElement;
expect(img.src).toContain("/templates/jpg/ditto.jpg");
});
it("keeps the template preview inline instead of mounting a hover card", () => {
const source = readFileSync("src/routes/builder/$resumeId/-sidebar/right/sections/template.tsx", "utf8");
expect(source).not.toContain("@reactive-resume/ui/components/hover-card");
expect(source).not.toContain("HoverCardContent");
});
});
@@ -1,23 +1,12 @@
import { t } from "@lingui/core/macro";
import { useLingui } from "@lingui/react";
import { SwapIcon } from "@phosphor-icons/react";
import { lazy, Suspense } from "react";
import { Badge } from "@reactive-resume/ui/components/badge";
import { Button } from "@reactive-resume/ui/components/button";
import { HoverCard, HoverCardContent, HoverCardTrigger } from "@reactive-resume/ui/components/hover-card";
import { templates } from "@/dialogs/resume/template/data";
import { useDialogStore } from "@/dialogs/store";
import { useCurrentResume } from "@/features/resume/builder/draft";
import { SectionBase } from "../shared/section-base";
// Lazy so the browser PDF pipeline (pdf.js) loads only when a preview card actually opens, keeping it out
// of the SSR/module graph — mirrors the `ResumePreview` entry convention.
const TemplateLivePreview = lazy(() =>
import("@/features/resume/preview/template-live-preview").then((module) => ({
default: module.TemplateLivePreview,
})),
);
export function TemplateSectionBuilder() {
return (
<SectionBase type="template">
@@ -40,43 +29,19 @@ function TemplateSectionForm() {
return (
<div className="flex @md:flex-row flex-col items-stretch gap-x-4 gap-y-2">
<HoverCard>
<HoverCardTrigger
delay={300}
render={
<Button
variant="ghost"
onClick={onOpenTemplateGallery}
className="group/preview relative h-auto w-40 shrink-0 cursor-pointer p-0"
>
<div className="relative z-10 aspect-page size-full overflow-hidden rounded-md opacity-100 transition-opacity group-hover/preview:opacity-50">
<img src={metadata.imageUrl} alt={metadata.name} className="size-full object-cover" />
</div>
<Button
variant="ghost"
onClick={onOpenTemplateGallery}
className="group/preview relative h-auto w-40 shrink-0 cursor-pointer p-0"
>
<div className="relative z-10 aspect-page size-full overflow-hidden rounded-md opacity-100 transition-opacity group-hover/preview:opacity-50">
<img src={metadata.imageUrl} alt={metadata.name} className="size-full object-cover" />
</div>
<div className="absolute inset-0 flex items-center justify-center">
<SwapIcon size={48} weight="thin" className="size-12" />
</div>
</Button>
}
/>
<HoverCardContent side="right" align="start" className="w-64 p-1.5">
<Suspense
fallback={
<div className="aspect-page w-full overflow-hidden rounded-md bg-white">
<img src={metadata.imageUrl} alt={metadata.name} className="size-full object-contain" />
</div>
}
>
<TemplateLivePreview
data={resume.data}
template={template}
fallbackSrc={metadata.imageUrl}
alt={t`Live preview of your resume in the ${metadata.name} template`}
/>
</Suspense>
</HoverCardContent>
</HoverCard>
<div className="absolute inset-0 flex items-center justify-center">
<SwapIcon size={48} weight="thin" className="size-12" />
</div>
</Button>
<div className="flex flex-1 flex-col gap-y-4 @md:pt-1 @md:pb-3">
<div className="space-y-1">
@@ -1,5 +0,0 @@
# Structured Style Rules for React PDF
Reactive Resume no longer renders final PDFs through browser HTML/CSS, so end-user custom CSS would create a misleading contract: React PDF accepts style objects on renderer components, not arbitrary browser selectors. Resume appearance customization is therefore modeled as structured Style Rules in resume metadata, targeting semantic section and rich-text slots that the PDF package translates into safe React PDF styles.
This preserves user-controlled section styling while keeping PDF rendering portable across preview, export, public resume views, templates, and server generation. Raw CSS, raw React PDF style objects, section-item targeting, and direct PDF-preview selection are intentionally out of v1; they can be revisited only if the product needs that power enough to accept the additional validation and layout-breakage risk.
+37
View File
@@ -4,6 +4,43 @@ description: "Release notes for Reactive Resume covering new features, resume bu
rss: true
---
<Update label="v5.2.3" description="8th July 2026">
## Highlights
- **More AI provider choices.** The AI settings page now supports Mistral AI, Cohere, xAI Grok, Groq, DeepSeek, Together.ai, Fireworks, Cerebras, and Perplexity, with provider defaults filled in for each. Ollama is now labeled as Ollama Cloud to make the hosted integration clearer.
- **Cleaner cover-letter exports.** Cover-letter PDF, DOCX, and Markdown downloads now export the letter without resume header chrome by default, and PDF downloads include a new toggle for adding the resume header back when needed. [8570c1c70](https://github.com/amruthpillai/reactive-resume/commit/8570c1c70)
- **More accurate public resume statistics.** Rapid repeat views from the same client are now de-duplicated before incrementing public resume view counts. [97ab3c973](https://github.com/amruthpillai/reactive-resume/commit/97ab3c973)
## AI & Integrations
- Added first-class AI SDK support for Mistral AI, Cohere, xAI, Groq, DeepSeek, Together.ai, Fireworks, Cerebras, and Perplexity across saved provider settings and AI service calls.
- Made AI provider connection tests work with OpenAI-compatible models that do not support structured output, with a clearer error when a model returns too much text during the test.
- Published Reactive Resume MCP registry metadata so MCP clients and directories can discover the hosted remote server. [73daf22b2](https://github.com/amruthpillai/reactive-resume/commit/73daf22b2)
## Resume Builder & Exports
- Fixed cover-letter-only exports across PDF, DOCX, and Markdown so they no longer include resume contact details or a redundant cover-letter heading. [8570c1c70](https://github.com/amruthpillai/reactive-resume/commit/8570c1c70)
- Added an **Include resume header** option for cover-letter PDF downloads.
- Improved the layout page header so the **Full Width** and **Delete Page** controls fit better in narrow builder sidebars.
- Simplified the current-template card by removing its hover live preview; template switching still opens the full template gallery.
## Reliability & Self-Hosting
- Added report-only CSP, frame blocking, `nosniff`, and stricter referrer headers to web app shell responses, and tightened public upload headers to rely on same-site resource policy instead of an unconditional CORS header. [9bde7d544](https://github.com/amruthpillai/reactive-resume/commit/9bde7d544)
- Limited application bulk update and delete requests to 200 selected items per operation to avoid oversized bulk actions. [c9b3fa5c1](https://github.com/amruthpillai/reactive-resume/commit/c9b3fa5c1)
- Resume lock and password mutations now return `NOT_FOUND` when the resume is missing instead of silently succeeding. [e47cf6e77](https://github.com/amruthpillai/reactive-resume/commit/e47cf6e77)
- Reduced repeated work in the font picker by computing the font family options once per app process. [7e0657946](https://github.com/amruthpillai/reactive-resume/commit/7e0657946)
- Refreshed workspace dependencies, including AI SDK provider packages, Lingui, oRPC, Hono, Tiptap, and test tooling.
## Documentation & Localization
- Tightened SEO titles and descriptions across the documentation site. [5270a2a9a](https://github.com/amruthpillai/reactive-resume/commit/5270a2a9a)
- Corrected the README feature list to describe structured Style Rules instead of custom CSS. [66078609a](https://github.com/amruthpillai/reactive-resume/commit/66078609a)
- Synced Crowdin translation catalogs and added locale strings for the new AI providers and cover-letter export option. [b87a9d828](https://github.com/amruthpillai/reactive-resume/commit/b87a9d828), [25021507a](https://github.com/amruthpillai/reactive-resume/commit/25021507a)
**Full Changelog**: [v5.2.2...v5.2.3](https://github.com/amruthpillai/reactive-resume/compare/v5.2.2...v5.2.3)
</Update>
<Update label="v5.2.2" description="7th July 2026">
## Highlights
@@ -1,241 +0,0 @@
# Monorepo Architecture Reorg Handoff
This handoff is the coordination entrypoint for the Reactive Resume architecture reorganization. It intentionally references the implementation plan instead of duplicating it.
## Primary Plan
- Plan: `docs/superpowers/plans/2026-05-14-monorepo-architecture-reorg.md`
- Worklog: `docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md`
- Branch at start: `feat/explore-hono-orpc-migration`
## Current Operating Rules
- Preserve existing unrelated local changes:
- `apps/server/package.json`
- `package.json`
- `packages/api/package.json`
- `packages/env/package.json`
- `packages/utils/package.json`
- `pnpm-lock.yaml`
- Do not use `git reset --hard` or destructive checkout commands.
- Use green internal commits if committing is requested/appropriate.
- Use root `AGENTS.md` as the final normative architecture source of truth.
- Do not create local package READMEs for architecture rules unless a package has unavoidable operational constraints.
## Suggested Skills for Future Agents
- `subagent-driven-development` for executing one task slice with review gates.
- `executing-plans` for sequential execution from the plan.
- `documentation-writer` for `AGENTS.md`, ADR, and public architecture docs.
- `handoff` when pausing or delegating a task outside Codex.
- `turborepo` when editing `turbo.json`, package tags, or task graph rules.
- `context7-mcp` if checking current docs for library/framework behavior.
## Delegation Guidance
External agents should be handed exactly one task from the plan plus this handoff path. They should report:
- Status: `DONE`, `DONE_WITH_CONCERNS`, `BLOCKED`, or `NEEDS_CONTEXT`
- Files changed
- Tests/commands run
- Any plan deviations
- Follow-up tasks needed
## Task Ownership Status
- Task 0 Coordination Artifacts: done
- Task 1 Pure Resume Domain Package: done
- Task 2 DOCX Package: done
- Task 3 PDF Package Browser/Server Generation Surface: done
- Task 4 MCP Package and Shared Tool Contracts: done
- Task 5 API Feature Reorganization: done
- Task 6 Server Adapter Reorganization: done
- Task 7 Domain-First Web Reorganization: done
- Task 8 Dialog Registry Rework: done
- Task 9 Boundary Enforcement: done
- Task 10 Documentation and Source of Truth: done
- Task 11 Final Validation and Handoff: done
## Architecture Decisions Already Locked
- `@reactive-resume/schema` is Zod/types only.
- `@reactive-resume/resume` owns pure resume-domain behavior.
- `@reactive-resume/ai` owns model contracts, not DB-backed agent runtime.
- Agent runtime remains in `packages/api/features/agent`.
- MCP uses an in-process oRPC `RouterClient`.
- MCP tools move to canonical unprefixed snake_case names, no old aliases.
- `@reactive-resume/pdf` owns PDF generation helpers but not PDF.js viewer UI.
- `apps/web` uses domain-first features and generic-only `src/components`.
- `packages/db` remains centralized.
## Latest Task 1 Result
- Created `@reactive-resume/resume` with source-consumed exports:
- `@reactive-resume/resume/patch`
- `@reactive-resume/resume/icons`
- Moved JSON Patch behavior/tests and social network icon mapping/tests out of `@reactive-resume/utils`.
- Updated consumers in `packages/ai`, `packages/api`, `packages/db`, `packages/import`, and `apps/web`.
- Removed old utils exports for `./resume/patch` and `./network-icons`.
- Removed `fast-json-patch` from `@reactive-resume/utils` and `@reactive-resume/ai`; it now belongs to `@reactive-resume/resume`.
- Task 2 later removed `@reactive-resume/schema` from `@reactive-resume/utils` after moving DOCX code into `@reactive-resume/docx`.
## Latest Task 2 Result
- Created `@reactive-resume/docx` with source-consumed root export `@reactive-resume/docx`.
- Moved the DOCX builder, HTML conversion, link utilities, section renderers, and colocated tests from `packages/utils/src/resume/docx` to `packages/docx/src`.
- Updated web DOCX export callers and the export-section test mock to import from `@reactive-resume/docx`.
- Removed the old `@reactive-resume/utils/resume/docx` export and removed `docx` plus `@reactive-resume/schema` from `@reactive-resume/utils`.
- Validation passed for `@reactive-resume/docx` tests/typecheck, `@reactive-resume/utils` typecheck, `web` typecheck, focused web export test command, and focused Biome check.
## Latest Task 3 Notes
- Added `@reactive-resume/pdf/browser` and `@reactive-resume/pdf/server` exports.
- `createResumePdfBlob({ data, template, resolveSectionTitle })` delegates to `pdf(<ResumeDocument ... />).toBlob()`.
- `createResumePdfFile({ data, filename, template, resolveSectionTitle })` delegates to `renderToBuffer(<ResumeDocument ... />)` and preserves the existing `File` response body shape.
- Lingui locale loading stays in the web-local wrappers under `apps/web/src/features/resume/export`; those wrappers resolve section titles and pass `resolveSectionTitle` into the package helpers.
- The PDF.js viewer/canvas components remain in web. `apps/web/src/features/resume/preview/preview.browser.tsx` now calls the web-local blob wrapper instead of importing `@react-pdf/renderer` directly.
- The authenticated PDF export path now reaches `@reactive-resume/pdf/server` through `packages/api/src/features/resume/export.ts`; `apps/server` consumes the explicit API feature export instead of owning PDF rendering logic directly.
- Validation passed for `@reactive-resume/pdf` tests/typecheck, `web` typecheck, `server` typecheck, focused web PDF export/viewer tests, and focused Biome check.
## Latest Task 4 Notes
- Created `@reactive-resume/mcp` with source-consumed exports for the compact public surface plus direct subpaths for server card, tool names, tools, prompts, and resources.
- Moved MCP tools, prompts, resources, server-card generation, tool annotations, and colocated tests from `apps/web/src/routes/mcp/-helpers` to `packages/mcp/src`.
- `apps/server/src/mcp/handler.ts` and `apps/server/src/openapi/metadata.ts` now import from `@reactive-resume/mcp`; server-side MCP execution still uses the injected in-process oRPC `RouterClient`.
- Canonical MCP tool names are unprefixed snake_case. Key renames: `read_resume` replaces the old get-resume tool name, and `apply_resume_patch` replaces the old patch tool name. No `reactive_resume_*` aliases remain.
- Added `@reactive-resume/ai/tools/resume-tool-contracts` and reused its JSON Patch operations schema from MCP while keeping MCP-specific `id` context in the MCP input schema.
- Validation passed for `@reactive-resume/mcp` tests/typecheck, `server` typecheck, `@reactive-resume/ai` typecheck, focused Biome check, and the app-to-app import scan.
## Latest Task 5 Notes
- `packages/api/src` is now organized by feature/capability under `packages/api/src/features`.
- The root router still exports the same top-level API contract from `packages/api/src/routers/index.ts`, but it imports feature routers from `features/*/router`.
- Agent modules now live under `features/agent`, with separate procedure modules for threads, messages, attachments, and actions; run-state lives in `runs.ts`, tool construction in `tools.ts`, and the remaining shared orchestration stays in `service.ts`.
- Resume modules now live under `features/resume`, with capability procedure modules for CRUD, tags, statistics, analysis, events, sharing, and export. Access helpers and resume update events are feature-owned.
- The authenticated PDF download procedure moved to `packages/api/src/features/resume/export.ts` and calls `@reactive-resume/pdf/server`.
- `@reactive-resume/api` no longer exports `./services/*` or `./helpers/*`; explicit exports now cover routers, context, flags type, resume runtime/export, and storage runtime.
- `apps/server` imports storage and the PDF procedure from explicit API feature exports. `apps/web` API imports remain type-only.
- Follow-up risk: `features/agent/service.ts` and `features/resume/service.ts` are still large DB-backed facades. They are feature-owned now, but further splitting should be handled as behavior-preserving follow-up work with targeted tests around run lifecycle, patch transactions, notifications, and storage cleanup.
- Validation passed for API tests/typecheck, server typecheck, web typecheck, MCP typecheck, focused Biome, and old service/helper import/export scans.
## Latest Task 6 Notes
- `apps/server/src` now reads as a runtime adapter app:
- `http`: route composition, auth/health HTTP handlers, common header/cookie helpers
- `rpc`: oRPC fetch handler and request-locale extraction
- `mcp`: MCP auth, per-request server setup, and streamable HTTP transport handler
- `openapi`: OpenAPI handler plus OAuth/OpenID/MCP well-known metadata
- `static`: upload serving, `/schema.json`, and `apps/web/dist` static/SPA fallback serving
- `startup`: database migrations and local-storage path checks
- `apps/server/src/index.ts` now only re-exports `createApp`, runs startup checks, computes the port, and starts the Hono server.
- The route order and public paths from the previous `index.ts` were preserved, including `/api/rpc`, `/api/openapi`, `/api/auth/*`, `/api/health`, `/uploads/*`, `/schema.json`, `/auth/oauth`, `/mcp`, `/.well-known/*`, and the web-dist fallback.
- Server-side API imports remain on explicit runtime exports only; no `@reactive-resume/api/services/*` or `apps/web/src` imports were introduced.
- Validation passed for server test/typecheck during implementation. Final Task 6 validation commands should still be listed in the worklog/final response after the executing agent's last run.
## Latest Task 7 Slice 1 Notes
- Resume-owned web code now starts under `apps/web/src/features/resume`:
- `builder/draft.ts` owns the builder resume draft store/hooks.
- `preview/*` owns the builder preview shell, PDF.js canvas renderer, shared preview helpers/tests, and dashboard thumbnail PDF rendering helpers.
- `export/pdf-document*.tsx` owns web-local PDF document/blob/file wrappers around `@reactive-resume/pdf`.
- `public/*` owns the public resume view, public PDF.js viewer, CSS, and tests.
- The old generic resume component folder and public-route private component folder were removed after their files moved.
- Direct `pdfjs-dist` imports are expected only under `apps/web/src/features/resume`; do not move them into `packages/pdf`.
- The public resume route remains responsible for loader/error/head composition, keeps `ssr: "data-only"`, and lazy-loads `@/features/resume/public/public-resume`.
- The builder preview route keeps `ssr: false` and lazy-loads the preview page composition.
- Remaining Task 7 work should continue moving non-resume web domains out of generic `components`/routes. Task 8 still owns dialog registry decomposition beyond import updates caused by the draft-store move.
## Latest Task 7 Slice 2 Notes
- App-shell code now starts under feature folders:
- `apps/web/src/features/command-palette` owns the command palette implementation and tests.
- `apps/web/src/features/theme` owns the theme provider, combobox, toggle button, and tests.
- `apps/web/src/features/locale` owns the locale combobox and tests.
- `apps/web/src/features/user` owns the user dropdown.
- Auth route UI now lives under `apps/web/src/features/auth`; route files under `apps/web/src/routes/auth` keep redirects/search validation and compose the feature pages.
- Settings page UI now lives under `apps/web/src/features/settings`; route files under `apps/web/src/routes/dashboard/settings` keep dashboard header composition and redirects. `job-search.tsx` remains route-only because it is already just a redirect shim.
- The old `@/components/{command-palette,theme,locale,user}` import paths should not be reintroduced; current consumers import from `@/features/*`.
- `apps/web/src/components` now contains remaining generic primitive/screen folders only.
- Task 8 still owns dialog registry decomposition; this slice did not decompose dialog definitions.
## Latest Task 8 Notes
- `apps/web/src/dialogs/store.ts` remains the single global dialog runtime and still exports `useDialogStore` plus `DialogProps<T>` for existing callers.
- Dialog schemas now compose through `apps/web/src/dialogs/schemas.ts` from domain-owned schema entries in `dialogs/auth/schema.ts`, `dialogs/api-key/schema.ts`, and `dialogs/resume/schema.ts`.
- Dialog rendering now composes through `apps/web/src/dialogs/renderers.tsx` from domain-owned renderer registries in `dialogs/auth/registry.tsx`, `dialogs/api-key/registry.tsx`, and `dialogs/resume/registry.tsx`.
- `apps/web/src/dialogs/manager.tsx` only imports the dialog shell, `renderDialog`, and the global store; it no longer imports every dialog implementation directly.
- No settings/auth-specific dialog tests existed beyond the shared dialog store and resume template tests.
## Latest Task 9 Notes
- `turbo.json` now has executable `boundaries` config:
- Global dependencies deny `web` and `server`, preventing package-to-app and app-to-app dependency edges.
- Root test tools are explicit `implicitDependencies`: `vitest`, `@testing-library/jest-dom`, `@testing-library/react`, and `@testing-library/user-event`.
- Tag rules cover app, server, browser, universal, domain, and UI layers.
- Workspace `turbo.json` files now exist for both apps and every package. Each extends root config with `extends: ["//"]` and declares tags used by the root boundaries.
- Every workspace `vitest.config.ts` keeps its legitimate root shared config import with `// @boundaries-ignore root shared Vitest config` immediately above `import { createVitestProjectConfig } from "../../vitest.shared";`.
- `biome.json` now enables `style.noRestrictedImports` for forbidden cross-workspace source/path imports:
- `@reactive-resume/*/src/**`
- `apps/**`
- `packages/**`
- `biome.json` also registers `tooling/grit/no-cross-workspace-src-imports.grit`, which flags import/export/dynamic import sources that reach into another workspace's `src` tree.
- `apps/web/tsconfig.json` no longer maps `@reactive-resume/ui/*` directly to `../../packages/ui/src/*`; the web app uses `@reactive-resume/ui` package exports instead.
- Files changed by Task 9:
- `turbo.json`
- `apps/*/turbo.json`
- `packages/*/turbo.json`
- `biome.json`
- `tooling/grit/no-cross-workspace-src-imports.grit`
- `apps/web/tsconfig.json`
- `apps/server/vitest.config.ts`
- `apps/web/vitest.config.ts`
- `packages/*/vitest.config.ts`
- `docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md`
- `docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md`
- Validation passed:
- `pnpm exec turbo boundaries`
- `pnpm exec biome check biome.json turbo.json tooling/grit/no-cross-workspace-src-imports.grit apps/web/tsconfig.json apps/server/turbo.json apps/web/turbo.json packages/*/turbo.json`
- `pnpm --filter web typecheck`
- `pnpm --filter @reactive-resume/api typecheck`
- `pnpm --filter server typecheck`
- Remaining risks:
- The Turbo tag set is intentionally coarse and may need finer per-package rules as future browser/server package classes settle.
- The GritQL plugin only inspects code import/export sources; keep the package export-map and tsconfig scans in the final validation list.
- The root shared Vitest config remains an intentional boundary ignore; moving it behind a package export would be a separate test-infra cleanup.
## Latest Task 10 Notes
- `AGENTS.md` is now the operational source of truth for package roles, runtime tags, import rules, placement decisions, and validation commands.
- `docs/contributing/architecture.mdx` is now a public contributor overview of the current monorepo layout instead of the removed single-`src` architecture.
- `docs/adr/0001-workspace-boundaries.md` records the rationale for domain-first packages, explicit export maps, `turbo boundaries`, and Biome/Grit import enforcement.
- MCP user docs already list canonical unprefixed tool names from Task 4. AI Agent tool docs already list `read_resume` and `apply_resume_patch`; no Task 10 changes were needed there.
- Follow-up documentation audit on 2026-05-15 reconciled AGENTS and public docs with the final `apps/server` Hono adapter shape, current Node/pnpm prerequisites, Base UI wording, provider-native web research behavior, and the current env schema.
- Docs validation available in-repo is limited:
- Stale-text scan passed except expected `ORPCClient` diagram labels.
- Biome ignored Markdown/MDX and reported that no files were processed for the docs paths.
- No dedicated docs build/check script exists in `package.json`.
## Latest Task 11 Notes
- Final cleanup after `pnpm knip`:
- Removed stale app dependencies from `apps/server/package.json` and `apps/web/package.json`.
- Deleted the unused web server PDF wrapper at `apps/web/src/features/resume/export/pdf-document.server.tsx`.
- Removed unnecessary exported markers from internal helper functions/constants.
- Added `pdfExportRateLimit` to `packages/api/src/features/resume/export.ts`.
- Removed unused jobs rate-limit middleware entries that no current router uses.
- Final validation commands passed:
- `pnpm install --lockfile-only`
- `pnpm install`
- `pnpm exec biome check .`
- `pnpm exec turbo boundaries`
- `pnpm knip`
- `pnpm typecheck`
- `pnpm test`
- `pnpm build`
- `pnpm knip` still prints a non-failing configuration hint: `src/server.ts apps/web knip.json Refine entry pattern (no matches)`.
- Useful review anchors:
- Architecture rules: `AGENTS.md`, `docs/contributing/architecture.mdx`, `docs/adr/0001-workspace-boundaries.md`.
- Boundary enforcement: `turbo.json`, workspace `turbo.json` files, `biome.json`, `tooling/grit/no-cross-workspace-src-imports.grit`.
- API feature tree: `packages/api/src/features`.
- Server adapter tree: `apps/server/src/{http,rpc,mcp,openapi,static,startup}`.
- Web feature tree: `apps/web/src/features`.
File diff suppressed because it is too large Load Diff
@@ -1,277 +0,0 @@
# Monorepo Architecture Reorganization Implementation Plan
> **For agentic workers:** REQUIRED SUB-SKILL: Use `subagent-driven-development` or `executing-plans` to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
> **Status note:** This implementation plan has been executed and may contain historical intermediate paths. Use `AGENTS.md`, `docs/contributing/architecture.mdx`, `docs/adr/0001-workspace-boundaries.md`, and `docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md` for current architecture guidance.
**Goal:** Reorganize Reactive Resume into clear domain/package boundaries so server, web, API, MCP, PDF, resume-domain logic, and documentation are easier to debug and enforce.
**Architecture:** This is one PR with green internal commits. Packages expose role-based explicit public surfaces, web routes become thin shells over domain features, API code is colocated by feature/capability, and boundary rules prevent app-to-app source imports and private package source imports.
**Tech Stack:** pnpm 11, Turborepo 2, TypeScript/tsgo, Vite, React 19, TanStack Router, oRPC, Drizzle, React PDF, PDF.js, MCP SDK, Biome/GritQL, Vitest.
---
## Non-Negotiable Decisions
- Root `AGENTS.md` is the single normative architecture source of truth.
- `docs/adr/0001-workspace-boundaries.md` records rationale only; it must not duplicate the full operational rule set.
- `docs/contributing/architecture.mdx` is a descriptive overview, not a second source of truth.
- Keep one PR and green internal commits; no compatibility wrappers or old import-path shims.
- Preserve existing unrelated user changes in manifests and lockfile. Do not reset or revert them.
- Keep `apps/server` and `apps/web` split. `apps/server` may serve `apps/web/dist`; app-to-app `src` imports are banned.
- `apps/web` may import `packages/api` types only. Runtime imports from `packages/api` in web are banned.
- `apps/server` may import explicit runtime exports from `packages/api`.
- Tests remain colocated with moved code.
## Task 0: Coordination Artifacts
**Files:**
- Modify: `docs/superpowers/plans/2026-05-14-monorepo-architecture-reorg.md`
- Modify: `docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md`
- Modify: `docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md`
- [ ] Keep this plan updated when implementation discoveries force refinements.
- [ ] Keep the handoff file focused on current task ownership and next-agent startup context.
- [ ] Keep the worklog append-only with commands, validation results, blockers, and changed ownership decisions.
## Task 1: Pure Resume Domain Package
**Goal:** Create `@reactive-resume/resume` for pure resume-domain behavior, keeping `@reactive-resume/schema` validation-only and `@reactive-resume/utils` generic.
**Files:**
- Create: `packages/resume/package.json`
- Create: `packages/resume/tsconfig.json`
- Create: `packages/resume/vitest.config.ts`
- Move/create: `packages/resume/src/patch.ts`
- Move/create: `packages/resume/src/icons.ts`
- Move tests from `packages/utils/src/resume/patch.test.ts`
- Move tests for `packages/utils/src/network-icons.test.ts`
- Modify importers/callers currently using `@reactive-resume/utils/resume/patch`
- Modify importers/callers currently using `@reactive-resume/utils/network-icons`
- Modify `packages/utils/package.json`
- Modify root workspace manifests/lockfile as needed
- [x] Create the new package using the repo's source-consumed package pattern.
- [x] Move JSON Patch schema/types/application/comparison/error into `@reactive-resume/resume/patch`.
- [x] Move social network to icon-name mapping into `@reactive-resume/resume/icons`.
- [x] Update all runtime and test imports.
- [x] Remove `@reactive-resume/schema` dependency from `@reactive-resume/utils`.
- [x] Run `pnpm --filter @reactive-resume/resume test`.
- [x] Run `pnpm --filter @reactive-resume/resume typecheck`.
- [x] Run targeted typechecks for known consumers: `@reactive-resume/api`, `@reactive-resume/ai`, `web`.
## Task 2: DOCX Package
**Goal:** Create `@reactive-resume/docx` as the dedicated DOCX export package.
**Files:**
- Create: `packages/docx/package.json`
- Create: `packages/docx/tsconfig.json`
- Create: `packages/docx/vitest.config.ts`
- Move: `packages/utils/src/resume/docx/*` to `packages/docx/src/*`
- Modify web export callers currently using `@reactive-resume/utils/resume/docx`
- Modify package dependencies/lockfile
- [x] Create `@reactive-resume/docx` with explicit export `"."` or `"./builder"` as appropriate.
- [x] Move DOCX implementation and tests unchanged except import paths.
- [x] Update web callers to import DOCX export from `@reactive-resume/docx`.
- [x] Remove DOCX dependencies from `@reactive-resume/utils` if no longer used there.
- [x] Run `pnpm --filter @reactive-resume/docx test`.
- [x] Run `pnpm --filter @reactive-resume/docx typecheck`.
- [x] Run focused web export tests/typecheck.
## Task 3: PDF Package Browser/Server Generation Surface
**Goal:** Keep `@reactive-resume/pdf` focused on document/template/font rendering and pure generation adapters. Do not move PDF.js viewer UI into the PDF package.
**Files:**
- Create: `packages/pdf/src/browser.tsx`
- Create: `packages/pdf/src/server.tsx`
- Modify: `packages/pdf/package.json`
- Modify: web PDF generation callers currently using `apps/web/src/libs/resume/pdf-document.tsx`
- Modify: `apps/server`/API PDF download code after Task 5
- [x] Add data-plus-options generation APIs:
- `createResumePdfBlob({ data, template, resolveSectionTitle })`
- `createResumePdfFile({ data, filename, template, resolveSectionTitle })`
- [x] Keep Lingui locale loading in `apps/web`; pass `resolveSectionTitle` into PDF helpers.
- [x] Keep `ResumeDocument` as the underlying render surface.
- [x] Add/update tests for the browser/server helpers where practical.
- [x] Run `pnpm --filter @reactive-resume/pdf test`.
- [x] Run `pnpm --filter @reactive-resume/pdf typecheck`.
## Task 4: MCP Package and Shared Tool Contracts
**Goal:** Extract MCP implementation from web route helpers into `@reactive-resume/mcp`; share model-facing tool contracts from `@reactive-resume/ai`.
**Files:**
- Create: `packages/mcp/package.json`
- Create: `packages/mcp/tsconfig.json`
- Create: `packages/mcp/vitest.config.ts`
- Move: `apps/web/src/routes/mcp/-helpers/*` to `packages/mcp/src/*`
- Create/modify: `packages/ai/src/tools/resume-tool-contracts.ts`
- Modify: `packages/ai/package.json`
- Modify: `apps/server/src/handlers/mcp.ts`
- Modify: `apps/server/src/handlers/metadata.ts`
- Remove old web helper imports
- [x] Move MCP tools/prompts/resources/metadata card generation and tests into `@reactive-resume/mcp`.
- [x] Keep MCP execution through an injected/in-process oRPC `RouterClient`.
- [x] Rename MCP tools to canonical unprefixed snake_case names such as `list_resumes`, `read_resume`, `apply_resume_patch`.
- [x] Do not keep old `reactive_resume_*` aliases.
- [x] Use shared base tool contracts from `@reactive-resume/ai`, with MCP-specific schema extensions for explicit context fields such as `resumeId`.
- [ ] Update MCP docs/card version and cache-refresh guidance later in documentation tasks.
- [x] Run `pnpm --filter @reactive-resume/mcp test`.
- [x] Run `pnpm --filter @reactive-resume/mcp typecheck`.
- [x] Run `pnpm --filter server typecheck`.
## Task 5: API Feature Reorganization
**Goal:** Move `packages/api/src` from technical layers into feature/capability modules with explicit public exports.
**Files:**
- Reorganize under `packages/api/src/features/*`
- Modify: `packages/api/src/routers/index.ts`
- Modify: `packages/api/package.json`
- Modify consumers in `apps/server`, `apps/web` type imports, and packages
- [x] Split `features/agent` into `threads`, `messages`, `attachments`, `actions`, `runs`, and `tools`.
- [x] Split `features/resume` by capability: `crud`, `tags`, `statistics`, `analysis`, `access`, `events`, `sharing`, `export`.
- [x] Move authenticated PDF download procedure into `features/resume/export`; it calls `@reactive-resume/pdf/server`.
- [x] Keep Drizzle schema centralized in `packages/db`; API features consume schema but do not own table definitions.
- [x] Remove `./services/*` and `./helpers/*` wildcard exports.
- [x] Add explicit runtime exports required by `apps/server`.
- [x] Preserve `apps/web` API imports as type-only.
- [x] Run `pnpm --filter @reactive-resume/api test`.
- [x] Run `pnpm --filter @reactive-resume/api typecheck`.
- [x] Run `pnpm --filter server typecheck`.
- [x] Run `pnpm --filter web typecheck`.
## Task 6: Server Adapter Reorganization
**Goal:** Make `apps/server` read as a runtime adapter app.
**Files:**
- Reorganize `apps/server/src` into `http`, `rpc`, `mcp`, `openapi`, `static`, `startup`
- Modify: `apps/server/src/index.ts`
- Modify: `apps/server/package.json` if imports/dependencies change
- [x] Move handlers into adapter folders.
- [x] Keep server logic thin: auth/session/HTTP transport/static serving/startup.
- [x] Use explicit API runtime exports only.
- [x] Keep serving `apps/web/dist` allowed.
- [x] Run `pnpm --filter server test`.
- [x] Run `pnpm --filter server typecheck`.
## Task 7: Domain-First Web Reorganization
**Goal:** Move web code into domain/workflow feature trees so routes become thin shells.
**Files:**
- Create/reorganize under `apps/web/src/features/resume/*`
- Create/reorganize under `apps/web/src/features/{command-palette,theme,locale,user,auth,settings,dialogs}/*`
- Modify route imports and tests
- [x] Move resume domain code into workflow folders:
- `builder`
- `preview`
- `public`
- `dialogs`
- `sections`
- `templates`
- `export`
- `pdf-viewer`
- [x] Move PDF.js viewer/canvas UI into web resume feature, not `@reactive-resume/pdf`.
- [x] Keep route files responsible for URL params, loaders, redirects, SSR settings, and composition.
- [x] Leave `apps/web/src/components` with generic app-level primitives/screens only.
- [x] Move app shell concerns into separate features: command palette, theme, locale, user.
- [x] Move auth workflows into `features/auth` and settings sections into `features/settings`.
- [x] Run focused moved tests.
- [x] Run `pnpm --filter web typecheck`.
Slice 1 notes:
- Moved resume builder draft state, builder preview, PDF.js canvas preview, dashboard thumbnail PDF rendering helpers, public resume PDF viewer, and web-local PDF document wrappers under `apps/web/src/features/resume/*`.
- Removed `apps/web/src/components/resume` and `apps/web/src/routes/$username/-components`; the public resume route now lazy-loads from `features/resume/public`.
- Kept PDF.js viewer/canvas code in `apps/web/src/features/resume` and left `@reactive-resume/pdf` limited to PDF generation helpers.
- Broader Task 7 remains open for non-resume web feature moves and deeper dialog registry work owned by Task 8.
Slice 2 notes:
- Moved command palette, theme, locale, and user shell components/tests from `apps/web/src/components/*` to `apps/web/src/features/{command-palette,theme,locale,user}` and updated consumers.
- Moved auth route UI, layout, and social auth component into `apps/web/src/features/auth`, leaving auth route files as guard/search/composition wrappers.
- Moved settings page UI and authentication/integration subcomponents into `apps/web/src/features/settings`, leaving settings route files as dashboard-header/composition wrappers; `job-search` stayed route-only because it is already a redirect shim.
- `apps/web/src/components` now contains only the remaining generic primitive/screen folders.
- Task 8 still owns dialog registry decomposition; this slice only updated imports around existing dialog usage.
## Task 8: Dialog Registry Rework
**Goal:** Keep one central dialog runtime but make domain modules own their dialog definitions/renderers.
**Files:**
- Modify/create under `apps/web/src/features/dialogs`
- Modify/create domain dialog registry modules under relevant features
- Modify root dialog manager import
- [x] Replace the single giant discriminated union/manager import hub with composable domain registries.
- [x] Keep one global dialog store/runtime.
- [x] Each domain exports its schema entries and renderers.
- [x] Preserve existing dialog behavior and tests.
- [x] Run dialog-focused tests.
- [x] Run `pnpm --filter web typecheck`.
## Task 9: Boundary Enforcement
**Goal:** Make architectural rules executable.
**Files:**
- Modify: `turbo.json`
- Modify: `biome.json`
- Create: `tooling/grit/no-cross-workspace-src-imports.grit`
- Modify package manifests/tsconfigs to remove forbidden direct source path aliases
- [x] Add `turbo boundaries` package/runtime rules.
- [x] Add a Biome GritQL plugin/rule for forbidden cross-workspace `src` imports and path aliases.
- [x] Enforce subpath runtime tags: root exports environment-neutral; browser/server code behind explicit subpaths.
- [x] Allow wildcard exports only for role-approved leaf libraries such as UI components/hooks.
- [x] Run `pnpm exec turbo boundaries`.
- [x] Run a focused Biome boundary check.
## Task 10: Documentation and Source of Truth
**Goal:** Document the final architecture without duplicating rules in multiple places.
**Files:**
- Modify: `AGENTS.md`
- Create: `docs/adr/0001-workspace-boundaries.md`
- Modify: `docs/contributing/architecture.mdx`
- Modify: `docs/guides/using-the-mcp-server.mdx` if MCP tool names change
- Modify: `docs/guides/ai-agent-tools.mdx` if shared tool naming changes
- [x] Update root `AGENTS.md` with the normative workspace map, import rules, package roles, runtime tags, validation commands, and placement decision tree.
- [x] Add ADR rationale for boundaries and rejected alternatives.
- [x] Refresh public architecture docs as overview only.
- [x] Update MCP docs to mention canonical unprefixed tool names and client refresh/cache-clear guidance.
- [x] Avoid local package READMEs for architecture rules unless unavoidable.
- [x] Run docs-related checks available in the repo.
## Task 11: Final Validation and Handoff
**Goal:** Finish with a validated branch and external-agent-ready handoff.
**Files:**
- Modify: `docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md`
- Modify: `docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md`
- [x] Run focused checks listed in earlier tasks.
- [ ] Run final repo checks:
- `pnpm install --lockfile-only`
- `pnpm exec biome check .`
- `pnpm exec turbo boundaries`
- `pnpm knip`
- `pnpm typecheck`
- `pnpm test`
- `pnpm build`
- [x] Update the handoff with completed tasks, remaining risks, commands run, and useful file paths.
- [x] Dispatch final review if subagents are available.
@@ -1,214 +0,0 @@
# Docker Nightly and Release Tags Implementation Plan
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox syntax for tracking.
**Goal:** Update the Docker image workflow so pushes to `main` publish amd64-only nightly tags, while manual runs and pushed version tags publish release tags with the existing multi-arch behavior.
**Architecture:** Keep the existing digest-build and manifest-merge pipeline in `.github/workflows/docker-build.yml`. Add event-based mode expressions so nightly and release publishing share setup, registry auth, digest upload/download, signing, and inspection while differing only in triggers, platform inclusion, final tags, and redeploy behavior.
**Tech Stack:** GitHub Actions, Docker Buildx, `docker/metadata-action@v6`, `docker/build-push-action@v7`, `docker buildx imagetools`, Cosign.
---
### Task 1: Add Workflow Triggers and Mode Outputs
**Files:**
- Modify: `.github/workflows/docker-build.yml`
- [x] **Step 1: Update workflow triggers**
Change the workflow `on` block to include:
```yaml
on:
workflow_dispatch:
push:
branches:
- main
tags:
- "v*"
```
Expected behavior:
- `push` to `main` runs the workflow.
- `push` to tags matching `v*` runs the workflow.
- PR events do not run the workflow.
- Manual runs still run the workflow.
- [x] **Step 2: Add a mode job**
Add a `mode` job before `build`:
```yaml
mode:
runs-on: ubuntu-latest
outputs:
nightly: ${{ steps.mode.outputs.nightly }}
release: ${{ steps.mode.outputs.release }}
matrix: ${{ steps.mode.outputs.matrix }}
steps:
- name: Determine publishing mode
id: mode
run: |
if [[ "${{ github.event_name }}" == "push" && "${{ github.ref }}" == "refs/heads/main" ]]; then
echo "nightly=true" >> "$GITHUB_OUTPUT"
echo "release=false" >> "$GITHUB_OUTPUT"
echo 'matrix={"include":[{"platform":"linux/amd64","runner":"ubuntu-latest","arch":"amd64"}]}' >> "$GITHUB_OUTPUT"
else
echo "nightly=false" >> "$GITHUB_OUTPUT"
echo "release=true" >> "$GITHUB_OUTPUT"
echo 'matrix={"include":[{"platform":"linux/amd64","runner":"ubuntu-latest","arch":"amd64"},{"platform":"linux/arm64","runner":"ubuntu-24.04-arm","arch":"arm64"}]}' >> "$GITHUB_OUTPUT"
fi
```
This job centralizes the event decision so later jobs do not duplicate the full expression.
### Task 2: Generate the Platform Matrix from Mode
**Files:**
- Modify: `.github/workflows/docker-build.yml`
- [x] **Step 1: Make `build` depend on `mode`**
Set:
```yaml
needs: mode
```
on the `build` job.
- [x] **Step 2: Replace the static build matrix with the mode output**
Set the build strategy matrix to the JSON emitted by the `mode` job:
```yaml
matrix: ${{ fromJSON(needs.mode.outputs.matrix) }}
```
Expected behavior:
- Nightly runs create only the `amd64` matrix entry.
- Release/manual/tag runs create both `amd64` and `arm64` matrix entries.
### Task 3: Generate Conditional Final Tags
**Files:**
- Modify: `.github/workflows/docker-build.yml`
- [x] **Step 1: Make `merge` depend on `mode` and `build`**
Set:
```yaml
needs:
- mode
- build
```
on the `merge` job.
- [x] **Step 2: Update final Docker metadata tags**
In the merge job's Docker metadata step, replace the unconditional release tag list with conditional tags:
```yaml
tags: |
type=sha,prefix=sha-
type=raw,value=nightly,enable=${{ needs.mode.outputs.nightly == 'true' }}
type=raw,value=nightly-{{date 'YYYYMMDDHHmmss' tz='UTC'}},enable=${{ needs.mode.outputs.nightly == 'true' }}
type=raw,value=latest,enable=${{ needs.mode.outputs.release == 'true' }}
type=raw,value=v${{ steps.version.outputs.version }},enable=${{ needs.mode.outputs.release == 'true' }}
type=raw,value=v${{ steps.semver.outputs.major }}.${{ steps.semver.outputs.minor }},enable=${{ needs.mode.outputs.release == 'true' }}
type=raw,value=v${{ steps.semver.outputs.major }},enable=${{ needs.mode.outputs.release == 'true' }}
```
Expected behavior:
- Nightly runs publish `nightly`, `nightly-{UTC timestamp}`, and SHA tags.
- Release/manual/tag runs publish `latest`, version aliases, and SHA tags.
### Task 4: Make Post-Publish Steps Mode-Aware
**Files:**
- Modify: `.github/workflows/docker-build.yml`
- [x] **Step 1: Emit canonical image references from the manifest step**
In `Create manifest list and push`, compute the canonical final tag from mode:
```bash
if [[ "${{ needs.mode.outputs.nightly }}" == "true" ]]; then
FINAL_TAG="nightly"
else
FINAL_TAG="v${{ steps.version.outputs.version }}"
fi
```
Use `$FINAL_TAG` for both GHCR and Docker Hub digest lookup.
- [x] **Step 2: Inspect the canonical final tag**
Update `Inspect image` to inspect:
```bash
docker buildx imagetools inspect ghcr.io/${{ env.IMAGE }}:${{ steps.manifest.outputs.final_tag }}
docker buildx imagetools inspect docker.io/${{ env.IMAGE }}:${{ steps.manifest.outputs.final_tag }}
```
- [x] **Step 3: Keep redeploy release-only**
Add this condition to `Redeploy Stack`:
```yaml
if: ${{ needs.mode.outputs.release == 'true' }}
```
Expected behavior:
- Nightly publishes images, signs them, and inspects them.
- Nightly does not redeploy the stack.
- Release/manual/tag publishes images, signs them, inspects them, and redeploys.
### Task 5: Validate Workflow Logic
**Files:**
- Test: `.github/workflows/docker-build.yml`
- [x] **Step 1: Parse YAML**
Run:
```bash
ruby -e 'require "yaml"; YAML.load_file(".github/workflows/docker-build.yml"); puts "yaml ok"'
```
Expected output:
```text
yaml ok
```
- [x] **Step 2: Review the workflow diff**
Run:
```bash
git diff -- .github/workflows/docker-build.yml docs/superpowers/plans/2026-05-15-docker-nightly-release-tags.md
```
Confirm these requirements in the diff:
- `push` to `main` is enabled.
- pushed tags matching `v*` are enabled.
- no `pull_request` trigger exists.
- the matrix output contains only amd64 when `nightly == 'true'`.
- nightly tags are enabled only for nightly mode.
- release tags are enabled only for release mode.
- redeploy is release-only.
- [x] **Step 3: Check working tree scope**
Run:
```bash
git status --short .github/workflows/docker-build.yml docs/superpowers/plans/2026-05-15-docker-nightly-release-tags.md
```
Expected output includes only the workflow and this plan among files changed by this implementation.
@@ -1,117 +0,0 @@
# Manifest-Only PWA Implementation Plan
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
**Goal:** Remove Reactive Resume's service-worker and Workbox PWA behavior while keeping install metadata.
**Architecture:** Keep the manifest link and install meta tags in the web root route. Keep manifest data in
`apps/web/public/manifest.webmanifest`, keep head meta tags in `apps/web/src/libs/pwa.ts`, and remove the
service-worker registration export plus the `vite-plugin-pwa` build plugin.
**Tech Stack:** TanStack Start, Vite, TypeScript, pnpm, Vitest, Workbox removal.
---
### Task 1: Remove service-worker wiring
**Files:**
- Modify: `apps/web/index.html`
- Modify: `apps/web/vite.config.ts`
- Modify: `apps/web/src/libs/pwa.ts`
- Modify: `apps/web/src/routes/__root.tsx`
- Delete: `apps/web/src/libs/pwa.test.ts`
- [x] **Step 1: Remove `vite-plugin-pwa` imports and plugin usage**
In `apps/web/vite.config.ts`, remove:
```ts
import { VitePWA } from "vite-plugin-pwa";
import { pwaManifest } from "./src/libs/pwa";
```
Delete the local `pwa()` helper and remove `pwa()` from the `plugins` array.
- [x] **Step 2: Add install metadata to static HTML**
In `apps/web/index.html`, add the manifest link, icon links, theme color, and Apple/mobile install meta tags inside
`<head>` so install metadata is present without plugin HTML injection.
- [x] **Step 3: Remove dead manifest export and runtime service-worker registration**
In `apps/web/src/libs/pwa.ts`, remove the `pwaManifest` and `pwaServiceWorkerRegistrationScript` exports so the
module only owns head meta tags.
In `apps/web/src/routes/__root.tsx`, change the PWA import to:
```ts
import { pwaHeadMetaTags } from "@/libs/pwa";
```
Remove the `scripts` entry that injects `pwaServiceWorkerRegistrationScript` in production.
- [x] **Step 4: Delete obsolete PWA unit test**
Delete `apps/web/src/libs/pwa.test.ts`, because the remaining PWA surface is static manifest/head metadata.
### Task 2: Remove unused dependency graph
**Files:**
- Modify: `apps/web/package.json`
- Modify: `pnpm-lock.yaml`
- [x] **Step 1: Remove direct web dependency**
Remove this dependency from `apps/web/package.json`:
```json
"vite-plugin-pwa": "^1.3.0"
```
- [x] **Step 2: Refresh lockfile narrowly**
Run:
```sh
pnpm install --lockfile-only --offline --ignore-scripts
```
Expected: the lockfile no longer contains `vite-plugin-pwa` or unused Workbox packages required only by that
plugin. If the offline lockfile refresh is unavailable, edit the lockfile narrowly and verify with git diff.
### Task 3: Validate manifest-only behavior
**Files:**
- Inspect: `apps/web/.output` or `apps/web/dist`
- [x] **Step 1: Run focused checks**
Run:
```sh
pnpm --filter web typecheck
pnpm --filter web build
```
Expected: both commands complete successfully.
- [x] **Step 2: Inspect build output for service-worker artifacts**
Run:
```sh
find apps/web/.output apps/web/dist -name 'sw.js' -o -name 'workbox-*' -o -name 'registerSW.js'
```
Expected: no service-worker or Workbox files are printed. If one output directory does not exist, the command may
print a find warning for that path; inspect the directory that exists.
- [x] **Step 3: Inspect source for removed service-worker registration**
Run:
```sh
rg -n "serviceWorker|register\\(\"/sw\\.js\"|VitePWA|vite-plugin-pwa|workbox" apps/web/src apps/web/vite.config.ts apps/web/package.json
```
Expected: no matches for the removed PWA service-worker path.
@@ -1,222 +0,0 @@
# Unsafe OAuth Redirect URI Flag Implementation Plan
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
**Goal:** Replace `OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS` with `FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI`, preserving safe defaults and allowing any parseable redirect URI only when the flag is enabled.
**Architecture:** Keep OAuth redirect URI policy centralized in `packages/utils/src/url-security.node.ts`. Pass the new env flag from both Better Auth hook validation and the server auth preflight so both paths make identical decisions. Update env/docs references and tests in the same slice.
**Tech Stack:** TypeScript, Zod env schema, Better Auth hook middleware, Vitest, Turborepo env filtering, MDX docs.
---
## File Structure
- Modify `packages/utils/src/url-security.node.ts`: Change the OAuth redirect validator from allowlist-based to mode-based.
- Modify `packages/utils/src/url-security.node.test.ts`: Update safe-mode tests and add unsafe-mode coverage.
- Modify `packages/env/src/server.ts`: Remove the old allowlist env var and add `FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI`.
- Modify `packages/auth/src/config.ts`: Remove host-list parsing and pass `{ allowUnsafe: env.FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI }`.
- Modify `apps/server/src/http/auth.ts`: Remove host-list parsing and pass the same flag to the validator.
- Modify `apps/server/src/http/auth.test.ts`: Update env mock shape and preserve existing local edits.
- Modify `turbo.json`, `.env.example`, and MDX docs: Replace old env references with the new flag and warnings.
### Task 1: URL Policy Tests And Validator
**Files:**
- Modify: `packages/utils/src/url-security.node.test.ts`
- Modify: `packages/utils/src/url-security.node.ts`
- [ ] **Step 1: Write the failing safe/unsafe OAuth redirect tests**
Use this shape in `packages/utils/src/url-security.node.test.ts`:
```ts
describe("isAllowedOAuthRedirectUri", () => {
const trustedOrigins = ["https://app.example.com"];
it("returns false for malformed URI", () => {
expect(isAllowedOAuthRedirectUri("nope", trustedOrigins)).toBe(false);
});
it("returns true for any parseable URI when unsafe mode is enabled", () => {
const options = { allowUnsafe: true };
expect(isAllowedOAuthRedirectUri("myapp://callback", trustedOrigins, options)).toBe(true);
expect(isAllowedOAuthRedirectUri("http://example.com/cb", trustedOrigins, options)).toBe(true);
expect(isAllowedOAuthRedirectUri("https://192.168.1.1/cb", trustedOrigins, options)).toBe(true);
expect(isAllowedOAuthRedirectUri("https://u:p@app.example.com/cb#x", trustedOrigins, options)).toBe(true);
expect(isAllowedOAuthRedirectUri("not a url", trustedOrigins, options)).toBe(false);
});
});
```
- [ ] **Step 2: Run the focused utils test and verify it fails**
Run: `pnpm --filter @reactive-resume/utils test -- src/url-security.node.test.ts`
Expected before implementation: TypeScript/test failure because `isAllowedOAuthRedirectUri` still requires the removed allowlist argument.
- [ ] **Step 3: Implement mode-based OAuth redirect validation**
Use this signature in `packages/utils/src/url-security.node.ts`:
```ts
type OAuthRedirectUriOptions = {
allowUnsafe?: boolean;
};
export function isAllowedOAuthRedirectUri(
input: string,
trustedOrigins: string[],
options?: OAuthRedirectUriOptions,
) {
const parsed = parseUrl(input);
if (!parsed) return false;
if (options?.allowUnsafe) return true;
if (parsed.username || parsed.password) return false;
if (parsed.hash) return false;
const origin = parsed.origin.toLowerCase();
const hostname = normalizeHostname(parsed.hostname);
if (parsed.protocol === "http:") return isOAuthLoopbackRedirectHost(hostname);
if (parsed.protocol !== "https:") return false;
if (isPrivateOrLoopbackHost(hostname)) return false;
return trustedOrigins.includes(origin);
}
```
- [ ] **Step 4: Run the focused utils test and verify it passes**
Run: `pnpm --filter @reactive-resume/utils test -- src/url-security.node.test.ts`
Expected after implementation: all tests in `url-security.node.test.ts` pass.
### Task 2: Env And Runtime Wiring
**Files:**
- Modify: `packages/env/src/server.ts`
- Modify: `packages/auth/src/config.ts`
- Modify: `apps/server/src/http/auth.ts`
- Modify: `apps/server/src/http/auth.test.ts`
- Modify: `turbo.json`
- [ ] **Step 1: Update env schema and Turbo env list**
In `packages/env/src/server.ts`, remove:
```ts
OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS: z.string().optional(),
```
Add with feature flags:
```ts
FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI: z.stringbool().default(false),
```
In `turbo.json`, remove `"OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS"` and add `"FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI"` beside the other flags.
- [ ] **Step 2: Wire the flag into Better Auth config**
In `packages/auth/src/config.ts`, remove `parseAllowedHostList` usage and call:
```ts
if (
!isAllowedOAuthRedirectUri(uri, TRUSTED_ORIGINS, {
allowUnsafe: env.FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI,
})
) {
throw new APIError("BAD_REQUEST", {
message: "redirect_uri is not allowed for dynamic client registration",
});
}
```
- [ ] **Step 3: Wire the flag into server preflight**
In `apps/server/src/http/auth.ts`, remove `parseAllowedHostList` usage and call:
```ts
!isAllowedOAuthRedirectUri(redirectUri, oauthTrustedOrigins, {
allowUnsafe: env.FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI,
})
```
Update the test env mock in `apps/server/src/http/auth.test.ts`:
```ts
env: {
SERVER_PORT: 3001,
APP_URL: "http://localhost:3000",
FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI: false,
},
```
- [ ] **Step 4: Run focused typechecks**
Run:
```sh
pnpm --filter @reactive-resume/auth typecheck
pnpm --filter server typecheck
```
Expected: both commands exit 0.
### Task 3: Docs And Env Examples
**Files:**
- Modify: `.env.example`
- Modify: `docs/self-hosting/docker.mdx`
- Modify: `docs/self-hosting/sso.mdx`
- Modify: `docs/getting-started/quickstart.mdx`
- [ ] **Step 1: Replace old env docs with the new flag**
Remove all `OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS` references.
Add this warning wherever feature flags are documented:
```md
`FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI`: Allows dynamic OAuth client registration to use any parseable redirect URI, including custom schemes, private hosts, and non-loopback `http://` URLs. Keep disabled unless this is a trusted self-hosted deployment. Enabling it on public or multi-tenant instances can enable phishing or token exfiltration.
```
- [ ] **Step 2: Verify the removed env is gone from product code and docs**
Run: `rg -n "OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS" . --glob "!docs/superpowers/**"`
Expected: no matches outside the approved design and implementation plan documents.
Run: `rg -n "FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI" .`
Expected: matches in env schema, Turbo config, docs, tests, and runtime validation paths.
### Task 4: Final Verification
**Files:**
- Verify all modified files.
- [ ] **Step 1: Run focused tests**
Run:
```sh
pnpm --filter @reactive-resume/utils test -- src/url-security.node.test.ts
pnpm --filter server test -- src/http/auth.test.ts
```
Expected: both commands exit 0.
- [ ] **Step 2: Run focused typechecks and boundaries**
Run:
```sh
pnpm --filter @reactive-resume/auth typecheck
pnpm --filter server typecheck
pnpm exec turbo boundaries
```
Expected: all commands exit 0.
@@ -1,670 +0,0 @@
# E2E Tests Implementation Plan
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
**Goal:** Build a Playwright E2E test setup that runs deterministic core Reactive Resume flows with ephemeral accounts/data locally and on GitHub Actions for every PR.
**Architecture:** Add a root-level Playwright harness that targets the production server after `pnpm build`. Use hybrid fixtures: one browser-driven auth smoke spec, and helper-created authenticated browser state plus ephemeral database cleanup for resume flows. Keep initial PR-gated coverage to auth, sample resume creation, builder autosave, JSON export/import, and public sharing.
**Tech Stack:** Playwright, TypeScript, pnpm, Turbo, GitHub Actions, PostgreSQL service container, Better Auth HTTP endpoints, Drizzle/Postgres cleanup helpers.
---
## File structure
- Create `playwright.config.ts`: Playwright projects, reporters, artifact policy, base URL, and production `webServer`.
- Create `tests/e2e/README.md`: local setup and CI behavior.
- Create `tests/e2e/fixtures/data.ts`: unique test identity and resume value generation.
- Create `tests/e2e/fixtures/auth.ts`: browser UI auth helpers and API-backed authenticated storage state helpers.
- Create `tests/e2e/fixtures/db.ts`: user cleanup by email/username prefix.
- Create `tests/e2e/fixtures/resume.ts`: UI helpers for creating sample resumes and accessing builder sections.
- Create `tests/e2e/fixtures/test.ts`: typed Playwright fixture composition.
- Create `tests/e2e/specs/auth.spec.ts`: browser registration/login smoke flow.
- Create `tests/e2e/specs/resume-lifecycle.spec.ts`: dashboard create sample resume and builder autosave flow.
- Create `tests/e2e/specs/json-export-import.spec.ts`: deterministic JSON backup/restore flow.
- Create `tests/e2e/specs/public-sharing.spec.ts`: public sharing flow with anonymous browser context.
- Create `.github/workflows/e2e.yml`: PR/push workflow with Postgres, build, Playwright install, E2E run, and report uploads.
- Modify `package.json`: add Playwright dependency and E2E scripts.
- Modify `turbo.json`: register E2E task if routed through package scripts.
- Modify targeted UI files only if accessible locators are not sufficient.
## Task 1: Add Playwright dependency and scripts
**Files:**
- Modify: `package.json`
- Modify: `pnpm-lock.yaml`
- Modify: `turbo.json`
- [ ] **Step 1: Add Playwright with the package manager**
Run: `pnpm add -D @playwright/test`
Expected: `package.json` and `pnpm-lock.yaml` include `@playwright/test`.
- [ ] **Step 2: Add root scripts**
Change root `package.json` scripts to include:
```json
{
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:ci": "playwright test"
}
```
- [ ] **Step 3: Register the Turbo task**
Add this task entry to `turbo.json`:
```json
"test:e2e": {
"cache": false
}
```
- [ ] **Step 4: Verify script discovery**
Run: `pnpm exec playwright --version`
Expected: Playwright prints a version and exits successfully.
- [ ] **Step 5: Commit**
Run:
```bash
git add package.json pnpm-lock.yaml turbo.json
git commit -m "test: add playwright e2e scripts"
git push -u origin feat/e2e-test-plan-2b10
```
## Task 2: Add Playwright configuration
**Files:**
- Create: `playwright.config.ts`
- [ ] **Step 1: Create the config**
Create `playwright.config.ts`:
```ts
import { defineConfig, devices } from "@playwright/test";
const port = Number.parseInt(process.env.PORT ?? "3000", 10);
const baseURL = process.env.APP_URL ?? `http://127.0.0.1:${port}`;
const isCI = process.env.CI === "true" || process.env.CI === "1";
export default defineConfig({
testDir: "./tests/e2e/specs",
fullyParallel: true,
forbidOnly: isCI,
retries: isCI ? 2 : 0,
workers: isCI ? 2 : undefined,
reporter: isCI
? [
["list"],
["github"],
["junit", { outputFile: "test-results/e2e-junit.xml" }],
]
: [["list"], ["html", { open: "never" }]],
use: {
baseURL,
trace: "retain-on-failure",
screenshot: "only-on-failure",
video: "retain-on-failure",
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
webServer: {
command: "pnpm start",
url: `${baseURL}/api/health`,
reuseExistingServer: !isCI,
timeout: 120_000,
env: {
...process.env,
PORT: String(port),
},
},
});
```
- [ ] **Step 2: Verify config loads**
Run: `pnpm exec playwright test --list`
Expected: Playwright lists zero tests at this point without config errors.
- [ ] **Step 3: Commit**
Run:
```bash
git add playwright.config.ts
git commit -m "test: configure playwright"
git push -u origin feat/e2e-test-plan-2b10
```
## Task 3: Add E2E fixtures
**Files:**
- Create: `tests/e2e/fixtures/data.ts`
- Create: `tests/e2e/fixtures/db.ts`
- Create: `tests/e2e/fixtures/auth.ts`
- Create: `tests/e2e/fixtures/resume.ts`
- Create: `tests/e2e/fixtures/test.ts`
- [ ] **Step 1: Add test data helpers**
Create `tests/e2e/fixtures/data.ts`:
```ts
import type { TestInfo } from "@playwright/test";
const sanitize = (value: string) => value.toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-|-$/g, "");
export type E2EAccount = {
name: string;
username: string;
email: string;
password: string;
};
export function createRunSlug(testInfo: TestInfo) {
const worker = testInfo.workerIndex;
const title = sanitize(testInfo.titlePath.join("-")).slice(0, 40);
const suffix = `${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 8)}`;
return `e2e-${worker}-${title}-${suffix}`;
}
export function createAccount(testInfo: TestInfo): E2EAccount {
const slug = createRunSlug(testInfo).replaceAll("-", "_").slice(0, 48);
return {
name: "E2E Test User",
username: slug,
email: `${slug}@example.test`,
password: "Password123!",
};
}
export function createResumeName(testInfo: TestInfo) {
return `E2E Resume ${createRunSlug(testInfo)}`;
}
```
- [ ] **Step 2: Add database cleanup**
Create `tests/e2e/fixtures/db.ts`:
```ts
import { eq, or } from "drizzle-orm";
import { db, getPool } from "@reactive-resume/db/client";
import { user } from "@reactive-resume/db/schema";
export async function deleteE2EUser(account: { email: string; username: string }) {
await db.delete(user).where(or(eq(user.email, account.email), eq(user.username, account.username)));
}
export async function closeE2EDatabase() {
await getPool().end();
globalThis.__pool = undefined;
globalThis.__drizzle = undefined;
}
```
- [ ] **Step 3: Add auth helpers**
Create `tests/e2e/fixtures/auth.ts`:
```ts
import type { Browser, Page } from "@playwright/test";
import type { E2EAccount } from "./data";
export async function registerViaUi(page: Page, account: E2EAccount) {
await page.goto("/auth/register");
await page.getByLabel("Name").fill(account.name);
await page.getByLabel("Username").fill(account.username);
await page.getByLabel("Email Address").fill(account.email);
await page.getByLabel("Password").fill(account.password);
await page.getByRole("button", { name: "Sign up" }).click();
await page.getByRole("link", { name: /continue/i }).click();
await page.waitForURL(/\/dashboard/);
}
export async function loginViaUi(page: Page, account: E2EAccount) {
await page.goto("/auth/login");
await page.getByLabel(/email|username/i).fill(account.email);
await page.getByLabel("Password").fill(account.password);
await page.getByRole("button", { name: "Sign in" }).click();
await page.waitForURL(/\/dashboard/);
}
export async function createAuthenticatedPage(browser: Browser, account: E2EAccount) {
const context = await browser.newContext();
const page = await context.newPage();
await registerViaUi(page, account);
return page;
}
```
- [ ] **Step 4: Add resume UI helpers**
Create `tests/e2e/fixtures/resume.ts`:
```ts
import type { Page, TestInfo } from "@playwright/test";
import { expect } from "@playwright/test";
import { createResumeName } from "./data";
export async function createSampleResumeFromDashboard(page: Page, testInfo: TestInfo) {
const resumeName = createResumeName(testInfo);
await page.goto("/dashboard/resumes");
await page.getByText("Create a new resume").click();
await page.getByRole("dialog", { name: "Create a new resume" }).getByLabel("Name").fill(resumeName);
await page.getByRole("button", { name: "Create resume with options" }).click();
await page.getByRole("menuitem", { name: "Create a Sample Resume" }).click();
await expect(page.getByText(resumeName)).toBeVisible();
await page.getByText(resumeName).click();
await page.waitForURL(/\/builder\/.+/);
return resumeName;
}
export async function openRightSidebarSection(page: Page, name: string) {
await page.getByRole("button", { name }).click();
}
```
- [ ] **Step 5: Add fixture composition**
Create `tests/e2e/fixtures/test.ts`:
```ts
import { test as base, expect } from "@playwright/test";
import type { E2EAccount } from "./data";
import { createAccount } from "./data";
import { deleteE2EUser } from "./db";
import { registerViaUi } from "./auth";
type Fixtures = {
account: E2EAccount;
authPage: import("@playwright/test").Page;
};
export const test = base.extend<Fixtures>({
account: async ({}, use, testInfo) => {
const account = createAccount(testInfo);
await use(account);
await deleteE2EUser(account);
},
authPage: async ({ browser, account }, use) => {
const context = await browser.newContext();
const page = await context.newPage();
await registerViaUi(page, account);
await use(page);
await context.close();
},
});
export { expect };
```
- [ ] **Step 6: Run type-aware feedback**
Run: `pnpm exec tsc --noEmit --allowImportingTsExtensions false --moduleResolution bundler --target es2022 --module esnext tests/e2e/fixtures/*.ts`
Expected: If direct `tsc` is too narrow for workspace exports, use `pnpm typecheck` after Task 6 instead.
- [ ] **Step 7: Commit**
Run:
```bash
git add tests/e2e/fixtures
git commit -m "test: add e2e fixtures"
git push -u origin feat/e2e-test-plan-2b10
```
## Task 4: Add core E2E specs
**Files:**
- Create: `tests/e2e/specs/auth.spec.ts`
- Create: `tests/e2e/specs/resume-lifecycle.spec.ts`
- Create: `tests/e2e/specs/json-export-import.spec.ts`
- Create: `tests/e2e/specs/public-sharing.spec.ts`
- [ ] **Step 1: Add auth smoke spec**
Create `tests/e2e/specs/auth.spec.ts`:
```ts
import { test, expect } from "../fixtures/test";
import { loginViaUi, registerViaUi } from "../fixtures/auth";
test("registers and logs in with email credentials", async ({ page, account }) => {
await registerViaUi(page, account);
await expect(page.getByRole("heading", { name: "Resumes" })).toBeVisible();
await page.getByRole("button", { name: /user menu|account|profile/i }).click();
await page.getByRole("menuitem", { name: /logout|sign out/i }).click();
await loginViaUi(page, account);
await expect(page.getByRole("heading", { name: "Resumes" })).toBeVisible();
});
```
- [ ] **Step 2: Add resume lifecycle spec**
Create `tests/e2e/specs/resume-lifecycle.spec.ts`:
```ts
import { test, expect } from "../fixtures/test";
import { createSampleResumeFromDashboard } from "../fixtures/resume";
test("creates a sample resume and persists a basics edit", async ({ authPage: page }, testInfo) => {
await createSampleResumeFromDashboard(page, testInfo);
const updatedName = `E2E Edited ${Date.now()}`;
await page.getByRole("button", { name: "Basics" }).click();
await page.getByLabel("Name").fill(updatedName);
await page.reload();
await page.getByRole("button", { name: "Basics" }).click();
await expect(page.getByLabel("Name")).toHaveValue(updatedName);
});
```
- [ ] **Step 3: Add JSON export/import spec**
Create `tests/e2e/specs/json-export-import.spec.ts`:
```ts
import { test, expect } from "../fixtures/test";
import { createSampleResumeFromDashboard } from "../fixtures/resume";
test("exports and imports a resume JSON backup", async ({ authPage: page }, testInfo) => {
const resumeName = await createSampleResumeFromDashboard(page, testInfo);
await page.getByRole("button", { name: "Export" }).click();
const downloadPromise = page.waitForEvent("download");
await page.getByRole("button", { name: /^JSON$/ }).click();
const download = await downloadPromise;
expect(download.suggestedFilename()).toMatch(/\.json$/);
const path = await download.path();
expect(path).toBeTruthy();
if (!path) throw new Error("Expected Playwright to provide a downloaded JSON path.");
await page.goto("/dashboard/resumes");
await page.getByText("Import an existing resume").click();
await page.getByRole("combobox").click();
await page.getByRole("option", { name: "Reactive Resume (JSON)" }).click();
await page.getByText("Click here to select a file to import").setInputFiles(path);
await page.getByRole("button", { name: "Import" }).click();
await page.waitForURL(/\/builder\/.+/);
await expect(page.getByText(resumeName)).toBeVisible();
});
```
- [ ] **Step 4: Add public sharing spec**
Create `tests/e2e/specs/public-sharing.spec.ts`:
```ts
import { test, expect } from "../fixtures/test";
import { createSampleResumeFromDashboard } from "../fixtures/resume";
test("publishes a resume and renders it for an anonymous visitor", async ({ browser, authPage: page }, testInfo) => {
await createSampleResumeFromDashboard(page, testInfo);
await page.getByRole("button", { name: "Sharing" }).click();
await page.getByLabel("Allow Public Access").click();
const publicUrl = await page.getByLabel("URL").inputValue();
const anonymous = await browser.newPage();
await anonymous.goto(publicUrl);
await expect(anonymous.getByRole("button", { name: /download/i })).toBeVisible();
await anonymous.close();
});
```
- [ ] **Step 5: Run list mode**
Run: `pnpm test:e2e -- --list`
Expected: Four Chromium tests are listed.
- [ ] **Step 6: Commit**
Run:
```bash
git add tests/e2e/specs
git commit -m "test: add core e2e specs"
git push -u origin feat/e2e-test-plan-2b10
```
## Task 5: Add documentation
**Files:**
- Create: `tests/e2e/README.md`
- [ ] **Step 1: Add E2E README**
Create `tests/e2e/README.md`:
```md
# E2E Tests
Reactive Resume uses Playwright for PR-gated browser coverage of deterministic core flows.
## Local setup
Start PostgreSQL:
`sudo docker compose -f compose.dev.yml up -d postgres`
Generate local test secrets:
`export AUTH_SECRET=$(openssl rand -hex 32)`
`export ENCRYPTION_SECRET=$(openssl rand -hex 32)`
Run database migrations:
`APP_URL=http://localhost:3000 PORT=3000 DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres FLAG_DISABLE_SIGNUPS=false FLAG_DISABLE_EMAIL_AUTH=false FLAG_DISABLE_API_RATE_LIMIT=true LOCAL_STORAGE_PATH=/workspace/data/e2e pnpm db:migrate`
Build the production app:
`APP_URL=http://localhost:3000 PORT=3000 DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres FLAG_DISABLE_SIGNUPS=false FLAG_DISABLE_EMAIL_AUTH=false FLAG_DISABLE_API_RATE_LIMIT=true LOCAL_STORAGE_PATH=/workspace/data/e2e pnpm build`
Run tests:
`APP_URL=http://localhost:3000 PORT=3000 DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres FLAG_DISABLE_SIGNUPS=false FLAG_DISABLE_EMAIL_AUTH=false FLAG_DISABLE_API_RATE_LIMIT=true LOCAL_STORAGE_PATH=/workspace/data/e2e pnpm test:e2e`
## Coverage
- Email/password auth smoke.
- Dashboard sample resume creation.
- Builder basics edit and autosave persistence.
- JSON export/import.
- Public sharing for anonymous visitors.
PDF, DOCX, OAuth, passkeys, 2FA, password reset, and AI flows are intentionally outside the initial PR gate.
```
- [ ] **Step 2: Commit**
Run:
```bash
git add tests/e2e/README.md
git commit -m "docs: document e2e workflow"
git push -u origin feat/e2e-test-plan-2b10
```
## Task 6: Add GitHub Actions workflow
**Files:**
- Create: `.github/workflows/e2e.yml`
- [ ] **Step 1: Add workflow**
Create `.github/workflows/e2e.yml`:
```yaml
name: E2E Tests
on:
pull_request:
push:
branches: ["main"]
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
APP_URL: http://localhost:3000
PORT: "3000"
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
FLAG_DISABLE_SIGNUPS: "false"
FLAG_DISABLE_EMAIL_AUTH: "false"
FLAG_DISABLE_API_RATE_LIMIT: "true"
LOCAL_STORAGE_PATH: /tmp/reactive-resume-e2e-storage
jobs:
e2e:
runs-on: ubuntu-latest
timeout-minutes: 30
services:
postgres:
image: postgres:16
env:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready -U postgres -d postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout Repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24"
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright Browser
run: pnpm exec playwright install --with-deps chromium
- name: Generate Test Secrets
run: |
echo "AUTH_SECRET=$(openssl rand -hex 32)" >> "$GITHUB_ENV"
echo "ENCRYPTION_SECRET=$(openssl rand -hex 32)" >> "$GITHUB_ENV"
- name: Prepare Storage
run: mkdir -p "$LOCAL_STORAGE_PATH"
- name: Run Database Migrations
run: pnpm db:migrate
- name: Build
run: pnpm build
- name: Run E2E Tests
run: pnpm test:e2e:ci
- name: Upload Playwright Report
if: always()
uses: actions/upload-artifact@v7
with:
name: playwright-report
path: |
playwright-report
test-results
if-no-files-found: ignore
retention-days: 7
```
- [ ] **Step 2: Commit**
Run:
```bash
git add .github/workflows/e2e.yml
git commit -m "ci: run e2e tests on pull requests"
git push -u origin feat/e2e-test-plan-2b10
```
## Task 7: Verify and stabilize
**Files:**
- Modify any E2E files that fail due to actual labels or app behavior.
- Modify targeted UI files only if no stable accessible locator exists.
- [ ] **Step 1: Run non-mutating checks**
Run: `pnpm exec biome check package.json turbo.json playwright.config.ts tests/e2e .github/workflows/e2e.yml`
Expected: No Biome errors.
- [ ] **Step 2: Run typecheck**
Run: `pnpm typecheck`
Expected: Typecheck passes for all workspaces.
- [ ] **Step 3: Start PostgreSQL**
Run: `sudo docker compose -f compose.dev.yml up -d postgres`
Expected: Postgres container is healthy.
- [ ] **Step 4: Build production app**
Run:
```bash
export AUTH_SECRET=$(openssl rand -hex 32)
export ENCRYPTION_SECRET=$(openssl rand -hex 32)
APP_URL=http://localhost:3000 PORT=3000 DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres FLAG_DISABLE_SIGNUPS=false FLAG_DISABLE_EMAIL_AUTH=false FLAG_DISABLE_API_RATE_LIMIT=true LOCAL_STORAGE_PATH=/workspace/data/e2e pnpm build
```
Expected: web and server production builds complete.
- [ ] **Step 5: Run E2E suite**
Run:
```bash
APP_URL=http://localhost:3000 PORT=3000 DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres FLAG_DISABLE_SIGNUPS=false FLAG_DISABLE_EMAIL_AUTH=false FLAG_DISABLE_API_RATE_LIMIT=true LOCAL_STORAGE_PATH=/workspace/data/e2e pnpm test:e2e
```
Expected: All Chromium specs pass.
- [ ] **Step 6: Commit stabilization changes**
Run:
```bash
git add .
git commit -m "test: stabilize e2e suite"
git push -u origin feat/e2e-test-plan-2b10
```
## Self-review
- Spec coverage: Tasks cover Playwright setup, production-build target, hybrid fixtures, ephemeral data cleanup, core deterministic flows, CI workflow, and documentation.
- Placeholder scan: No placeholder steps remain; each task names exact files, commands, and expected outcomes.
- Type consistency: Fixture types are introduced before specs use them, and all helper names match across tasks.
File diff suppressed because it is too large Load Diff
@@ -1,55 +0,0 @@
# React PDF HTML Prose Spacing Design
## Context
Resume rich-text fields are rendered in PDF through `packages/pdf/src/templates/shared/rich-text.tsx`, which wraps normalized HTML with `react-pdf-html`. Each template currently supplies body-derived styles such as `richParagraph`, `richListItemRow`, `richListItemMarker`, and `richListItemContent`. Those styles intentionally keep rich text aligned with the template typography.
The current PDF rich-text spacing differs from what users see in Tailwind Typography prose. Paragraphs and list items are effectively flattened by zero margins, while browser prose gives paragraphs and list items vertical rhythm and trims the outside edges of the rich-text flow.
## Goals
- Add vertical spacing to `react-pdf-html` paragraphs and list items in the shared `RichText` path.
- Match Tailwind Typography `prose-sm` spacing proportions without importing Tailwind's browser font size into PDF output.
- Preserve each resume template's body font size and line height for rich text and adjacent non-rich-text PDF elements.
- Remove the outer top margin from the first renderable rich-text block and the outer bottom margin from the last renderable rich-text block.
- Keep the change shared and template-compatible unless a future template needs an explicit exception.
## Non-Goals
- Do not change web editor `.wysiwyg` styles.
- Do not change template body or heading font sizes.
- Do not add a new PDF typography system.
- Do not restyle headings, blockquotes, tables, or other HTML tags beyond paragraph and list item spacing.
## Recommended Approach
Use Tailwind Typography `prose-sm` spacing ratios and derive the final PDF spacing from the current template body font size. Tailwind Typography's `prose-sm` paragraph spacing is `16 / 14` of the body size, and list item spacing is `4 / 14` of the body size. The PDF renderer should use those ratios against the resolved body font size already present in the template styles.
This keeps rich-text content visually consistent with Tailwind Typography while respecting the resume template's PDF typography scale.
## Implementation Shape
The shared `RichText` component should:
1. Continue normalizing input through `normalizeRichTextHtml`.
2. Inspect the normalized HTML to identify renderable top-level prose blocks relevant to this change: paragraphs and list items.
3. Apply derived paragraph spacing to `p` through the `react-pdf-html` stylesheet.
4. Apply derived list item spacing to the custom `li` renderer row container.
5. Trim `marginTop` on the first relevant rich-text element and `marginBottom` on the last relevant rich-text element.
6. Merge spacing after template styles where needed so old `margin: 0` template defaults do not suppress the new shared prose rhythm.
For list items, the spacing belongs on the custom `li` row container. Marker and content styles should continue coming from template slots so bullets, numbers, font size, and line height remain template-owned.
## Testing
Add focused tests around the shared rich-text spacing behavior. Coverage should include:
- A single paragraph has both outer margins trimmed.
- Multiple paragraphs keep internal paragraph spacing and trim only the first top and last bottom edge.
- Multiple list items get list-item vertical spacing with first top and last bottom trimmed.
- Mixed paragraph/list content trims the first and last relevant elements across element types.
- Rich-text font sizing remains template-derived rather than hard-coded to Tailwind's browser `14px`.
## Open Decisions
No open decisions remain. The approved behavior is to use Tailwind Typography spacing ratios derived from the resume template body font size.
@@ -1,94 +0,0 @@
# Docker Nightly and Release Tagging Design
## Goal
Update `.github/workflows/docker-build.yml` so the existing Docker build pipeline supports two publishing modes without duplicating the workflow:
- Nightly publishing on pushes to the default branch, `main`.
- Release publishing only on manual workflow runs or pushed Git tags.
## Trigger Rules
The workflow should run for:
- `workflow_dispatch`, which publishes release tags.
- `push` to `main`, which publishes nightly tags only.
- `push` to Git tags matching `v*`, which publishes release tags.
Pull request events should not publish Docker images. This avoids exposing registry credentials to PR contexts and keeps nightly publishing tied to commits that have actually landed on `main`.
## Publishing Modes
### Nightly Mode
Nightly mode applies when:
- `github.event_name == "push"`
- `github.ref == "refs/heads/main"`
Nightly mode should push these tags to both GHCR and Docker Hub:
- `nightly`
- `nightly-{timestamp}`
The timestamp should be generated by the workflow at publish time in UTC using `YYYYMMDDHHmmss`, for example `nightly-20260515143000`.
Nightly builds should use only the `linux/amd64` platform. They should not build or publish `linux/arm64`.
### Release Mode
Release mode applies when:
- The workflow is run manually with `workflow_dispatch`.
- A Git tag is pushed.
Release mode should preserve the existing release tag behavior:
- `latest`
- `v{VERSION}` from root `package.json`
- `v{MAJOR}.{MINOR}`
- `v{MAJOR}`
Release builds should preserve the current multi-platform behavior:
- `linux/amd64`
- `linux/arm64`
## Workflow Shape
Keep a single `.github/workflows/docker-build.yml` file. The current workflow already has the useful structure:
1. Build per-platform images and push them by digest.
2. Upload digest artifacts.
3. Merge digests into final manifest tags.
4. Sign and inspect final images.
5. Redeploy the stack.
The implementation should add a small mode-detection step or expression-based conditions rather than creating a second near-identical workflow.
The build matrix should include both architectures, but the arm64 build should be skipped during nightly mode. This keeps release behavior unchanged while making nightly pushes cheaper and faster.
The merge job should generate final tags conditionally:
- Nightly mode emits `nightly` and `nightly-{timestamp}`.
- Release mode emits `latest` and version aliases.
The merge job should inspect and sign whichever final manifest tag is authoritative for the current mode:
- Nightly mode can inspect/sign `nightly`.
- Release mode can inspect/sign `v{VERSION}`.
## Deployment
The existing `Redeploy Stack` step should remain release-only. Nightly pushes should publish images but should not redeploy the running stack.
## Validation
Validate the change by reviewing the workflow syntax and checking that:
- A `push` to `main` resolves to a single `linux/amd64` build and nightly tags.
- A `workflow_dispatch` run resolves to both architectures and release tags.
- A pushed Git tag resolves to both architectures and release tags.
- No PR event can publish images.
If local workflow lint tooling is unavailable, inspect the YAML and relevant GitHub Actions expressions directly.
@@ -1,99 +0,0 @@
# Manifest-Only PWA Design
Date: 2026-05-15
## Goal
Reduce Reactive Resume's PWA implementation to install metadata only.
The site should remain installable on supported phones and desktops through the web app manifest, icons,
screenshots, and mobile app meta tags. The PWA implementation should not generate, register, or rely on a
service worker, and it should not provide offline support, app-shell precaching, runtime caching, or fallback
navigation.
## Non-Goals
- Do not add offline support.
- Do not add a no-op service worker.
- Do not add runtime caching rules for app assets, API responses, uploaded files, generated PDFs, or routes.
- Do not change product UI, routing, auth, resume editing, public resume pages, or PDF generation behavior.
- Do not change normal browser or HTTP caching behavior owned by the browser or server.
## Architecture
Keep install metadata in `apps/web/public/manifest.webmanifest`. That static manifest remains the source of truth
for app name, description, theme color, background color, icons, screenshots, categories, scope, and start URL.
Keep mobile install/open-as-app meta tags in `apps/web/src/libs/pwa.ts`. That module continues to own:
- `pwaHeadMetaTags`
- app name and theme color used by those head meta tags
Add the same manifest, icon, and mobile install hints directly to `apps/web/index.html` so install metadata is
present in the initial HTML without relying on `vite-plugin-pwa` HTML injection or client-side route head updates.
Remove the service-worker part of the current architecture:
- Remove `VitePWA` usage from `apps/web/vite.config.ts`.
- Remove the `vite-plugin-pwa` dependency from `apps/web/package.json` and the lockfile.
- Remove the now-unused `pwaManifest` and `pwaServiceWorkerRegistrationScript` exports from `apps/web/src/libs/pwa.ts`.
- Stop injecting the production `navigator.serviceWorker.register("/sw.js", { scope: "/" })` script from
`apps/web/src/routes/__root.tsx`.
The root route keeps the existing manifest link:
```tsx
{ rel: "manifest", href: "/manifest.webmanifest", crossOrigin: "use-credentials" }
```
The root route also keeps the PWA-related head meta tags, including `theme-color` and Apple mobile web app tags,
because those are part of the install/open-as-app experience rather than offline behavior.
## Data Flow
Browsers discover install metadata by reading the root document head and fetching `/manifest.webmanifest`.
Manifest-linked assets continue to be served as static public assets from `apps/web/public`, including:
- favicon assets
- PWA icons
- maskable icon
- Apple touch icon
- installation screenshots
No service worker is emitted by the web build, no service worker is registered at runtime, and no Workbox
precache manifest is produced.
## Error Handling
There is no PWA-controlled offline fallback.
When the network is unavailable, the app behaves like a normal website: navigations, API calls, uploaded assets,
and generated downloads fail according to the browser and server behavior already in place. This is intentional
because installability is the only remaining PWA goal.
## Testing
Remove `apps/web/src/libs/pwa.test.ts`.
The file currently tests both install metadata and service-worker registration behavior. After this change, the
remaining PWA surface is static manifest/head metadata with no behavior-specific module contract worth preserving
as a dedicated unit test.
Implementation should still verify by inspection and build output that:
- `apps/web/dist/index.html` includes the manifest link and mobile install meta tags
- the root route keeps the manifest link
- PWA head meta tags remain present
- no service-worker registration script is exported or injected by the root route
- no `sw.js` or Workbox precache output is emitted by the web build
Focused validation after implementation:
```sh
pnpm --filter web typecheck
pnpm --filter web build
```
If the package dependency removal changes the lockfile, verify the lockfile remains scoped to removing
`vite-plugin-pwa` and its now-unused Workbox dependency graph.
@@ -1,95 +0,0 @@
# Unsafe OAuth Redirect URI Flag Design
Date: 2026-05-15
## Goal
Replace `OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS` with a single explicit escape hatch:
`FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI`.
By default, dynamic OAuth client registration keeps the existing safe behavior: redirect URIs are allowed only when they target the app origin or local loopback callback hosts. When the flag is enabled, trusted self-hosted deployments may register any parseable redirect URI, including private network URLs, non-loopback `http://` URLs, and custom schemes such as `myapp://callback`.
## Non-Goals
- Do not change whether dynamic OAuth client registration is enabled.
- Do not change MCP OAuth audience handling, login, consent, token issuance, or public client registration defaults.
- Do not reuse `FLAG_ALLOW_UNSAFE_AI_BASE_URL`; OAuth redirect handling is a separate trust boundary.
- Do not keep a curated redirect-host allowlist after this change.
## Architecture
The existing redirect URI policy remains centralized in `@reactive-resume/utils/url-security.node`.
Introduce a mode-based OAuth redirect validator API, for example:
```ts
isAllowedOAuthRedirectUri(input, trustedOrigins, { allowUnsafe })
```
Safe mode keeps the current rules:
- Reject malformed URIs.
- Reject embedded credentials.
- Reject URI fragments.
- Allow `http://localhost`, `http://127.0.0.1`, and `http://[::1]` callbacks.
- Allow `https://` callbacks whose origin matches `APP_URL`.
- Reject other public HTTPS hosts, private HTTPS hosts, non-loopback HTTP hosts, and non-HTTP schemes.
Unsafe mode deliberately weakens the redirect URI trust check:
- Allow any URI accepted by the platform URL parser.
- Allow custom schemes such as `myapp://callback`.
- Allow private and loopback hosts on any supported URL scheme.
- Allow non-loopback `http://` URLs.
Unsafe mode should still reject strings that are not parseable as URLs. It does not preserve the current credentials or fragment restrictions, because the requested behavior is absolute unsafe: any parseable URI scheme is accepted.
## Data Flow
`packages/env/src/server.ts` defines `FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI` as a `z.stringbool().default(false)` feature flag and removes `OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS`.
`packages/auth/src/config.ts` uses the flag in the Better Auth `hooks.before` validation for `/oauth2/register`.
`apps/server/src/http/auth.ts` uses the same flag in the server-level registration preflight before forwarding the request to Better Auth.
Both validation paths must make the same allow or reject decision for the same redirect URI. The server preflight remains useful because it returns OAuth-shaped registration errors before the request enters Better Auth, while the Better Auth hook remains a defense-in-depth check.
## Documentation
Remove `OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS` from:
- `packages/env/src/server.ts`
- `turbo.json`
- `.env.example`
- Docker and self-hosting docs
- Quickstart docs
Add `FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI` to the feature flag sections and env examples with a warning that it is only appropriate for trusted self-hosted deployments. The warning should call out that enabling it permits arbitrary OAuth redirect URIs and can enable phishing or token exfiltration if used on public or multi-tenant instances.
## Error Handling
Rejected safe-mode redirects continue to return the existing error shape:
- Better Auth hook: `BAD_REQUEST` with `redirect_uri is not allowed for dynamic client registration`.
- Server preflight: `400` with `invalid_redirect_uri`.
Unsafe mode only returns those errors when the redirect URI cannot be parsed as a URL or a non-string entry is supplied in `redirect_uris`.
## Testing
Update focused tests in the relevant packages:
- URL policy tests cover safe mode preserving current allowed and rejected cases.
- URL policy tests cover unsafe mode allowing custom schemes, private hosts, non-loopback `http://`, credentials, and fragments when the URI is parseable.
- Auth/server tests cover the env mock shape after removing `OAUTH_DYNAMIC_CLIENT_REDIRECT_HOSTS`.
- Documentation and env references no longer mention the removed variable.
Run focused validation after implementation:
```sh
pnpm --filter @reactive-resume/utils test -- src/url-security.node.test.ts
pnpm --filter server test -- src/http/auth.test.ts
pnpm --filter @reactive-resume/auth typecheck
pnpm --filter server typecheck
pnpm exec turbo boundaries
```
@@ -1,29 +0,0 @@
# Agent Snapshot Rollback Design
## Context
The AI Agent currently stores inverse JSON Patch operations for every applied resume patch. That lets the UI offer a revert action, but it rejects some valid JSON Patch operations because the server must be able to invert them before applying the patch.
## Goal
Use persisted resume snapshots for agent rollback so valid JSON Patch operations can be applied without first generating inverse operations.
## Design
Agent patch actions store the original JSON Patch operations for audit/debugging and a `snapshotData` copy of the resume data from immediately before the patch was applied. The database column is `snapshot_data`.
When `apply_resume_patch` runs, the server reads the current working resume, stores `resume.data` as `snapshotData`, applies the model-generated JSON Patch through the existing resume patch validator, and records the resulting `appliedUpdatedAt`.
The existing action revert endpoint becomes snapshot rollback. Rolling back an action restores that action's `snapshotData`, which means the resume returns to the state before that patch. If the selected action is older than the latest applied action, every applied patch action at or after the selected action is marked `rolled_back` so the chat remains auditable and the UI can show which actions were undone.
Rollback keeps the version guard. The restore is allowed only when the current resume version still matches the latest applied patch action for that resume/thread. If the builder or another process changed the resume after the latest agent patch, rollback marks the selected action `conflicted` and does not replace the resume JSON.
Existing rows that only have `inverse_operations` are legacy non-revertible actions after the migration. The migration removes `inverse_operations` and adds nullable `snapshot_data`.
## UI
The latest applied patch can be undone with the existing action button. Older applied patches can also be restored, but the label should make the destructive effect clear: rolling back to an older action discards that action and later applied agent patches. Actions with status `rolled_back` display as rolled back and cannot be rolled back again.
## Testing
Service tests cover storing `snapshotData`, restoring a snapshot, marking later applied actions as `rolled_back`, conflict handling, and rejecting legacy actions without `snapshotData`. Schema tests cover the `snapshotData` column replacing `inverseOperations`.
@@ -1,129 +0,0 @@
# Custom Styles Header Targets Design
## Context
Reactive Resume now stores user-defined custom styling as structured style rules in `metadata.styleRules`. The current rule system targets semantic section content and rich-text slots, then resolves those rules in `packages/pdf` through the shared section-style context.
The resume header is not currently part of that section-style context. Profile pictures, `basics.name`, `basics.headline`, and contact items are rendered directly inside each template header. That means users can style normal sections but cannot target the highest-visibility identity and contact content.
## Goals
- Make the profile picture targetable by Custom Styles.
- Make the resume title and subtitle targetable by Custom Styles.
- Make contact items targetable as a grouped v1 surface.
- Keep the feature inside the existing `metadata.styleRules` model.
- Preserve existing template header layouts and template-owned base styles.
- Keep contact styling grouped in v1 instead of targeting email, phone, location, website, or custom fields separately.
## Non-Goals
- Do not add per-contact-type targeting in v1.
- Do not expose picture source, upload, crop, or visibility settings through style rules.
- Do not redesign template headers or normalize every header into one layout.
- Do not add a second metadata object for header-specific custom styles.
- Do not make `sectionItem` targeting part of this work.
## Approved Approach
Extend the existing structured Style Rules system with a new header target and header-specific slots.
Add a new target scope:
- `header`
Add header slots:
- `picture`
- `title`
- `subtitle`
- `contactList`
- `contactItem`
- `contactText`
- `contactLink`
- `contactIcon`
The header target applies only to the resume header/basic-info area. Global rules can also apply to matching header slots, which lets users define broad defaults such as "all contact text red." Header-targeted rules override global header-slot rules.
## UI Behavior
The Custom Styles panel should add `Header` to the target scope selector.
Slot availability should depend on target scope:
- `Header`: show only header slots.
- `Section type` and `Specific section`: show section and rich-text slots only.
- `All sections`: show all semantic slot groups, including the header group, because global rules apply anywhere the selected slot exists.
Header labels should be user-facing and concrete:
- `Picture`
- `Title`
- `Subtitle`
- `Contact list`
- `Contact item`
- `Contact text`
- `Contact link`
- `Contact icon`
Applied rule labels should remain readable, for example `Header: Contact text` or `All sections: Contact text`.
## Rendering Design
Keep section rendering as-is with `SectionStyleProvider`.
Add a header/basic-info resolver path next to the section-style path. The resolver should use the same style intent translation and safety constraints as section slots, but it should resolve against header context instead of section context.
Template header elements should compose styles in this order:
1. Template defaults.
2. Global rules for the selected header slot.
3. Header-targeted rules for the selected header slot.
4. Renderer safety styles where applicable.
Each template keeps its current layout and structure. The integration only layers resolved custom styles onto existing elements:
- `picture`: the profile `Image`.
- `title`: `basics.name`.
- `subtitle`: `basics.headline`.
- `contactList`: the contact list container.
- `contactItem`: each contact item wrapper or row.
- `contactText`: text inside contact items.
- `contactLink`: linked contact wrappers such as email, phone, website, and linked custom fields.
- `contactIcon`: icons inside contact items.
Grouped contact styling means email, phone, location, website, and custom fields share the same contact slots. Templates with special wrapper structures, such as Rhyhorn separators, should keep those wrappers and apply the closest matching grouped slot.
## Data Flow
1. The web UI writes header rules into `resume.data.metadata.styleRules`.
2. The schema validates `header` targets and header slots.
3. PDF rendering resolves header slots through the shared style-rule resolver.
4. Template headers compose resolved styles with their existing styles.
5. Preview, export, and public PDF paths receive the behavior automatically because they all render from resume metadata.
## Testing
Add focused coverage in three layers:
- Schema tests:
- Accept `header` targets.
- Accept header slots.
- Reject unsupported slots and unsupported raw layout properties.
- Preserve grouped contact style rules in `metadata.styleRules`.
- PDF resolver tests:
- Resolve global header-slot rules.
- Resolve header-targeted rules.
- Let header-targeted rules override global header-slot rules.
- Ignore disabled header rules.
- Keep section rules from applying to header slots.
- Web UI tests:
- `Header` appears as a target scope.
- Header target limits slot options to header slots.
- Header rules can be created, updated, toggled, displayed, managed, and deleted.
- Applied rules display readable labels such as `Header: Contact text`.
Template rendering tests should focus on the common resolver/contact behavior and one or two representative templates rather than snapshotting every template header. The implementation still needs to wire the new slots into each template header.
## Open Decisions
No open decisions remain. Contact styling is grouped for v1, and the approved target model is a new `header` scope plus header-specific slots inside the existing `metadata.styleRules` system.
@@ -1,262 +0,0 @@
# E2E Tests Design
## Context
Reactive Resume is a pnpm/Turborepo monorepo with two deployable apps:
- `apps/web`: TanStack Start / React / Vite user interface.
- `apps/server`: Hono / Node.js server that owns API, auth, MCP, static uploads, OpenAPI, and production web serving.
The product is a resume builder. The highest-value browser journeys are:
1. Create an account and authenticate.
2. Create a resume from the dashboard.
3. Open the builder and edit resume basics.
4. Persist builder edits through autosave.
5. Export and import structured resume JSON.
6. Enable public sharing and view the resume as an anonymous visitor.
The repository currently has broad Vitest coverage but no Playwright or Cypress harness. GitHub Actions currently runs autofix/lint behavior on PRs and Docker image publishing on pushes/tags, but no PR-gated E2E workflow.
Context7 was requested for current framework guidance, but the configured Context7 quota was exhausted in this environment. The implementation plan should re-check current Playwright docs when Context7 access is available.
## Goals
- Add a working Playwright E2E setup.
- Run E2E tests against the production build path, not only Vite dev mode.
- Use ephemeral accounts and data for each run.
- Cover deterministic core UX flows on every PR.
- Keep CI runtime and flake risk low enough for a default PR gate.
- Leave room to add PDF, DOCX, OAuth, passkey, 2FA, and AI flows later without bloating the initial gate.
## Non-goals
- Do not add PDF or DOCX download validation to the initial PR gate.
- Do not automate OAuth, passkeys, 2FA, or password reset in the first suite.
- Do not include AI Agent, AI import, or resume analysis flows in the first suite.
- Do not add a cross-browser matrix initially.
- Do not assert pixel-perfect PDF/canvas rendering.
## Recommended approach
Use a root-level Playwright harness that runs Chromium against a production build:
1. CI installs dependencies and Playwright Chromium.
2. CI starts PostgreSQL.
3. CI sets test environment variables.
4. CI builds the app with `pnpm build`.
5. Playwright starts the production server with `pnpm start`.
6. E2E specs exercise browser flows against `APP_URL`.
Use hybrid fixtures:
- The auth smoke test registers and logs in through the browser UI.
- Non-auth specs create ephemeral users and authenticated browser state through test helpers.
- Resume setup can use helper APIs or direct database helpers when the setup itself is not the behavior under test.
- Each test uses unique data and cleans up its own ephemeral user.
This keeps the suite close to user reality while avoiding repeated slow setup in every test.
## File layout
Add:
- `playwright.config.ts`
- `tests/e2e/README.md`
- `tests/e2e/fixtures/test.ts`
- `tests/e2e/fixtures/auth.ts`
- `tests/e2e/fixtures/db.ts`
- `tests/e2e/fixtures/resume.ts`
- `tests/e2e/specs/auth.spec.ts`
- `tests/e2e/specs/resume-lifecycle.spec.ts`
- `tests/e2e/specs/json-export-import.spec.ts`
- `tests/e2e/specs/public-sharing.spec.ts`
- `.github/workflows/e2e.yml`
Update:
- root `package.json` scripts
- `turbo.json` tasks, if root scripts are routed through Turbo
- lockfile after adding Playwright
- contributing docs if a short root README is not enough
## Playwright configuration
The initial config should:
- Use Chromium only.
- Read `baseURL` from `APP_URL`, defaulting to `http://localhost:3000`.
- Use traces, screenshots, and videos on failure.
- Use a local-friendly reporter plus a CI reporter/artifact format.
- Start `pnpm start` through `webServer`.
- Reuse an existing local server outside CI when possible.
- Prefer role, label, and accessible-name locators.
- Add targeted `data-testid` attributes only when accessibility locators are not stable enough.
Recommended root scripts:
- `test:e2e`: run Playwright.
- `test:e2e:ui`: run Playwright UI mode.
- `test:e2e:ci`: run Playwright with CI reporter settings.
## Environment and infrastructure
Minimum E2E environment:
- `APP_URL=http://localhost:3000`
- `PORT=3000`
- `DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres`
- `AUTH_SECRET=<non-empty test secret>`
- `FLAG_DISABLE_SIGNUPS=false`
- `FLAG_DISABLE_EMAIL_AUTH=false`
- `FLAG_DISABLE_API_RATE_LIMIT=true`
- `LOCAL_STORAGE_PATH=<absolute temp path>`
S3, Redis, SMTP, and AI provider variables are not required for the initial deterministic suite.
PostgreSQL should be isolated for CI runs. The simplest PR workflow can use a GitHub Actions Postgres service container and a clean database per job. Local development can use `compose.dev.yml` to start Postgres.
## Ephemeral data strategy
Each worker/test should generate unique identities:
- Email: `e2e-<runId>-<worker>-<suffix>@example.test`
- Username: `e2e_<runId>_<worker>_<suffix>`
- Resume names/slugs prefixed with `e2e-`
Cleanup should delete the ephemeral user and rely on database cascade relationships for related resumes, sessions, accounts, API keys, and related records.
Use helper setup where it improves speed and stability:
- Create authenticated storage state for non-auth specs.
- Create seeded resumes for tests that are about builder/export/sharing behavior rather than resume creation.
- Keep one browser-driven auth spec to ensure registration/login still works end to end.
## Initial PR-gated specs
### Auth smoke
Flow:
1. Visit `/auth/register`.
2. Register a unique user through the UI.
3. Continue to `/dashboard`.
4. Log out.
5. Log in with the same credentials.
6. Assert the dashboard resumes page loads.
Purpose:
- Proves email/password auth, session cookies, redirects, and dashboard access work.
### Resume lifecycle
Flow:
1. Start authenticated as an ephemeral user.
2. Visit `/dashboard/resumes`.
3. Create a sample resume through the UI.
4. Open the resume in the builder.
5. Edit the basics name field.
6. Wait for autosave.
7. Reload the builder.
8. Assert the edited value persisted.
Purpose:
- Proves dashboard create, builder load, form editing, API update, and autosave persistence.
### JSON export and import
Flow:
1. Start authenticated with a sample resume.
2. Open the builder.
3. Export JSON.
4. Assert a JSON download is created and parseable.
5. Return to dashboard.
6. Import the downloaded JSON through the import dialog.
7. Assert the imported resume opens in the builder.
Purpose:
- Proves deterministic backup/restore without AI or binary rendering dependencies.
### Public sharing
Flow:
1. Start authenticated with a sample resume.
2. Open builder sharing settings.
3. Enable public access.
4. Read the generated public URL.
5. Open a fresh unauthenticated browser context.
6. Visit the public URL.
7. Assert the public resume viewer renders expected resume content.
Purpose:
- Proves sharing state updates, public routing, anonymous access, and public resume rendering.
## CI workflow
Add `.github/workflows/e2e.yml`:
- Trigger on `pull_request` and pushes to `main`.
- Use Node 24.
- Use pnpm via Corepack or `pnpm/action-setup`.
- Cache pnpm dependencies through `actions/setup-node`.
- Start PostgreSQL service.
- Install dependencies with `pnpm install --frozen-lockfile`.
- Install Playwright Chromium.
- Run `pnpm build`.
- Run `pnpm test:e2e:ci`.
- Upload Playwright reports, traces, screenshots, and videos on failure.
The workflow should avoid secrets. All test credentials should be generated during the run.
## Selector strategy
Prefer stable user-facing locators:
- Roles: buttons, links, dialogs, textboxes, comboboxes.
- Labels: form inputs and switches.
- URLs: route assertions after navigation.
Add `data-testid` only where necessary:
- Builder canvas/PDF viewer surfaces that lack accessible names.
- Download/import controls if file input access is otherwise too implementation-dependent.
- Toast-independent save-state assertions if no visible stable status exists.
Keep test IDs narrow and product-neutral.
## Reliability considerations
- Autosave currently debounces changes by 500ms. Tests should wait for persisted state through reload or API-visible state, not arbitrary sleeps.
- Public resume viewer uses browser PDF/canvas behavior. Assert meaningful content or viewer presence, not pixels.
- JSON export/import is deterministic and should be the first export/import loop.
- Disable API rate limiting in test env to avoid worker-order flakes.
- Pin locale to the default English path or use role/label selectors robust to translations where practical.
- Keep the initial suite serial only where shared worker state forces it; otherwise allow Playwright worker isolation.
## Future expansion
After the initial suite is stable:
1. Add PDF download validation as a separate optional or nightly job.
2. Add DOCX download validation if the PDF job proves stable.
3. Add password-protected public sharing.
4. Add dashboard management flows: duplicate, lock, delete, tag filtering, list/grid view.
5. Add settings flows: profile update, API key creation/deletion.
6. Add AI flows only with mocked providers or a deterministic local provider.
7. Add browser matrix only after the Chromium gate has low flake rates.
## Success criteria
- `pnpm test:e2e` runs locally against a built app and Postgres.
- `pnpm test:e2e:ci` runs in GitHub Actions on every PR.
- Tests create no persistent shared seed data.
- Tests clean up ephemeral users and related data.
- The initial suite covers auth, dashboard creation, builder autosave, JSON export/import, and public sharing.
- CI uploads useful artifacts for diagnosing failures.
@@ -1,94 +0,0 @@
# Applications Tracker — Roadmap & Status
**Status legend:** ✅ done · 🟡 in progress · ⬜ not started · 🧊 deferred (intentional, revisit when needed)
A job-application tracker built inside Reactive Resume. Each application points at the live
resume the user sent (`resumeId`), which is why it lives in-product rather than a generic
tracker. Built from the claude.ai/design prototype "Applications Tracker.dc.html".
Owner dirs: `packages/db/src/schema/applications.ts`, `packages/schema/src/applications/`,
`packages/api/src/features/applications/`, `apps/web/src/features/applications/`,
`apps/web/src/routes/dashboard/applications/`.
---
## Phase 0 — Core slice ✅ (shipped)
The working vertical slice: data model, CRUD, board, add/detail panels. Zero new deps.
- ✅ DB: `application` table (user FK cascade, `resumeId` FK set-null, JSONB `contacts`/`activity`, follow-up + AI-reservation columns). Migration `20260705090711_third_hercules`.
- ✅ Schema: `applicationStatusSchema`, `STAGES` (value/label/color), `contactSchema`, `activityEventSchema`, `aiMetadataSchema`.
- ✅ API: oRPC `applications.{list,getById,create,update,addNote,delete}``protectedProcedure`, `userId`-scoped via one `requireOwned`; `update` auto-logs stage-change activity.
- ✅ Web: sidebar nav item; `/dashboard/applications` route (empty state ↔ board).
- ✅ Board: dnd-kit drag across 6 fixed stages, optimistic move + rollback toast.
- ✅ Add slide-over: manual entry + link a live Reactive Resume; native date follow-up.
- ✅ Detail slide-over: key facts, stage stepper, linked resume, contacts, follow-up, activity timeline + add-note, archive/delete.
- ✅ Unit test: activity-logging path (`service.test.ts`). Typecheck / boundaries / biome clean.
**Known small gaps — now closed (✅):**
- ✅ Lingui messages extracted (`pnpm --filter web lingui:extract`) so the new `<Trans>`/`t` strings are translatable.
- ✅ Board caps rendered cards per column (`COLUMN_PAGE_SIZE = 50`) with a "Show N more" button, so a stage with hundreds of applications doesn't mount hundreds of draggable nodes. Server-side paging still unneeded (list payload is small).
- ✅ Contacts are editable from the Detail panel (`ContactsEditor`): add name/role/label, remove, persisted via API `update`'s existing `contacts` field.
---
## Phase 1 — Table view + Insights ✅ (shipped)
- ✅ **Table view** — paginated table (25/page), row selection + bulk actions (move stage, add tag, archive, delete). Added a wrapped `Checkbox` in `packages/ui`; hand-rolled table (no `@tanstack/react-table` dep). Board/Table/Insights toggle via URL `view` search param.
- ✅ **Insights view** — stat tiles, pipeline funnel (conversion per stage), source bars, and a shareable **funnel-flow SVG** with PNG export (canvas, no chart lib — kept the zero-dep property). Server aggregation `applications.stats` (per-stage/per-source counts); funnel/tiles derived client-side via `computeInsights()` (unit-tested).
- ✅ Tags: `tags text[]` column + filter UI + bulk "add tag" + `applications.tags` distinct list.
- ✅ Archived-toggle so archived rows can be reached and unarchived (closes the archive loop).
## Phase 2 — Campaigns + import + uploads ✅ (shipped)
- ✅ **Campaigns** — the `campaign` text field is now first-class: set on create (with a native `<datalist>` autocomplete of existing campaigns), filter on board/table, per-campaign Insights scoping, and an `applications.campaigns` distinct-with-counts endpoint. (Kept it a text field, not a table — grouping/filtering/insights work without the join-table overhead.)
- ✅ **CSV import**`Import CSV` opens a slide-over: paste rows or upload a `.csv`, a zero-dep parser (`csv.ts`, unit-tested) maps aliased headers (Company/Role/Stage/Salary/Source/Tags/…), previews recognized columns + ready/skipped counts, then bulk-creates via `applications.import` (max 500, each row gets a `created` activity event). Verified end-to-end in the browser.
- ✅ **Cover-letter upload**`coverLetterUrl`/`coverLetterName` columns; the detail panel's Documents section attaches a PDF via the existing `orpc.storage.uploadFile`, shows a download link, and supports removal.
---
## Phase 3 — AI agent integration ✅ (shipped, verified live)
All four `applications.ai.*` procedures are implemented (`packages/api/src/features/applications/ai.ts`), resolving the user's default provider via `aiProvidersService.getDefaultRunnable``getModel``generateText`, with tolerant JSON parsing. Rate-limited via `aiRequestRateLimit`.
- ✅ **Job-posting autofill** — paste a URL → server fetches + strips the page → LLM extracts company/role/location/salary/jobDescription → prefills the Add form. (`jobDescription` is now a user-editable field so it persists for match/tailor.)
- ✅ **Resume↔job match score** — scores the linked resume vs the job description, persists `matchScore` + gaps in `aiMetadata`. Rendered as a **fit ring** in the redesigned copilot.
- ✅ **Tailor resume** — one-shot: duplicates the linked resume, regenerates a job-tailored `summary`, links the copy to the application, logs a timeline event. (No agent/REDIS dependency.)
- ✅ **Draft cover letter / follow-up** — generates from application + resume context; shown inline with copy/dismiss.
- ✅ **UX**: the AI section was redesigned into an **"Application Copilot"** module — a resume-fit ring (band-colored) as the signature element + a capability menu (icon + title + description) instead of plain buttons.
Verified live against a real OpenAI provider (autofill, match score, tailor resume).
### Extra polish shipped alongside (from review + user requests)
- ✅ **Edit an application** — the Add sheet became `ApplicationFormSheet`, edit-capable; reachable from the detail-panel "Edit" button and the context menu.
- ✅ **Context menus** — kebab "⋯" on board cards (hover) and table rows: Edit / Move to ▸ / Archive / Delete (`application-actions-menu.tsx`).
- ✅ Review fixes: bulk stage-moves log activity; single-statement note append; "Mark rejected" + "no results" states; CSV BOM strip + 500-row cap + file-input reset.
### ✅ Cover-letter upload (re-enabled)
Un-deferred. The blocker was `storage/service.ts` hardcoding a `.jpeg` key for every upload, so a PDF was read back as an image. Fixed by deriving the key extension from the content type the router already passes (`buildFileKey` + `EXTENSION_BY_CONTENT_TYPE`) — images stay `.jpeg` (unchanged for avatars), PDFs get `.pdf` and the static handler's existing `.pdf` force-download path serves them correctly. Re-added `coverLetterUrl`/`coverLetterName` columns (migration `20260705125353_yielding_star_brand`), DTO editable fields, and a Documents-section upload/download/remove in the detail sheet (PDF-only, best-effort `storage.deleteFile` on remove). Link-to-Reactive-Resume remains the primary document feature; the cover letter sits alongside it.
---
## (historical) Phase 3 plan — reservations in place, no model wired yet
Reservations already shipped: schema fields (`sourceUrl`, `jobDescription`, `matchScore`,
`aiMetadata`) and stubbed `applications.ai.*` procedures that throw `NOT_IMPLEMENTED`
(`packages/api/src/features/applications/ai.ts`). Each stub below just needs its handler
implemented against `@reactive-resume/ai` and the existing agent/thread tables
(`agentThread`, `agentAction` in `packages/db/src/schema/agent.ts`).
- ⬜ **Job-posting autofill** (`applications.ai.autofill`) — fetch `sourceUrl` (or accept pasted text) → LLM extracts company/role/location/salary/jobDescription → return a prefill object for the Add form; persist raw extraction in `aiMetadata`. UI: enable the disabled "Auto-fill" button in `add-application-sheet.tsx`.
- ⬜ **Resume ↔ job match score** (`applications.ai.matchScore`) — compare the linked resume's data against `jobDescription` → write `matchScore` (0100) + a gap list into `aiMetadata`. UI: surface a score badge on the card + a gaps section in the Detail panel.
- ⬜ **Tailor resume for this job** (`applications.ai.tailorResume`) — spawn an agent thread that duplicates the linked resume and edits it for the posting (reuse the agent JSON-patch pipeline); link the new `resumeId` back to the application and log a timeline event.
- ⬜ **Cover-letter / follow-up drafting** (`applications.ai.draftMessage`) — generate a cover letter or recruiter follow-up from application + resume + contact context. UI: the disabled "AI actions" block in `application-detail-sheet.tsx`.
- ⬜ **Rate-limiting & provider check** — reuse `aiRequestRateLimit` (already exists) and gate on a configured AI provider (`aiProviders` table) before calling any of the above.
**Suggested order:** autofill (highest user value, self-contained) → match score → draft
message → tailor resume (most complex, depends on the agent pipeline).
---
## Verification (each phase)
- `pnpm --filter @reactive-resume/api test` + `typecheck`, `pnpm --filter web typecheck`, `pnpm exec turbo boundaries`, `pnpm check`.
- DB changes: `dotenvx run -f .env.local -- pnpm db:generate` → review SQL → `pnpm db:migrate`.
- Manual: `dotenvx run -f .env.local -- pnpm dev` (:3000) → exercise the new surface end-to-end.
@@ -1,215 +0,0 @@
# Application Tracker REST and MCP Parity
## Status
Approved design for implementation planning. Campaign tracking is out of scope because the current app, database schema, changelog, guides, and tests do not ship a campaign field or campaign endpoint.
## Goal
Make every shipped Application Tracker capability available outside the web UI through:
- the public REST/OpenAPI surface under `/api/openapi`;
- Reactive Resume MCP tools for agent-only workflows;
- the bundled `resume-builder` skill, so agents know the application tracker tools exist.
The result should let a user track applications through an MCP client alone: create records, import existing rows, move stages, log notes, manage contacts and follow-ups, attach sent documents, run AI copilot actions, and inspect pipeline health.
## Current Shipped Capabilities
The current application tracker supports:
- application records with company, role, location, salary, source, source URL, job description, notes, tags, status, archive state, linked resume, sent resume PDF, cover-letter PDF, contacts, follow-up date/note, applied date, and activity timeline;
- fixed stages: `saved`, `applied`, `screening`, `interview`, `offer`, `rejected`;
- create, edit, archive/unarchive, mark rejected, move stage, delete;
- board, table, search, sort, tag filter, archived toggle, and command-palette open/create shortcuts;
- bulk table actions: move stage, add tag, archive, delete;
- CSV import with header mapping and a 500-row cap;
- insights from aggregate stage/source counts plus client-derived weekly application velocity;
- timeline notes and automatic created/stage activity entries;
- contacts embedded on each application;
- Application Copilot actions: job-posting autofill, resume match score, tailored resume copy, cover-letter draft, follow-up draft;
- PDF upload/remove for resume file and cover letter through the generic storage route.
## Existing API Coverage
The app already routes most behavior through `packages/api/src/features/applications`:
- `list`, `getById`, `create`, `import`, `update`, `addNote`, `delete`;
- `bulkUpdate`, `bulkDelete`, `stats`, `tags`;
- `ai.autofill`, `ai.matchScore`, `ai.draftMessage`, `ai.tailorResume`.
These procedures are already authenticated and user-scoped through `protectedProcedure` and `applicationService`. The implementation should reuse them instead of adding a parallel controller or new business layer.
## REST Design
Keep the existing application procedures and improve parity with the public OpenAPI surface.
### Public Application Endpoints
Existing endpoints remain:
- `GET /applications`
- `GET /applications/{id}`
- `POST /applications`
- `POST /applications/import`
- `PUT /applications/{id}`
- `POST /applications/{id}/notes`
- `DELETE /applications/{id}`
- `POST /applications/bulk-update`
- `POST /applications/bulk-delete`
- `GET /applications/stats`
- `GET /applications/tags`
- `POST /applications/ai/autofill`
- `POST /applications/{id}/ai/match-score`
- `POST /applications/{id}/ai/draft-message`
- `POST /applications/{id}/ai/tailor-resume`
Add public document endpoints under the Applications tag:
- `POST /applications/{id}/documents/{kind}` where `kind` is `resume` or `cover-letter`.
- Accept a PDF file via OpenAPI file upload.
- Store through the existing storage service.
- Update only the matching application fields:
- resume: `resumeFileUrl`, `resumeFileName`;
- cover letter: `coverLetterUrl`, `coverLetterName`.
- Return the updated application.
- `DELETE /applications/{id}/documents/{kind}`.
- Delete the owned storage object best-effort.
- Clear only the matching application fields.
- Return the updated application.
This makes the document upload/remove UI available through public REST without exposing the generic storage route, which remains tagged `Internal` because it also serves profile-picture use cases.
### REST Behavior Details
- Use existing ownership checks: every application mutation must be scoped by `userId`.
- Reject non-PDF document uploads, matching the UI.
- Keep file size at the existing storage limit: 10MB.
- Preserve existing delete cleanup for uploaded documents when an application is deleted.
- Do not add server-side search/sort endpoints for board/table parity. The UI derives search and sort from `list`, and external clients can do the same. `list` already exposes status, tags, and archive filtering.
- Do not add campaign fields or endpoints.
- Regenerate or update `docs/spec.json` so the public API reference includes all application endpoints.
## MCP Design
Add application tools to `packages/mcp` using the existing metadata pattern:
- add names to `MCP_TOOL_NAME`;
- add schemas/descriptions to `TOOL_META`;
- add behavior hints to `TOOL_ANNOTATIONS`;
- register handlers in `registerTools`;
- let `buildMcpServerCard` derive tool entries from `TOOL_META`;
- add focused tests so tool registration, annotations, and server card stay synchronized.
All MCP handlers should call the injected in-process oRPC `RouterClient`. They should not import database code or reimplement ownership checks.
### MCP Tools
Read/discovery:
- `list_applications`: list applications, with optional `status`, `tags`, and `includeArchived`.
- `read_application`: read one full application by ID.
- `list_application_tags`: list distinct tags.
- `get_application_stats`: return aggregate stage/source counts.
Write:
- `create_application`: create an application.
- `update_application`: update editable fields, including stage, archive state, contacts, follow-up, tags, linked resume, source URL, job description, notes, and document URLs.
- `add_application_note`: append a timeline note.
- `delete_application`: permanently delete one application.
- `bulk_update_applications`: move, archive/unarchive, or add tags to multiple applications.
- `bulk_delete_applications`: permanently delete multiple applications.
- `import_applications`: bulk-create parsed application rows, matching the REST `import` shape.
- `attach_application_document`: attach a sent resume or cover letter PDF.
- `remove_application_document`: remove a sent resume or cover letter PDF.
AI:
- `autofill_application_from_job`: extract company, role, location, salary, and job description from a job posting URL or pasted job description.
- `score_application_match`: score the linked resume against the job description and persist match metadata.
- `tailor_resume_for_application`: create and link a tailored resume copy.
- `draft_application_message`: draft either a cover letter or follow-up message.
### MCP Attachment Input
`attach_application_document` should support agent-only use. The tool should accept:
- `id`;
- `kind`: `resume` or `cover-letter`;
- `fileName`;
- `contentType`: `application/pdf`;
- `dataBase64`: PDF bytes encoded as base64.
The handler can decode the base64 and call the same shared application-document service used by the public REST file upload. This avoids forcing MCP clients to provide browser `File` objects while still giving agents the same document capability as the UI.
### MCP Output Shape
Prefer JSON text outputs for data-bearing tools. Human-readable success strings are fine for destructive/simple tools only when no structured data is useful. For create/update/read/list/stats/AI tools, return JSON so agents can chain calls reliably.
### Tool Annotations
- Read tools: read-only, idempotent, non-destructive.
- AI generation tools:
- `autofill_application_from_job` is read-only but non-idempotent if it fetches a URL or calls AI.
- `draft_application_message` is read-only but non-idempotent.
- `score_application_match` and `tailor_resume_for_application` are write, non-idempotent.
- Delete tools are destructive.
- `update_application`, `bulk_update_applications`, and document remove are write/idempotent when the same input repeats, except tag append remains effectively idempotent because the service de-duplicates tags.
- `create_application`, `import_applications`, note append, and document attach are write/non-idempotent.
- `openWorldHint` should be `false` for closed account data tools and `true` only for job-posting autofill because it can fetch an external URL.
## Skill Update
Update `skills/resume-builder/SKILL.md` in place.
Add concise guidance that Reactive Resume MCP can manage applications as well as resumes. The skill should tell agents:
- use application tools when the user wants to track job applications, import a spreadsheet, move an opportunity through stages, add notes/contacts/follow-ups, attach sent documents, or use Application Copilot;
- use `list_applications` before acting on existing records;
- use `create_application` or `import_applications` for new records;
- use `tailor_resume_for_application` after a linked resume and job description exist;
- review AI-generated cover letters and follow-ups before sending.
Do not turn the skill into a full API reference. Keep it short and point agents at MCP tools by name.
## Documentation Updates
Update:
- `docs/guides/using-the-mcp-server.mdx`: add Application Tracker tools, examples, and troubleshooting notes.
- `docs/use-cases/api-mcp-resume-automation.mdx`: expand scope from resume-only automation to resume plus application tracking.
- `docs/spec.json`: refresh the public OpenAPI spec so docs show application routes.
The existing job application and CSV guides already describe the UI behavior accurately and should not need broad rewrites.
## Testing Plan
Focused tests:
- API/service tests for attaching/removing resume and cover-letter documents, including ownership and storage cleanup.
- DTO/router tests for application document upload constraints if the route logic is not already covered through service tests.
- MCP tests that:
- every `MCP_TOOL_NAME` has metadata and annotations;
- server card includes the new tools;
- `registerTools` registers application tools;
- one read handler and one write handler call the expected oRPC client procedure;
- base64 document attachment rejects non-PDF input.
Validation commands:
- `pnpm --filter @reactive-resume/api test`
- `pnpm --filter @reactive-resume/mcp test`
- `pnpm --filter @reactive-resume/api typecheck`
- `pnpm --filter @reactive-resume/mcp typecheck`
- `pnpm exec turbo boundaries`
- a focused Biome check on touched files; use a non-mutating check first unless formatting edits are intentionally being applied.
## Non-Goals
- Custom stages.
- Campaign tracking.
- Server-side board/search/sort endpoints.
- A standalone application schema resource in MCP.
- New dependencies.
- Refactoring the application tracker UI.
@@ -1,323 +0,0 @@
# Monorepo Architecture Reorg Worklog
Append-only log for implementation, validation, and delegation notes.
> **Status note:** This file is chronological. Earlier entries may mention paths that were moved by later tasks. Use the latest handoff plus `AGENTS.md` and `docs/contributing/architecture.mdx` for current-state guidance.
## 2026-05-14
- Started implementation on branch `feat/explore-hono-orpc-migration`.
- Initial dirty files existed before architecture implementation:
- `apps/server/package.json`
- `package.json`
- `packages/api/package.json`
- `packages/env/package.json`
- `packages/utils/package.json`
- `pnpm-lock.yaml`
- Created coordination artifacts:
- `docs/superpowers/plans/2026-05-14-monorepo-architecture-reorg.md`
- `docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md`
- `docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md`
- Task 1 completed:
- Created `packages/resume` as `@reactive-resume/resume`.
- Moved `packages/utils/src/resume/patch.ts` to `packages/resume/src/patch.ts`.
- Moved `packages/utils/src/network-icons.ts` to `packages/resume/src/icons.ts`.
- Moved the patch and network icon tests into `packages/resume/src`.
- Updated all old `@reactive-resume/utils/resume/patch` and `@reactive-resume/utils/network-icons` imports to `@reactive-resume/resume/patch` and `@reactive-resume/resume/icons`.
- Updated package manifests and `pnpm-lock.yaml` for the new package and consumer dependency edges.
- Removed `fast-json-patch` from `@reactive-resume/utils` and `@reactive-resume/ai`; it now belongs to `@reactive-resume/resume`.
- Did not remove `@reactive-resume/schema` from `@reactive-resume/utils` because DOCX files still import schema and Task 2 owns that extraction.
- Validation for Task 1:
- Initial `pnpm --filter @reactive-resume/resume test` failed before Vitest because pnpm wanted to refresh modules in a non-TTY.
- Retried with `CI=true`; it failed because the new workspace package was not yet represented in the frozen lockfile.
- Ran `pnpm install --lockfile-only --no-frozen-lockfile`; completed with no downloads.
- A later test run triggered pnpm dependency status install, but `node_modules` had been purged and registry access was blocked by sandbox DNS (`ENOTFOUND` / `fetch failed`).
- Ran `pnpm install --no-frozen-lockfile` with network approval to restore `node_modules`; completed.
- `pnpm --filter @reactive-resume/resume test` passed: 2 files, 43 tests.
- `pnpm --filter @reactive-resume/resume typecheck` passed.
- `pnpm --filter @reactive-resume/ai typecheck` passed.
- `pnpm --filter @reactive-resume/api typecheck` passed.
- `pnpm --filter web typecheck` passed.
- Additional direct-consumer checks passed: `pnpm --filter @reactive-resume/db typecheck`, `pnpm --filter @reactive-resume/import typecheck`, and `pnpm --filter @reactive-resume/utils typecheck`.
- Focused `pnpm exec biome check ...` initially found import-order/type-import issues; `pnpm exec biome check --write ...` fixed 10 touched files.
- Focused `pnpm exec biome check ...` passed afterward on the touched package/source/manifests.
- Task 1 review correction:
- Spec review found `packages/db` had a type-only manifest dependency on `@reactive-resume/resume`.
- Replaced the DB import with a local structural `StoredJsonPatchOperation` type for JSONB column annotations in `packages/db/src/schema/agent.ts`.
- Removed `@reactive-resume/resume` from `packages/db/package.json` and `pnpm-lock.yaml`.
- Task 1 review validation:
- `pnpm --filter @reactive-resume/db typecheck` passed after the DB boundary correction.
- `pnpm --filter @reactive-resume/api typecheck` passed.
- `pnpm --filter web typecheck` passed.
- `pnpm --filter @reactive-resume/resume test` passed: 2 files, 43 tests.
- `pnpm --filter @reactive-resume/resume typecheck` passed.
- Code-quality review noted unrelated dependency bumps in package manifests; those files were already dirty before this architecture work and were not treated as part of Task 1.
- Task 2 completed:
- Created `packages/docx` as `@reactive-resume/docx` with source-consumed root export.
- Moved DOCX implementation/tests from `packages/utils/src/resume/docx` into `packages/docx/src`.
- Updated web DOCX callers to import `buildDocx` from `@reactive-resume/docx`.
- Removed the old `@reactive-resume/utils/resume/docx` export.
- Removed `docx` and `@reactive-resume/schema` from `@reactive-resume/utils`.
- Added `@reactive-resume/docx` as a web dependency.
- Task 2 validation:
- `pnpm --filter @reactive-resume/docx test` passed: 5 files, 46 tests.
- `pnpm --filter @reactive-resume/docx typecheck` passed.
- `pnpm --filter @reactive-resume/utils typecheck` passed.
- `pnpm --filter web typecheck` passed.
- Spec review found only stale coordination text; plan and handoff were corrected.
- Task 2 completed:
- Created `packages/docx` as `@reactive-resume/docx` with source-consumed root export `"." -> "./src/index.ts"`.
- Moved `packages/utils/src/resume/docx/*` to `packages/docx/src/*`, keeping the implementation and tests colocated.
- Updated builder DOCX export callers and the export-section test mock from `@reactive-resume/utils/resume/docx` to `@reactive-resume/docx`.
- Removed the old `@reactive-resume/utils` `./resume/docx` export.
- Removed `docx` and `@reactive-resume/schema` from `@reactive-resume/utils`; the new DOCX package owns those dependencies and depends on `@reactive-resume/utils` only for shared color parsing.
- Added `@reactive-resume/docx` as a web dependency and refreshed `pnpm-lock.yaml`.
- Validation for Task 2:
- Initial `pnpm --filter @reactive-resume/docx test` failed on pnpm's non-TTY dependency-status install guard.
- `CI=true pnpm --filter @reactive-resume/docx test` then failed because sandbox DNS blocked registry fetches while pnpm recreated `node_modules`.
- Retried `CI=true pnpm --filter @reactive-resume/docx test` with network approval; passed: 5 files, 46 tests.
- `pnpm --filter @reactive-resume/docx typecheck` passed.
- `pnpm --filter @reactive-resume/utils typecheck` passed.
- `pnpm --filter web typecheck` passed.
- `pnpm --filter web test -- 'src/routes/builder/$resumeId/-sidebar/right/sections/export.test.tsx'` passed; Vitest reported 78 files and 430 tests.
- Focused `pnpm exec biome check --write ...` passed on the moved DOCX package, touched web callers, and package manifests; no fixes were applied.
- Task 3 in progress:
- Added `packages/pdf/src/browser.tsx` with `createResumePdfBlob({ data, template, resolveSectionTitle })`.
- Added `packages/pdf/src/server.tsx` with `createResumePdfFile({ data, filename, template, resolveSectionTitle })`.
- Added `@reactive-resume/pdf/browser` and `@reactive-resume/pdf/server` package exports.
- Kept Lingui locale loading in `apps/web/src/libs/resume/pdf-document.tsx`; the web wrapper now resolves localized section titles and delegates blob generation to `@reactive-resume/pdf/browser`.
- Updated `apps/web/src/libs/resume/pdf-document.server.tsx` to delegate file generation to `@reactive-resume/pdf/server` after resolving localized section titles.
- Updated `apps/web/src/components/resume/preview.browser.tsx` so the PDF.js canvas viewer remains in web but PDF blob generation goes through the web-local wrapper.
- Updated `apps/server/src/handlers/resume-pdf.tsx` to reuse `@reactive-resume/pdf/server` and preserve the existing `File` response body flow.
- Added package helper tests for browser/server generation adapters.
- Task 3 validation so far:
- Red test: `pnpm --filter @reactive-resume/pdf test -- src/browser.test.tsx src/server.test.tsx` failed because `packages/pdf/src/browser.tsx` and `packages/pdf/src/server.tsx` did not exist.
- Interim implementation test exposed Vitest/Rolldown JSX transform limits for newly imported package TSX helpers; helpers now use `createElement` while keeping requested `.tsx` filenames.
- `pnpm --filter @reactive-resume/pdf test -- src/browser.test.tsx src/server.test.tsx` passed; Vitest reported 17 files and 139 tests.
- Initial focused web preview test failed because the test still mocked the old `useLocalizedResumeDocument` generation path.
- Updated `apps/web/src/components/resume/preview.browser.test.tsx` to mock/assert `createResumePdfBlob`.
- `pnpm --filter web test -- src/components/resume/preview.browser.test.tsx` passed; Vitest reported 78 files and 430 tests.
- `pnpm --filter web test -- 'src/routes/builder/$resumeId/-sidebar/right/sections/export.test.tsx' 'src/routes/$username/-components/public-resume.test.tsx' 'src/routes/$username/-components/pdf-viewer.test.tsx'` passed; Vitest reported 78 files and 430 tests.
- Task 4 completed:
- Created `packages/mcp` as `@reactive-resume/mcp` with source-consumed exports for the compact public surface and direct server-card/tool/prompt/resource subpaths.
- Moved MCP helper implementation and tests from `apps/web/src/routes/mcp/-helpers` into `packages/mcp/src`, then removed the empty web MCP helper route directory.
- Updated `apps/server/src/handlers/mcp.ts` and `apps/server/src/handlers/metadata.ts` to import from `@reactive-resume/mcp`, removing the app-to-app source imports from `apps/server` into `apps/web`.
- Preserved in-process MCP execution through the injected oRPC `RouterClient`; no HTTP RPC calls were introduced inside the server process.
- Renamed MCP tool values to canonical unprefixed snake_case names: `list_resumes`, `list_resume_tags`, `read_resume`, `get_resume_analysis`, `create_resume`, `import_resume`, `duplicate_resume`, `apply_resume_patch`, `update_resume`, `delete_resume`, `lock_resume`, `unlock_resume`, and `get_resume_statistics`.
- Updated prompts, server instructions, server-card metadata, and tests to use the canonical names and removed `reactive_resume_*` aliases/instructions.
- Added `packages/ai/src/tools/resume-tool-contracts.ts` with the shared JSON Patch operations contract and reused it from `packages/ai/src/tools/patch-resume.ts` and MCP patch schemas.
- Updated package manifests and `pnpm-lock.yaml`; `web` no longer owns `@modelcontextprotocol/sdk`, and `server` now depends on `@reactive-resume/mcp`.
- Validation for Task 4:
- Initial `pnpm --filter @reactive-resume/mcp test` reported no matching package before creation.
- After package creation, `pnpm --filter @reactive-resume/mcp test` hit pnpm's non-TTY dependency-status install guard.
- `CI=true pnpm --filter @reactive-resume/mcp test` then failed with a frozen-lockfile mismatch after moving dependencies.
- Ran `pnpm install --lockfile-only --no-frozen-lockfile`; completed.
- A later `CI=true pnpm --filter @reactive-resume/mcp test` failed because sandbox DNS blocked registry fetches while pnpm restored `node_modules`.
- Retried `CI=true pnpm --filter @reactive-resume/mcp test` with network approval; passed: 4 files, 29 tests.
- `pnpm --filter @reactive-resume/mcp typecheck` initially failed because the package type graph reaches API/auth TSX and tests had optional text access; fixed by enabling JSX in the package tsconfig and narrowing test content access.
- Final validation commands passed: `pnpm --filter @reactive-resume/mcp test`, `pnpm --filter @reactive-resume/mcp typecheck`, `pnpm --filter server typecheck`, `pnpm --filter @reactive-resume/ai typecheck`, focused `pnpm exec biome check ...`, and `rg -n "\\.\\./\\.\\./\\.\\./web/src|apps/web/src|web/src/routes/mcp" apps/server/src packages/mcp/src`.
- Initial final validation found `pnpm exec biome check ...` import/format issues in touched PDF/web files and type errors around the React element type passed into `pdf(...)` and `renderToBuffer(...)`.
- Added narrow render-boundary casts using `Parameters<typeof pdf>[0]` and `Parameters<typeof renderToBuffer>[0]`.
- Ran `pnpm exec biome check --write ...`; Biome fixed 4 touched files.
- `pnpm --filter @reactive-resume/pdf test` passed: 17 files, 139 tests.
- `pnpm --filter @reactive-resume/pdf typecheck` passed.
- `pnpm --filter web typecheck` passed.
- `pnpm --filter server typecheck` passed.
- `pnpm exec biome check packages/pdf/src/browser.tsx packages/pdf/src/server.tsx packages/pdf/src/browser.test.tsx packages/pdf/src/server.test.tsx packages/pdf/package.json apps/web/src/libs/resume/pdf-document.tsx apps/web/src/libs/resume/pdf-document.server.tsx apps/web/src/components/resume/preview.browser.tsx apps/web/src/components/resume/preview.browser.test.tsx apps/server/src/handlers/resume-pdf.tsx docs/superpowers/plans/2026-05-14-monorepo-architecture-reorg.md docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md` passed.
- `pnpm --filter web test -- src/components/resume/preview.browser.test.tsx` passed; Vitest reported 78 files and 430 tests.
- `pnpm --filter web test -- 'src/routes/builder/$resumeId/-sidebar/right/sections/export.test.tsx' 'src/routes/$username/-components/public-resume.test.tsx' 'src/routes/$username/-components/pdf-viewer.test.tsx'` passed; Vitest reported 78 files and 430 tests.
- Task 4 review correction:
- Spec review found stale MCP guide references to removed prefixed tool names and the unavailable `tailor_resume` prompt.
- Updated `docs/guides/using-the-mcp-server.mdx` to document canonical tool names such as `list_resumes`, `read_resume`, and `apply_resume_patch`, and removed `tailor_resume`.
- Removed the last code-side literal reference to the old prefixed tool-name family from `packages/mcp/src/tool-annotations.test.ts`.
- Re-ran `rg "reactive_resume_|tailor_resume|web/src/routes/mcp|apps/web/src|\\.\\./\\.\\./\\.\\./web" apps/server packages/mcp packages/ai/src docs/guides/using-the-mcp-server.mdx -n`; no matches.
- Re-ran `pnpm --filter @reactive-resume/mcp test`, `pnpm --filter @reactive-resume/mcp typecheck`, `pnpm --filter server typecheck`, `pnpm --filter @reactive-resume/ai typecheck`, and focused `pnpm exec biome check ...`; all passed.
- Task 5 review correction:
- Spec review found stale root project guidance that still pointed API work at `packages/api/src/routers/*` and `packages/api/src/services/*`.
- Updated `AGENTS.md` so the normative guidance now points API work at `packages/api/src/features/*` and documents the new `resume`, `docx`, `pdf`, and `mcp` package ownership boundaries.
- Re-ran `pnpm --filter @reactive-resume/api test`: 19 files, 155 tests passed.
- Re-ran `pnpm --filter @reactive-resume/api typecheck`, `pnpm --filter server typecheck`, and `pnpm --filter web typecheck`; all passed.
- Re-ran focused `pnpm exec biome check ...` on `AGENTS.md`, API/server/web touchpoints, and coordination docs; passed.
- Task 7 slice 1 review correction:
- Spec review found the moved public resume route missing its expected `ssr: "data-only"` setting and the builder preview route missing `ssr: false`.
- Restored `ssr: "data-only"` in `apps/web/src/routes/$username/$slug.tsx`.
- Restored `ssr: false` in `apps/web/src/routes/builder/$resumeId/index.tsx`.
- Updated `AGENTS.md` and the handoff notes to point browser-only resume preview/public viewer code at `apps/web/src/features/resume/*` instead of the removed `components/resume` and `libs/resume` paths.
- Task 5 completed:
- Moved API routers and service/helpers from the old technical-layer folders into `packages/api/src/features/*`.
- Agent is now feature-owned under `features/agent`, with procedure modules for `threads`, `messages`, `attachments`, and `actions`, run-state in `runs`, tool construction in `tools`, and remaining shared runtime orchestration in `service.ts`.
- Finer-grained follow-up: `features/agent/service.ts` still contains shared thread/message/action orchestration because the run lifecycle, message persistence, attachment linking, and patch transaction helpers are tightly coupled; splitting that service body further should be a dedicated follow-up with behavior-specific tests.
- Resume is now feature-owned under `features/resume`, with procedure modules for `crud`, `tags`, `statistics`, `analysis`, `event-router`, `sharing`, and `export`; access helpers and event publication moved under the same feature.
- Finer-grained follow-up: `features/resume/service.ts` remains the DB-backed facade for shared transaction helpers, update notifications, access/statistics coupling, and storage cleanup. The public procedure surface is capability-split, and further DB-service extraction should preserve the existing transaction and event behavior.
- Moved the authenticated PDF download procedure from `apps/server/src/handlers/resume-pdf.tsx` into `packages/api/src/features/resume/export.ts`; it now calls `@reactive-resume/pdf/server`.
- Removed the old API package `./services/*` and `./helpers/*` wildcard exports.
- Added explicit API runtime/type exports for `./features/storage`, `./features/resume`, `./features/resume/export`, and `./features/flags`.
- Updated `apps/server` to import storage/PDF runtime surfaces from explicit API feature exports.
- Updated `apps/web` to keep API imports type-only, including the `FeatureFlags` type from `@reactive-resume/api/features/flags`.
- Added `@reactive-resume/pdf` as an API package dependency and refreshed `pnpm-lock.yaml`.
- Validation for Task 5:
- Initial `pnpm --filter @reactive-resume/api typecheck` failed because pnpm attempted a non-TTY dependency-status install after package metadata changes.
- Retried with `CI=true`; sandbox DNS blocked registry fetches while rebuilding `node_modules`.
- Retried `CI=true pnpm --filter @reactive-resume/api typecheck` with network approval; dependency restoration completed and the first compiler pass found moved import paths that needed correction.
- `pnpm --filter @reactive-resume/api test` initially failed because the moved agent service test mocked the new `./service` module instead of its relocated AI/resume dependencies; fixed the mocks.
- Final focused validations passed: `pnpm --filter @reactive-resume/api test`, `pnpm --filter @reactive-resume/api typecheck`, `pnpm --filter server typecheck`, `pnpm --filter web typecheck`, and `pnpm --filter @reactive-resume/mcp typecheck`.
- Focused Biome check initially reported import-order/format issues; `pnpm exec biome check --write ...` fixed 7 touched API files.
- Re-ran focused Biome check after the write pass; it passed.
- Repo scans passed for no remaining `@reactive-resume/api/services/*` or `@reactive-resume/api/helpers/*` imports outside `packages/api`, no internal `../services` or `../helpers` imports, and no `./services/*` or `./helpers/*` wildcard exports in `packages/api/package.json`.
- Task 6 completed:
- Reorganized `apps/server/src` into runtime adapter areas: `http`, `rpc`, `mcp`, `openapi`, `static`, and `startup`.
- Moved route registration into `apps/server/src/http/app.ts` and kept `apps/server/src/index.ts` as the process entrypoint that runs startup checks and starts Hono.
- Moved common response/cookie helpers to `http/headers.ts`, auth and health HTTP handlers to `http`, oRPC request handling and locale extraction to `rpc`, MCP auth/server setup/transport handling to `mcp`, OpenAPI and well-known metadata to `openapi`, uploads/schema/web-dist serving to `static`, and migrations/local-storage lifecycle checks to `startup`.
- Kept the public route order and paths from the previous `index.ts`, including serving `apps/web/dist`.
- Preserved explicit API runtime imports only: `@reactive-resume/api/routers`, `@reactive-resume/api/features/storage`, and `@reactive-resume/api/features/resume/export`.
- Validation for Task 6:
- Baseline before moving files: `pnpm --filter server test` passed: 1 file, 1 test.
- Interim validation after moving files: `pnpm --filter server typecheck` passed.
- Interim validation after moving files: `pnpm --filter server test` passed: 1 file, 1 test.
- Final `pnpm --filter server test` passed: 1 file, 1 test.
- Final `pnpm --filter server typecheck` passed.
- Final `pnpm --filter @reactive-resume/api typecheck` passed.
- Focused `pnpm exec biome check apps/server/src docs/superpowers/plans/2026-05-14-monorepo-architecture-reorg.md docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md` initially found import-order issues in `apps/server/src/http/app.ts` and `apps/server/src/mcp/handler.ts`; after manual import ordering fixes, the same command passed.
- `rg -n "apps/web/src|from ['\"][^'\"]*web/src|@reactive-resume/api/services/" apps/server/src` returned no matches.
- `rg -n "@reactive-resume/api/services/" apps/server packages/api apps/web packages` returned no matches.
- `rg -n "from ['\"][^'\"]*apps/web/src|from ['\"][^'\"]*web/src|apps/web/src" apps/server` returned no matches.
- Task 7 slice 1 completed:
- Moved `apps/web/src/components/resume/builder-resume-draft.ts` to `apps/web/src/features/resume/builder/draft.ts` and updated builder/dialog consumers to import the feature-owned draft store directly.
- Moved builder preview files and colocated tests from `apps/web/src/components/resume` to `apps/web/src/features/resume/preview`, including `preview.tsx`, `preview.browser.tsx`, `preview.shared.tsx`, `pdf-canvas.tsx`, and preview shared tests.
- Moved dashboard resume thumbnail sizing helpers to `features/resume/preview/resume-thumbnail.shared.ts` and moved PDF.js thumbnail rendering into `features/resume/preview/pdf-thumbnail.ts`, so direct `pdfjs-dist` usage stays under `features/resume`.
- Moved web-local PDF document wrappers from `apps/web/src/libs/resume/pdf-document*.tsx` to `apps/web/src/features/resume/export/pdf-document*.tsx`; the wrappers still resolve localized section titles in web and call `@reactive-resume/pdf/browser` or `@reactive-resume/pdf/server`.
- Moved public resume route components and tests from `apps/web/src/routes/$username/-components` to `apps/web/src/features/resume/public`, including `public-resume.tsx`, `pdf-viewer.tsx`, `pdf-viewer.css`, and their tests.
- Updated the public resume route to lazy-load `features/resume/public/public-resume` while preserving its loader, redirects, metadata, and route settings.
- Removed the now-empty `apps/web/src/components/resume` and `apps/web/src/routes/$username/-components` directories.
- Broader Task 7 remains open for command palette, theme, locale, user, auth, settings, and Task 8 dialog-registry work.
- Task 7 slice 2 completed:
- Moved command palette implementation/tests to `apps/web/src/features/command-palette`.
- Moved theme provider, combobox, toggle button, and tests to `apps/web/src/features/theme`.
- Moved locale combobox implementation/tests to `apps/web/src/features/locale`.
- Moved user dropdown implementation to `apps/web/src/features/user`.
- Moved auth layout, page UI, and social auth component into `apps/web/src/features/auth`; auth route files now keep route guards/search validation and compose feature pages.
- Moved settings page UI and authentication/integration subcomponents into `apps/web/src/features/settings`; settings route files now keep dashboard headers and compose feature pages.
- Left `apps/web/src/routes/dashboard/settings/job-search.tsx` route-only because it is already a redirect shim.
- `pnpm --filter web test -- src/features/command-palette src/features/theme src/features/locale` passed; Vitest reported 74 files and 402 tests.
- `pnpm --filter web typecheck` passed.
- Focused Biome passed on the moved shell/auth/settings files and their route/import consumers; it checked 64 files with no fixes applied after a formatting write pass.
- `rg -n "@/components/(command-palette|theme|locale|user)" apps/web/src` and `rg -n "components/(command-palette|theme|locale|user)" apps/web/src` returned no matches.
- Task 8 completed:
- Added dialog schema registries under `apps/web/src/dialogs/{auth,api-key,resume}/schema.ts` and composed them through `apps/web/src/dialogs/schemas.ts`.
- Added domain renderer registries under `apps/web/src/dialogs/{auth,api-key,resume}/registry.tsx`, with shared renderer helper types in `apps/web/src/dialogs/renderer-registry.ts`.
- Reduced `apps/web/src/dialogs/store.ts` to the single global dialog runtime/store while preserving typed `openDialog(type, data)` and `DialogProps<T>` exports.
- Reduced `apps/web/src/dialogs/manager.tsx` to render via composed registries instead of directly importing all auth/API-key/resume dialog components.
- Added a store test assertion that the central schema union is built from the domain schema registries.
- Validation for Task 8 so far:
- Red check: `pnpm --filter web test -- src/dialogs/store.test.ts` failed because `./schemas` did not exist.
- `pnpm --filter web test -- src/dialogs/store.test.ts` passed after the registry implementation.
- Initial `pnpm --filter web typecheck` found renderer-entry variance errors; fixed by typing renderer entries as an existential union of concrete dialog renderers.
- `pnpm --filter web typecheck` passed after the renderer type fix.
- `pnpm --filter web test -- src/dialogs/store.test.ts src/dialogs/resume/template/data.test.ts src/dialogs/resume/template/gallery.test.tsx` passed; Vitest reported 74 files and 403 tests.
- Final `pnpm --filter web typecheck` passed.
- Final `pnpm --filter web test -- src/dialogs/store.test.ts src/dialogs/resume/template/data.test.ts src/dialogs/resume/template/gallery.test.tsx` passed; Vitest reported 74 files and 403 tests.
- Focused `pnpm exec biome check ...` passed on the touched dialog registry/store/manager files and Task 8 coordination docs; Biome checked 12 TypeScript files and ignored Markdown.
- `rg -n "ts-pattern|Create[A-Za-z]+Dialog|Update[A-Za-z]+Dialog|TemplateGalleryDialog|from \"\\./(api-key|auth|resume)" apps/web/src/dialogs/manager.tsx` returned no matches.
- `rg -n "@reactive-resume/schema/resume/data|awardItemSchema|certificationItemSchema|coverLetterItemSchema|customSectionSchema|educationItemSchema|experienceItemSchema|interestItemSchema|languageItemSchema|profileItemSchema|projectItemSchema|publicationItemSchema|referenceItemSchema|skillItemSchema|summaryItemSchema|volunteerItemSchema|z\\.object\\(\\{ type" apps/web/src/dialogs/store.ts` returned no matches.
- Task 9 completed:
- Inspected installed Turbo and Biome versions and local schemas/docs:
- `pnpm exec turbo --version`: `2.9.12`
- `pnpm exec biome --version`: `2.4.15`
- `node_modules/.pnpm/turbo@2.9.12/node_modules/turbo/schema.json` includes root `boundaries`, `dependencies`, `dependents`, `implicitDependencies`, and workspace `tags`.
- Context7/Biome docs and `node_modules/@biomejs/biome/configuration_schema.json` confirm local `.grit` plugins can be loaded through `biome.json` `plugins`.
- Updated `turbo.json` with executable boundaries:
- Deny dependencies on app workspaces `web` and `server`, preventing package-to-app and app-to-app imports.
- Add root test-tool implicit dependencies for `vitest`, `@testing-library/jest-dom`, `@testing-library/react`, and `@testing-library/user-event` so test imports do not require duplicating root test devDependencies in every workspace package.
- Add tag rules for app, server, browser, universal, domain, and UI layers.
- Added workspace `turbo.json` files with `extends: ["//"]` and boundary tags for both apps and all packages.
- Added `@boundaries-ignore root shared Vitest config` to every workspace `vitest.config.ts` import of `../../vitest.shared`; this is the only allowed cross-package source import left for the shared root test config.
- Updated `biome.json` with `style.noRestrictedImports` patterns for:
- `@reactive-resume/*/src/**`
- `apps/**`
- `packages/**`
- Added `tooling/grit/no-cross-workspace-src-imports.grit` and registered it in `biome.json` as a second layer for import/export/dynamic import sources that reference another workspace's `src` tree.
- Removed the cross-workspace `@reactive-resume/ui/* -> ../../packages/ui/src/*` path alias from `apps/web/tsconfig.json`; web now relies on the UI package export map.
- Files changed for Task 9:
- `turbo.json`
- `apps/server/turbo.json`
- `apps/web/turbo.json`
- `apps/web/tsconfig.json`
- `biome.json`
- `tooling/grit/no-cross-workspace-src-imports.grit`
- `apps/server/vitest.config.ts`
- `apps/web/vitest.config.ts`
- `packages/ai/turbo.json`
- `packages/ai/vitest.config.ts`
- `packages/api/turbo.json`
- `packages/api/vitest.config.ts`
- `packages/auth/turbo.json`
- `packages/auth/vitest.config.ts`
- `packages/config/turbo.json`
- `packages/config/vitest.config.ts`
- `packages/db/turbo.json`
- `packages/db/vitest.config.ts`
- `packages/docx/turbo.json`
- `packages/docx/vitest.config.ts`
- `packages/email/turbo.json`
- `packages/email/vitest.config.ts`
- `packages/env/turbo.json`
- `packages/env/vitest.config.ts`
- `packages/fonts/turbo.json`
- `packages/fonts/vitest.config.ts`
- `packages/import/turbo.json`
- `packages/import/vitest.config.ts`
- `packages/mcp/turbo.json`
- `packages/mcp/vitest.config.ts`
- `packages/pdf/turbo.json`
- `packages/pdf/vitest.config.ts`
- `packages/resume/turbo.json`
- `packages/resume/vitest.config.ts`
- `packages/runtime-externals/turbo.json`
- `packages/schema/turbo.json`
- `packages/schema/vitest.config.ts`
- `packages/scripts/turbo.json`
- `packages/ui/turbo.json`
- `packages/ui/vitest.config.ts`
- `packages/utils/turbo.json`
- `packages/utils/vitest.config.ts`
- `docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md`
- `docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md`
- Validation for Task 9:
- Baseline `pnpm exec turbo boundaries` failed with 321 issues before configuration, mostly undeclared root test-tool imports and shared root Vitest config imports.
- Intermediate `pnpm exec turbo boundaries` passed after adding implicit dependencies and the Vitest config boundary-ignore comments.
- Final `pnpm exec turbo boundaries` passed: checked 660 files in 20 packages, no issues found.
- `pnpm exec biome check biome.json turbo.json tooling/grit/no-cross-workspace-src-imports.grit apps/web/tsconfig.json apps/server/turbo.json apps/web/turbo.json packages/*/turbo.json` passed: checked 24 files, no fixes applied.
- `pnpm --filter web typecheck` passed.
- `pnpm --filter @reactive-resume/api typecheck` passed.
- `pnpm --filter server typecheck` passed.
- Remaining risks for Task 9:
- The current Turbo tags are coarse layer tags. They enforce the current obvious app/browser/server/domain/UI direction, but future package splits may need more granular tags or per-package dependency/dependent rules.
- The GritQL plugin is intentionally narrow: it only covers code import/export sources. JSON/tsconfig source-path aliases are covered separately by `noRestrictedImports`, manual scans, and the removal of the web-to-UI source alias.
- The shared root `vitest.shared` import remains intentionally ignored in workspace Vitest configs. Moving that helper into a package would remove the ignore comments but would be a broader test-infra reorg.
- Task 10 completed:
- Updated `AGENTS.md` with executable boundary rules, package-role/runtime tags, a placement decision tree, and the `pnpm exec turbo boundaries` validation command.
- Replaced the stale public architecture guide at `docs/contributing/architecture.mdx`, which still described an old single-`src` layout, with the current monorepo runtime map, workspace ownership table, boundary rules, feature placement guide, API layout, PDF/DOCX boundaries, and MCP boundary.
- Added `docs/adr/0001-workspace-boundaries.md` with the accepted decision, context, consequences, and rejected alternatives.
- Left MCP and AI Agent user guides unchanged in this task because Task 4 already updated MCP tool names, and `docs/guides/ai-agent-tools.mdx` already documents the canonical `read_resume` and `apply_resume_patch` tool names.
- Did not add local package READMEs; `AGENTS.md`, the architecture guide, the ADR, `turbo.json`, workspace `turbo.json` tags, and `biome.json` are the source of truth.
- Validation for Task 10:
- `rg -n "src/integrations|src/components/resume|packages/api/src/services|packages/api/src/helpers|reactive_resume_|tailor_resume|Radix UI|ORPC" AGENTS.md docs/contributing/architecture.mdx docs/adr/0001-workspace-boundaries.md docs/guides/using-the-mcp-server.mdx docs/guides/ai-agent-tools.mdx` returned only the expected `ORPCClient` labels in the architecture mermaid diagram.
- `pnpm exec biome check AGENTS.md docs/contributing/architecture.mdx docs/adr/0001-workspace-boundaries.md docs/superpowers/plans/2026-05-14-monorepo-architecture-reorg.md docs/superpowers/worklogs/2026-05-14-monorepo-architecture-reorg.md docs/superpowers/handoffs/2026-05-14-monorepo-architecture-reorg.md` did not process files because this Biome config ignores Markdown/MDX; there is no dedicated docs check script in `package.json`.
- Task 11 completed:
- Ran `pnpm install --lockfile-only`; first pass was already up to date, and a later pass updated `pnpm-lock.yaml` after removing stale app dependencies.
- Ran `pnpm install` after manifest cleanup so pnpm's dependency-status check would stop trying to purge modules from non-TTY subcommands.
- Cleaned up final `pnpm knip` findings:
- Deleted unused `apps/web/src/features/resume/export/pdf-document.server.tsx`.
- Removed unused app dependencies from `apps/server/package.json` and `apps/web/package.json`.
- Removed unused internal exports in dialog registries, startup checks, API AI helpers, and agent tool helpers.
- Reattached `pdfExportRateLimit` to `downloadResumePdfProcedure`.
- Removed stale jobs rate-limit middleware exports that no current router uses.
- `pnpm knip` now exits successfully with only the existing configuration hint: `src/server.ts apps/web knip.json Refine entry pattern (no matches)`.
- Final validation for Task 11:
- `pnpm install --lockfile-only` passed.
- `pnpm exec biome check .` passed: 756 files checked, no fixes applied.
- `pnpm exec turbo boundaries` passed: 659 files checked in 20 packages, no issues found.
- `pnpm knip` passed with one configuration hint and no unused files/dependencies/exports.
- `pnpm typecheck` passed: 18 successful tasks.
- `pnpm test` passed: 18 successful tasks; notable totals include web 74 files/403 tests, UI 42 files/421 tests, API 19 files/155 tests, PDF 17 files/139 tests.
- `pnpm build` passed: web and server builds completed.
@@ -1,55 +0,0 @@
# MCP and Directory Submissions Worklog
Date: 2026-07-07
## MCP registries
Submitted:
- [mcpservers.org](https://mcpservers.org/submit) - submitted free listing for `Reactive Resume`.
- [mcp.so](https://mcp.so/) - submitted via GitHub issue: [chatmcp/mcpso#3058](https://github.com/chatmcp/mcpso/issues/3058). The issue was reformatted to match recent submissions.
- [mcp.directory](https://mcp.directory/submit) - submitted the GitHub repository and MCP summary.
- [Influzer MCP Directory](https://www.influzer.ai/mcp/submit) - submitted via form. The form reset after submission but did not show a confirmation message.
- [Official MCP Registry](https://registry.modelcontextprotocol.io/) - published `io.github.amruthpillai/reactive-resume` version `5.2.2`; verified active/latest at [`/v0.1/servers/io.github.amruthpillai%2Freactive-resume/versions/latest`](https://registry.modelcontextprotocol.io/v0.1/servers/io.github.amruthpillai%2Freactive-resume/versions/latest).
Worth doing next:
- [Smithery](https://smithery.ai/docs/build/publish) - supports direct URL publishing for remote Streamable HTTP MCP servers. Needs account/auth flow.
- [McpMux](https://mcpmux.com/) - registry is open source and accepts PRs; see [server definitions](https://mcpmux.com/docs/server-definitions/).
- [AgenticSkills](https://agenticskills.io/mcp) - has a `Submit MCP` flow, likely manual/account gated.
- [Glama](https://glama.ai/mcp/servers) - has an `Add Server` button, but the automated session could not open the flow.
Skip for now:
- [PulseMCP](https://www.pulsemcp.com/submit) - blocked by Cloudflare in automation and says it ingests the Official MCP Registry.
- [MCP Market](https://mcpmarket.com/submit) - already has an unofficial RxResume listing at [mcpmarket.com/server/rxresume](https://mcpmarket.com/server/rxresume); handle as a claim/update, not a duplicate.
- [MCP Server Hub](https://mcpserverhub.net/submit) - free path appears backlink-gated.
- [Cline MCP Marketplace](https://github.com/cline/mcp-marketplace) - asks submitters to verify installation with Cline first.
## SaaS, free, and open-source directories
Already listed:
- [Product Hunt](https://www.producthunt.com/products/reactive-resume)
- [AlternativeTo](https://alternativeto.net/software/reactive-resume/)
- [SaaSHub](https://www.saashub.com/reactive-resume)
- [LibHunt](https://www.libhunt.com/r/Reactive-Resume/Reactive-Resume)
- [SourceForge](https://sourceforge.net/projects/reactive-resume.mirror/)
- [Docker Hub](https://hub.docker.com/r/amruthpillai/reactive-resume)
Worth doing next:
- [Awesome-Selfhosted](https://github.com/awesome-selfhosted/awesome-selfhosted) - PR-based; add data in [awesome-selfhosted-data](https://github.com/awesome-selfhosted/awesome-selfhosted-data/blob/master/CONTRIBUTING.md).
- [selfh.st Apps](https://selfh.st/apps/) - self-hosted app directory with a submit-content link.
- [OpenAlternative](https://openalternative.co/) - open-source alternative directory; Reactive Resume was not found in the page search.
- [Free Software Directory](https://directory.fsf.org/wiki/Main_Page) - good fit if FSF-free-software expectations are met.
- [Open Source Software Directory](https://opensourcesoftwaredirectory.com/) - broad free/open-source software directory.
- [Uneed](https://www.uneed.best/submit-a-tool) - account required after preview; broad product launch directory.
- [Fazier](https://fazier.com/submit) - free startup/product submission flow.
- [StartupBase](https://startupbase.io/) - account-gated startup/product launch directory.
Low priority:
- [BetaList](https://betalist.com/criteria) - early-stage startup positioning is weaker for an already-established open-source app.
- G2/Capterra/GetApp-style review sites - useful only if there is a review-generation plan.
- AI-only directories - submit only if positioning is specifically around the AI Agent/MCP workflow.
+9
View File
@@ -17,9 +17,18 @@
"apps/server": {
"ignoreDependencies": [
"@ai-sdk/anthropic",
"@ai-sdk/cerebras",
"@ai-sdk/cohere",
"@ai-sdk/deepseek",
"@ai-sdk/fireworks",
"@ai-sdk/google",
"@ai-sdk/groq",
"@ai-sdk/mistral",
"@ai-sdk/openai",
"@ai-sdk/openai-compatible",
"@ai-sdk/perplexity",
"@ai-sdk/togetherai",
"@ai-sdk/xai",
"@aws-sdk/client-s3",
"@better-auth/api-key",
"@better-auth/drizzle-adapter",
+11 -15
View File
@@ -1,7 +1,7 @@
{
"name": "reactive-resume",
"description": "Reactive Resume is a free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
"version": "5.2.2",
"version": "5.2.3",
"private": true,
"license": "MIT",
"author": {
@@ -22,15 +22,11 @@
"scripts": {
"build": "turbo run build",
"doctor": "turbo run doctor",
"check": "biome check --write --unsafe . && pnpm lint:docs:fix && pnpm lint:actions",
"check": "biome check --write --unsafe . && markdownlint-cli2 --fix && github-actionlint -shellcheck= -pyflakes=",
"db:generate": "turbo run db:generate --filter=@reactive-resume/db",
"db:migrate": "turbo run db:migrate --filter=@reactive-resume/db",
"db:studio": "turbo run db:studio --filter=@reactive-resume/db",
"lingui:extract": "turbo run lingui:extract --filter=web",
"lint": "pnpm lint:docs && pnpm lint:actions",
"lint:actions": "github-actionlint -shellcheck= -pyflakes=",
"lint:docs": "markdownlint-cli2",
"lint:docs:fix": "markdownlint-cli2 --fix",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=web",
"knip": "knip",
@@ -45,8 +41,8 @@
"test:agent": "turbo run test:agent"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@commitlint/cli": "^21.2.0",
"@biomejs/biome": "^2.5.3",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@playwright/test": "^1.61.1",
"@reactive-resume/config": "workspace:*",
@@ -54,17 +50,17 @@
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.0",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/coverage-v8": "^4.1.10",
"github-actionlint": "1.7.12",
"happy-dom": "^20.10.6",
"knip": "^6.24.0",
"lefthook": "^2.1.9",
"knip": "^6.25.0",
"lefthook": "^2.1.10",
"markdownlint-cli2": "0.23.0",
"pg": "^8.22.0",
"turbo": "^2.10.3",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
"turbo": "^2.10.4",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}
+2 -2
View File
@@ -28,7 +28,7 @@
},
"devDependencies": {
"@reactive-resume/config": "workspace:*",
"@typescript/native-preview": "7.0.0-dev.20260705.1",
"typescript": "^6.0.3"
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"typescript": "^7.0.2"
}
}

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