- implement disable_email_auth env var

- add sync crowdin translations github action
This commit is contained in:
Amruth Pillai 2023-11-21 09:44:37 +01:00
parent 635f743e56
commit 1825fc3283
No known key found for this signature in database
GPG Key ID: AB5C6C5E4C464A20
84 changed files with 2693 additions and 2341 deletions

View File

@ -59,14 +59,17 @@ REDIS_URL=redis://default:password@localhost:6379
# Crowdin (Optional)
CROWDIN_PROJECT_ID=
CROWDIN_ACCESS_TOKEN=
CROWDIN_PERSONAL_TOKEN=
# GitHub (OAuth, Optional) Uncomment to enable
# Email (Optional)
# DISABLE_EMAIL_AUTH=false
# GitHub (OAuth, Optional)
# GITHUB_CLIENT_ID=
# GITHUB_CLIENT_SECRET=
# GITHUB_CALLBACK_URL=http://localhost:5173/api/auth/github/callback
# Google (OAuth, Optional) Uncomment to enable
# Google (OAuth, Optional)
# GOOGLE_CLIENT_ID=
# GOOGLE_CLIENT_SECRET=
# GOOGLE_CALLBACK_URL=http://localhost:5173/api/auth/google/callback

View File

@ -2,7 +2,7 @@ name: Close Stale Issues
on:
schedule:
- cron: 30 1 * * *
- cron: 0 0 * * * # every day at midnight (UTC)
permissions:
issues: write

View File

@ -0,0 +1,31 @@
name: Sync Crowdin Translations
on:
workflow_dispatch:
push:
branches:
- v4
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.1
- name: Sync Translations
uses: crowdin/github-action@v1.15.2
with:
upload_sources: true
upload_translations: true
download_translations: true
create_pull_request: true
localization_branch_name: "l10n"
pull_request_base_branch_name: "v4"
pull_request_title: "New Translations from Crowdin"
pull_request_body: "You've got new translations to be merged into the app from contributors on Crowdin.\n_This pull request was automatically created by the [Crowdin Action](https://github.com/marketplace/actions/crowdin-action)._"
env:
GITHUB_TOKEN: ${{ github.token }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}

View File

@ -33,6 +33,9 @@ COPY --chown=node:node --from=build /app/dist ./dist
COPY --chown=node:node --from=build /app/tools/prisma ./tools/prisma
RUN pnpm run prisma:generate
ENV TZ=UTC
ENV NODE_ENV=production
EXPOSE 3000
CMD [ "dumb-init", "pnpm", "run", "start" ]

View File

@ -65,8 +65,9 @@ Start creating your standout resume with Reactive Resume today!
## Built With
- React (Vite), for the frontend
- NestJS, for the backend
- Postgres (primary database)
- DigitalOcean (infrastructure)
- Prisma ORM, which frees you to switch to any other relational database with a few minor changes in the code
- Redis (for caching, session storage and resume statistics)
- Minio (for object storage: to store avatars, resume PDFs and previews)

View File

@ -3,6 +3,8 @@
@tailwind utilities;
* {
font-variant-ligatures: none;
@apply border-current;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 910 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -18,6 +18,7 @@ import {
import { cn } from "@reactive-resume/utils";
import { useState } from "react";
import { toast } from "../hooks/use-toast";
import { changeTone } from "../services/openai/change-tone";
import { fixGrammar } from "../services/openai/fix-grammar";
import { improveWriting } from "../services/openai/improve-writing";
@ -39,17 +40,25 @@ export const AiActions = ({ value, onChange, className }: Props) => {
if (!aiEnabled) return null;
const onClick = async (action: Action, mood?: Mood) => {
setLoading(action);
try {
setLoading(action);
let result = value;
let result = value;
if (action === "improve") result = await improveWriting(value);
if (action === "fix") result = await fixGrammar(value);
if (action === "tone" && mood) result = await changeTone(value, mood);
if (action === "improve") result = await improveWriting(value);
if (action === "fix") result = await fixGrammar(value);
if (action === "tone" && mood) result = await changeTone(value, mood);
onChange(result);
setLoading(false);
onChange(result);
} catch (error) {
toast({
variant: "error",
title: t`Oops, the server returned an error.`,
description: (error as Error)?.message,
});
} finally {
setLoading(false);
}
};
return (

View File

@ -0,0 +1,5 @@
import { HelmetData } from "react-helmet-async";
export const helmetData = new HelmetData({});
export const helmetContext = helmetData.context;

View File

@ -1,6 +1,9 @@
import { QueryKey } from "@tanstack/react-query";
export const USER_KEY: QueryKey = ["user"];
export const AUTH_PROVIDERS_KEY: QueryKey = ["auth", "providers"];
export const LANGUAGES_KEY: QueryKey = ["translation", "languages"];
export const RESUME_KEY: QueryKey = ["resume"];
export const RESUMES_KEY: QueryKey = ["resumes"];

View File

@ -4,3 +4,52 @@ import relativeTime from "dayjs/plugin/relativeTime";
dayjs.extend(localizedFormat);
dayjs.extend(relativeTime);
export const dayjsLocales: Record<string, () => Promise<ILocale>> = {
"af-ZA": () => import("dayjs/locale/af"),
"am-ET": () => import("dayjs/locale/am"),
"ar-SA": () => import("dayjs/locale/ar-sa"),
"bg-BG": () => import("dayjs/locale/bg"),
"bn-BD": () => import("dayjs/locale/bn"),
"ca-ES": () => import("dayjs/locale/ca"),
"cs-CZ": () => import("dayjs/locale/cs"),
"da-DK": () => import("dayjs/locale/da"),
"de-DE": () => import("dayjs/locale/de"),
"el-GR": () => import("dayjs/locale/el"),
"en-US": () => import("dayjs/locale/en"),
"es-ES": () => import("dayjs/locale/es"),
"fa-IR": () => import("dayjs/locale/fa"),
"fi-FI": () => import("dayjs/locale/fi"),
"fr-FR": () => import("dayjs/locale/fr"),
"he-IL": () => import("dayjs/locale/he"),
"hi-IN": () => import("dayjs/locale/hi"),
"hu-HU": () => import("dayjs/locale/hu"),
"id-ID": () => import("dayjs/locale/id"),
"it-IT": () => import("dayjs/locale/it"),
"ja-JP": () => import("dayjs/locale/ja"),
"km-KH": () => import("dayjs/locale/km"),
"kn-IN": () => import("dayjs/locale/kn"),
"ko-KR": () => import("dayjs/locale/ko"),
"lt-LT": () => import("dayjs/locale/lt"),
"ml-IN": () => import("dayjs/locale/ml"),
"mr-IN": () => import("dayjs/locale/mr"),
"ne-NP": () => import("dayjs/locale/ne"),
"nl-NL": () => import("dayjs/locale/nl"),
"no-NO": () => import("dayjs/locale/en"),
"or-IN": () => import("dayjs/locale/en"),
"pl-PL": () => import("dayjs/locale/pl"),
"pt-BR": () => import("dayjs/locale/pt-br"),
"pt-PT": () => import("dayjs/locale/pt"),
"ro-RO": () => import("dayjs/locale/ro"),
"ru-RU": () => import("dayjs/locale/ru"),
"sr-SP": () => import("dayjs/locale/sr"),
"sv-SE": () => import("dayjs/locale/sv"),
"ta-IN": () => import("dayjs/locale/ta"),
"te-IN": () => import("dayjs/locale/te"),
"th-TH": () => import("dayjs/locale/th"),
"tr-TR": () => import("dayjs/locale/tr"),
"uk-UA": () => import("dayjs/locale/uk"),
"vi-VN": () => import("dayjs/locale/vi"),
"zh-CN": () => import("dayjs/locale/zh-cn"),
"zh-TW": () => import("dayjs/locale/zh-tw"),
};

View File

@ -1,8 +1,22 @@
import { i18n } from "@lingui/core";
import dayjs from "dayjs";
import { dayjsLocales } from "./dayjs";
export const defaultLocale = "en-US";
export async function dynamicActivate(locale: string) {
const { messages } = await import(`../locales/${locale}/messages.po`);
i18n.loadAndActivate({ locale, messages });
try {
const { messages } = await import(`../locales/${locale}/messages.po`);
if (messages) {
i18n.loadAndActivate({ locale, messages });
}
if (dayjsLocales[locale]) {
dayjs.locale(await dayjsLocales[locale]());
}
} catch (error) {
console.error(error);
}
}

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: af\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: am\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Amharic\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ar\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bg\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bn\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Bengali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ca\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: cs\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: da\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: el\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -120,7 +120,7 @@ msgstr "Add a new section"
msgid "Add New Page"
msgstr "Add New Page"
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr "AI"
@ -238,8 +238,8 @@ msgstr "By the community, for the community."
msgid "Cancel"
msgstr "Cancel"
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr "Casual"
@ -252,7 +252,7 @@ msgstr "Center Artboard"
msgid "Change Password"
msgstr "Change Password"
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr "Change Tone"
@ -288,8 +288,8 @@ msgstr "Columns"
msgid "Company"
msgstr "Company"
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr "Confident"
@ -539,7 +539,7 @@ msgstr "Filetype"
msgid "Finally,"
msgstr "Finally,"
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr "Fix Spelling & Grammar"
@ -588,8 +588,8 @@ msgstr "Found a bug, or have an idea for a new feature?"
msgid "Free, forever"
msgstr "Free, forever"
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr "Friendly"
@ -605,7 +605,7 @@ msgstr "Generate a random title for your resume"
msgid "Get Started"
msgstr "Get Started"
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr "GitHub"
@ -622,7 +622,7 @@ msgstr "Give your old resume a new name."
msgid "Go to Dashboard"
msgstr "Go to Dashboard"
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr "Google"
@ -704,7 +704,7 @@ msgstr "Import"
msgid "Import an existing resume"
msgstr "Import an existing resume"
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr "Improve Writing"
@ -949,6 +949,7 @@ msgstr "Notes"
msgid "One-Time Password"
msgstr "One-Time Password"
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr "Powered by <0>Simple Icons</0>"
msgid "Primary Color"
msgstr "Primary Color"
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr "Professional"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fa\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Persian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: he\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: km\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: kn\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Kannada\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -32,27 +32,27 @@ msgstr "{value, plural, one {ಕಾಲಮ್} other {ಕಾಲಮ್‌ಗಳು
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.</0><1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.</1>"
msgstr ""
msgstr "<0>ನನ್ನ ಬಿಡುವಿನ ವೇಳೆಯಲ್ಲಿ ನಾನು ಇತರ ಉತ್ತಮ ತೆರೆದ ಮೂಲ ಕೊಡುಗೆದಾರರಿಂದ ಹೆಚ್ಚಿನ ಸಹಾಯದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚಾಗಿ ನಿರ್ಮಿಸಿದ್ದೇನೆ.</0> <1>ನೀವು ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಇಷ್ಟಪಟ್ಟರೆ ಮತ್ತು ಅದನ್ನು ಶಾಶ್ವತವಾಗಿ ಉಚಿತವಾಗಿ ಇರಿಸುವುದನ್ನು ಬೆಂಬಲಿಸಲು ಬಯಸಿದರೆ, ದಯವಿಟ್ಟು ನೀವು ನೀಡಲು ಸಾಧ್ಯವಿರುವ ಎಲ್ಲವನ್ನೂ ದೇಣಿಗೆ ನೀಡಿ.</1>"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
msgstr ""
msgstr "<0>ಅಪ್ಲಿಕೇಶನ್ ಪರಿಪೂರ್ಣವಾಗಿಲ್ಲ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ, ಆದರೆ ಅದು ಸಂಪೂರ್ಣ ಇರಬೇಕೆಂದು ನಾನು ಬಯಸುತ್ತೇನೆ.</0> <1>ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನೀವು ಯಾವುದೇ ಸಮಸ್ಯೆಗಳನ್ನು ಎದುರಿಸಿದರೆ ಅಥವಾ ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚು ಸುಲಭವಾಗಿ ರಚಿಸುವಲ್ಲಿ ನಿಮಗೆ ಮತ್ತು ಇತರ ಬಳಕೆದಾರರಿಗೆ ಸಹಾಯ ಮಾಡುವ ಕಲ್ಪನೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, ರೆಪೊಸಿಟರಿಯಲ್ಲಿ ಸಮಸ್ಯೆಯನ್ನು ಬಿಡಿ ಅಥವಾ ಅದರ ಬಗ್ಗೆ ನನಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿ.</1>"
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
msgstr ""
msgstr "<0>ಗಮನಿಸಿ:</0> OpenAI API ಅನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು <1> ಬಳಕೆಯ ನಿಯಮಗಳನ್ನು ಅಂಗೀಕರಿಸುತ್ತೀರಿ ಮತ್ತು ಸಮ್ಮತಿಸುತ್ತೀರಿ</1> ಮತ್ತು <2>ಗೌಪ್ಯತೆ ನೀತಿ</2> OpenAI ನಿಂದ ವಿವರಿಸಲಾಗಿದೆ. ಸೇವೆಯ ಯಾವುದೇ ಅಸಮರ್ಪಕ ಅಥವಾ ಅನಧಿಕೃತ ಬಳಕೆಗೆ ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭವು ಯಾವುದೇ ಜವಾಬ್ದಾರಿಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ ಮತ್ತು ಯಾವುದೇ ಪರಿಣಾಮವಾಗಿ ಉಂಟಾಗುವ ಪರಿಣಾಮಗಳು ಅಥವಾ ಹೊಣೆಗಾರಿಕೆಗಳು ಬಳಕೆದಾರರ ಮೇಲೆ ಮಾತ್ರ ಅವಲಂಬಿತವಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ."
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
msgstr ""
msgstr "<0>ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭಕ್ಕಾಗಿ ದಸ್ತಾವೇಜನ್ನು ಬರೆಯಲು ಸಮುದಾಯವು ಸಾಕಷ್ಟು ಸಮಯವನ್ನು ಕಳೆದಿದೆ ಮತ್ತು ಅಪ್ಲಿಕೇಶನ್‌ನೊಂದಿಗೆ ಪ್ರಾರಂಭಿಸಲು ಇದು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ.</0> <1>ಪ್ರಾರಂಭಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡಲು ಸಾಕಷ್ಟು ಉದಾಹರಣೆಗಳಿವೆ ಮತ್ತು ನಿಮಗೆ ತಿಳಿದಿಲ್ಲದ ವೈಶಿಷ್ಟ್ಯಗಳು ನಿಮ್ಮ ಪರಿಪೂರ್ಣ ಪುನರಾರಂಭವನ್ನು ನಿರ್ಮಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತವೆ.</1>"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
msgstr ""
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಪ್ರಸ್ತುತ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನಿಮ್ಮ ಖಾತೆಗೆ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸೇರಿಸುವ ಮೂಲಕ ನೀವು ಅದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು."
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
msgstr ""
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನೀವು ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗಲೆಲ್ಲಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಲು ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
#: apps/client/src/pages/home/page.tsx:18
#: apps/client/src/pages/home/sections/hero/index.tsx:36
@ -62,11 +62,11 @@ msgstr "ಉಚಿತ ಮತ್ತು ಮೂಲ ಕೋಡ್ ತೆರೆದಿ
#: apps/client/src/pages/home/components/footer.tsx:20
#: apps/client/src/pages/home/sections/hero/index.tsx:41
msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume."
msgstr ""
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ರಚಿಸುವ, ನವೀಕರಿಸುವ ಮತ್ತು ಹಂಚಿಕೊಳ್ಳುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಸರಳಗೊಳಿಸುವ ಉಚಿತ ಮತ್ತು ಮುಕ್ತ-ಮೂಲ ಪುನರಾರಂಭ ಬಿಲ್ಡರ್."
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29
msgid "A link has been copied to your clipboard."
msgstr ""
msgstr "ನಿಮ್ಮ ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ಲಿಂಕ್ ಅನ್ನು ನಕಲಿಸಲಾಗಿದೆ."
#: apps/client/src/components/copyright.tsx:29
msgid "A passion project by <0>Amruth Pillai</0>"
@ -74,11 +74,11 @@ msgstr "<0>ಅಮೃತ್ ಪಿಳ್ಳೈ</0> ಅವರಿಂದ ಒಂದ
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
msgstr "ನೀವು ಒದಗಿಸಿದ ಇಮೇಲ್‌ನೊಂದಿಗೆ ಖಾತೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ, ಪಾಸ್‌ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಲಿಂಕ್ ಅನ್ನು ನಿಮ್ಮ ಇನ್‌ಬಾಕ್ಸ್‌ಗೆ ಕಳುಹಿಸಿರಬೇಕು."
#: apps/client/src/services/errors/translate-error.ts:31
msgid "A resume with this slug already exists, please pick a different unique identifier."
msgstr ""
msgstr "ಈ ಸ್ಲಗ್‌ನೊಂದಿಗೆ ರೆಸ್ಯೂಮ್ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ, ದಯವಿಟ್ಟು ಬೇರೆ ಅನನ್ಯ ಗುರುತಿಸುವಿಕೆಯನ್ನು ಆರಿಸಿ."
#: apps/client/src/services/errors/translate-error.ts:9
msgid "A user with this email address and/or username already exists."
@ -120,7 +120,7 @@ msgstr "ಹೊಸ ವಿಭಾಗವನ್ನು ಸೇರಿಸಿ"
msgid "Add New Page"
msgstr "ಹೊಸ ಪುಟವನ್ನು ಸೇರಿಸಿ"
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr "AI"
@ -238,8 +238,8 @@ msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ."
msgid "Cancel"
msgstr "ರದ್ದುಮಾಡಿ"
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr "ಸಾಂದರ್ಭಿಕ"
@ -252,7 +252,7 @@ msgstr "ಸೆಂಟರ್ ಆರ್ಟ್ಬೋರ್ಡ್"
msgid "Change Password"
msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸು"
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr "ಟೋನ್ ಬದಲಾಯಿಸಿ"
@ -288,8 +288,8 @@ msgstr "ಕಾಲಮ್ಗಳು"
msgid "Company"
msgstr "ಕಂಪನಿ"
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr "ಆತ್ಮವಿಶ್ವಾಸ"
@ -345,7 +345,7 @@ msgstr "ಮಾದರಿ ರೆಸ್ಯೂಮ್‌ ರಚಿಸಿ"
#: apps/client/src/pages/home/sections/features/index.tsx:61
msgid "Custom resume sections"
msgstr ""
msgstr "ಕಸ್ಟಮ್ ಪುನರಾರಂಭ ವಿಭಾಗಗಳು"
#: apps/client/src/stores/resume.ts:45
msgid "Custom Section"
@ -539,7 +539,7 @@ msgstr "ಕಡತದ ವರ್ಗ"
msgid "Finally,"
msgstr "ಅಂತಿಮವಾಗಿ,"
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr "ಕಾಗುಣಿತ ಮತ್ತು ವ್ಯಾಕರಣವನ್ನು ಸರಿಪಡಿಸಿ"
@ -586,219 +586,219 @@ msgstr "ದೋಷ ಕಂಡುಬಂದಿದೆಯೇ ಅಥವಾ ಹೊಸ
#: apps/client/src/pages/home/sections/features/index.tsx:45
msgid "Free, forever"
msgstr ""
msgstr "ಉಚಿತ ಶಾಶ್ವತವಾಗಿ"
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
msgstr "ಸ್ನೇಹಪರ"
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
msgid "Full Name"
msgstr ""
msgstr "ಪೂರ್ಣ ಹೆಸರು"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201
msgid "Generate a random title for your resume"
msgstr ""
msgstr "ನಿಮ್ಮ ಪುನರಾರಂಭಕ್ಕಾಗಿ ಯಾದೃಚ್ಛಿಕ ಶೀರ್ಷಿಕೆಯನ್ನು ರಚಿಸಿ"
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33
msgid "Get Started"
msgstr ""
msgstr "ಪ್ರಾರಂಭಿಸಿ"
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
msgstr "Github"
#: apps/client/src/pages/home/sections/statistics/index.tsx:12
msgid "GitHub Stars"
msgstr ""
msgstr "GitHub ಸ್ಟಾರ್ಸ್"
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:186
msgid "Give your old resume a new name."
msgstr ""
msgstr "ನಿಮ್ಮ ಹಳೆಯ ರೆಸ್ಯೂಮೇಗೆ ಹೊಸ ಹೆಸರನ್ನು ನೀಡಿ."
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
msgstr "ಡ್ಯಾಶ್ಬೋರ್ಡ್ಗೆ ಹೋಗಿ"
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
msgstr "ಗೂಗಲ್"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:207
msgid "Grayscale"
msgstr ""
msgstr "ಗ್ರೇಸ್ಕೇಲ್"
#: apps/client/src/pages/dashboard/resumes/page.tsx:41
msgid "Grid"
msgstr ""
msgstr "ಗ್ರಿಡ್"
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41
msgid "Headline"
msgstr ""
msgstr "ಶೀರ್ಷಿಕೆ"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:106
msgid "Here, you can update your account information such as your profile picture, name and username."
msgstr ""
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಚಿತ್ರ, ಹೆಸರು ಮತ್ತು ಬಳಕೆದಾರಹೆಸರು ಮುಂತಾದ ನಿಮ್ಮ ಖಾತೆ ಮಾಹಿತಿಯನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:63
msgid "Here, you can update your profile to customize and personalize your experience."
msgstr ""
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
msgid "Hidden"
msgstr ""
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78
msgid "Hide"
msgstr ""
msgstr "ಮರೆಮಾಡಿ"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
msgid "Hide Icons"
msgstr ""
msgstr "ಐಕಾನ್‌ಗಳನ್ನು ಮರೆಮಾಡಿ"
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ ಪ್ರದರ್ಶಿಸಲು <0>Ctrl</0> ಅನ್ನು ಹಿಡಿದುಕೊಳ್ಳಿ."
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:100
msgid "Horizontal"
msgstr ""
msgstr "ಸಮತಲ"
#: apps/client/src/pages/home/sections/features/index.tsx:66
msgid "Host your resume publicly"
msgstr ""
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಸಾರ್ವಜನಿಕವಾಗಿ ಹೋಸ್ಟ್ ಮಾಡಿ"
#: apps/client/src/pages/home/sections/testimonials/index.tsx:70
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
msgstr ""
msgstr "ಪ್ರತಿಕ್ರಿಯೆ ಅಥವಾ ಬೆಂಬಲದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ ಬಳಕೆದಾರರಿಂದ ಕೇಳಲು ನಾನು ಯಾವಾಗಲೂ ಇಷ್ಟಪಡುತ್ತೇನೆ. ನಾನು ಸ್ವೀಕರಿಸಿದ ಕೆಲವು ಸಂದೇಶಗಳು ಇಲ್ಲಿವೆ. ನೀವು ಯಾವುದೇ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, <0>{email} ನಲ್ಲಿ ನನಗೆ ಇಮೇಲ್ ಅನ್ನು ಡ್ರಾಪ್ ಮಾಡಲು ಹಿಂಜರಿಯಬೇಡಿ</0>."
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
msgid "Icon"
msgstr ""
msgstr "ಐಕಾನ್"
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:47
msgid "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form</0>."
msgstr ""
msgstr "ನಿಮ್ಮ ಉದ್ಯೋಗ ಹುಡುಕಾಟದಲ್ಲಿ ಈ ಅಪ್ಲಿಕೇಶನ್ ನಿಮಗೆ ಸಹಾಯ ಮಾಡಿದ್ದರೆ, <0>ಈ ಸಂಪರ್ಕ ಫಾರ್ಮ್</0> ಮೂಲಕ ತಲುಪುವ ಮೂಲಕ ನನಗೆ ತಿಳಿಸಿ."
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:126
msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in."
msgstr ""
msgstr "ನೀವು ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದರೆ, ಲಾಗ್ ಇನ್ ಮಾಡುವಾಗ ನೀವು ಇನ್ನು ಮುಂದೆ ಪರಿಶೀಲನಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ."
#: apps/client/src/pages/home/sections/support/index.tsx:59
msgid "If you're multilingual, we'd love your help in bringing the app to more languages and communities. Don't worry if you don't see your language on the list - just give me a shout-out on GitHub, and I'll make sure to include it. Ready to get started? Jump into translation over at Crowdin by clicking the link below."
msgstr ""
msgstr "ನೀವು ಬಹುಭಾಷಿಕರಾಗಿದ್ದರೆ, ಹೆಚ್ಚಿನ ಭಾಷೆಗಳು ಮತ್ತು ಸಮುದಾಯಗಳಿಗೆ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ತರಲು ನಿಮ್ಮ ಸಹಾಯವನ್ನು ನಾವು ಬಯಸುತ್ತೇವೆ. ಪಟ್ಟಿಯಲ್ಲಿ ನಿಮ್ಮ ಭಾಷೆಯನ್ನು ನೀವು ನೋಡದಿದ್ದರೆ ಚಿಂತಿಸಬೇಡಿ - GitHub ನಲ್ಲಿ ನನಗೆ ಪ್ರೋತ್ಸಾಹ ನೀಡಿ ಮತ್ತು ಅದನ್ನು ಸೇರಿಸಲು ನಾನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳುತ್ತೇನೆ. ಪ್ರಾರಂಭಿಸಲು ಸಿದ್ಧರಿದ್ದೀರಾ? ಕೆಳಗಿನ ಲಿಂಕ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಕ್ರೌಡಿನ್‌ನಲ್ಲಿ ಅನುವಾದಕ್ಕೆ ಹೋಗಿ."
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:309
msgid "Import"
msgstr ""
msgstr "ಆಮದು"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:208
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:24
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:18
msgid "Import an existing resume"
msgstr ""
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಆಮದು ಮಾಡಿ"
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
msgstr "ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಿ"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:186
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
msgstr ""
msgstr "ಈ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗದಿದ್ದರೆ, ನೀವು ಈ ಲಿಂಕ್ ಅನ್ನು ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ನಕಲಿಸಬಹುದು."
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
msgid "In this section, you can change your password and enable/disable two-factor authentication."
msgstr ""
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನೀವು ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಬಹುದು ಮತ್ತು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು/ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬಹುದು."
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:64
msgid "In this section, you can delete your account and all the data associated to your user, but please keep in mind that <0>this action is irreversible</0>."
msgstr ""
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತು ನಿಮ್ಮ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ನೀವು ಅಳಿಸಬಹುದು, ಆದರೆ ದಯವಿಟ್ಟು <0>ಈ ಕ್ರಿಯೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ</0> ಎಂಬುದನ್ನು ನೆನಪಿನಲ್ಲಿಡಿ."
#: apps/client/src/pages/builder/sidebars/right/index.tsx:83
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
msgid "Information"
msgstr ""
msgstr "ಮಾಹಿತಿ"
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39
msgid "Institution"
msgstr ""
msgstr "ಸಂಸ್ಥೆ"
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53
msgid "Issuer"
msgstr ""
msgstr "ನೀಡುವವರು"
#: apps/client/src/services/errors/translate-error.ts:7
msgid "It doesn't look like a user exists with the credentials you provided."
msgstr ""
msgstr "ನೀವು ಒದಗಿಸಿದ ರುಜುವಾತುಗಳೊಂದಿಗೆ ಬಳಕೆದಾರರು ಅಸ್ತಿತ್ವದಲ್ಲಿರುವಂತೆ ತೋರುತ್ತಿಲ್ಲ."
#: apps/client/src/services/errors/translate-error.ts:27
msgid "It looks like the backup code you provided is invalid or used. Please try again."
msgstr ""
msgstr "ನೀವು ಒದಗಿಸಿದ ಬ್ಯಾಕಪ್ ಕೋಡ್ ಅಮಾನ್ಯವಾಗಿದೆ ಅಥವಾ ಬಳಸಲಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ."
#: apps/client/src/services/errors/translate-error.ts:15
msgid "It looks like the reset token you provided is invalid. Please try restarting the password reset process again."
msgstr ""
msgstr "ನೀವು ಒದಗಿಸಿದ ಮರುಹೊಂದಿಸುವ ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪಾಸ್‌ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಮತ್ತೊಮ್ಮೆ ಮರುಪ್ರಾರಂಭಿಸಲು ಪ್ರಯತ್ನಿಸಿ."
#: apps/client/src/services/errors/translate-error.ts:33
msgid "It looks like the resume you're looking for doesn't exist."
msgstr ""
msgstr "ನೀವು ಹುಡುಕುತ್ತಿರುವ ರೆಸ್ಯೂಮೇ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ ಎಂದು ತೋರುತ್ತಿದೆ."
#: apps/client/src/services/errors/translate-error.ts:25
msgid "It looks like the two-factor authentication code you provided is invalid. Please try again."
msgstr ""
msgstr "ನೀವು ಒದಗಿಸಿದ ಎರಡು ಅಂಶದ ದೃಢೀಕರಣ ಕೋಡ್ ಅಮಾನ್ಯವಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ."
#: apps/client/src/services/errors/translate-error.ts:17
msgid "It looks like the verification token you provided is invalid. Please try restarting the verification process again."
msgstr ""
msgstr "ನೀವು ಒದಗಿಸಿದ ಮರುಹೊಂದಿಸುವ ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪಾಸ್‌ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಮತ್ತೊಮ್ಮೆ ಮರುಪ್ರಾರಂಭಿಸಲು ಪ್ರಯತ್ನಿಸಿ."
#: apps/client/src/services/errors/translate-error.ts:19
msgid "It looks like your email address has already been verified."
msgstr ""
msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಈಗಾಗಲೇ ಪರಿಶೀಲಿಸಿರುವಂತೆ ತೋರುತ್ತಿದೆ."
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
msgstr "ಜಾನ್ ಡೋ"
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
msgstr "ಜಾನ್ ಡೋ"
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
msgstr "john.doe@example.com"
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54
msgid "JSON"
msgstr ""
msgstr "JSON"
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
msgid "Keywords"
msgstr ""
msgstr "ಕೀವರ್ಡ್‌ಗಳು"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40
msgid "Label"
msgstr ""
msgstr "ಲೇಬಲ್"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:96
msgid "Language"
msgstr ""
msgstr "ಭಾಷೆ"
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:116
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:121
msgid "Last updated {lastUpdated}"
msgstr ""
msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}"
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207
@ -949,6 +949,7 @@ msgstr "ಟಿಪ್ಪಣಿಗಳು"
msgid "One-Time Password"
msgstr "ಒನ್-ಟೈಮ್ ಪಾಸ್‌ವರ್ಡ್"
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1045,7 +1046,7 @@ msgstr "ದಯವಿಟ್ಟು ನಿಮ್ಮ ಬ್ಯಾಕಪ್ ಕೋಡ
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:106
msgid "Portrait"
msgstr ""
msgstr "ಭಾವ ಚಿತ್ರ"
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54
msgctxt "Position held at a company, for example, Software Engineer"
@ -1058,36 +1059,36 @@ msgstr "ಸ್ಥಾನ"
#: apps/client/src/pages/home/sections/features/index.tsx:96
msgid "Powered by"
msgstr ""
msgstr "ಇವರಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
msgid "Powered by <0>Simple Icons</0>"
msgstr ""
msgstr "<0>ಸರಳ ಐಕಾನ್‌ಗಳಿಂದ</0> ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43
msgid "Primary Color"
msgstr ""
msgstr "ಪ್ರಾಥಮಿಕ ಬಣ್ಣ"
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
msgstr "ವೃತ್ತಿಪರ"
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:61
msgid "Profile"
msgstr ""
msgstr "ಪ್ರೊಫೈಲ್"
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55
msgid "Public"
msgstr ""
msgstr "ಸಾರ್ವಜನಿಕ"
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53
msgid "Publisher"
msgstr ""
msgstr "ಪ್ರಕಾಶಕರು"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
msgid "Raise an issue"
msgstr ""
msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ್ಳಿ"
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
@ -1105,140 +1106,140 @@ msgstr ""
#: apps/client/src/pages/public/page.tsx:57
#: apps/client/src/pages/public/page.tsx:79
msgid "Reactive Resume"
msgstr ""
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ"
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39
msgid "Reactive Resume has helped people land jobs at these great companies:"
msgstr ""
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಈ ಮಹಾನ್ ಕಂಪನಿಗಳಲ್ಲಿ ಉದ್ಯೋಗಗಳನ್ನು ಪಡೆಯಲು ಜನರಿಗೆ ಸಹಾಯ ಮಾಡಿದೆ:"
#: apps/client/src/pages/home/sections/support/index.tsx:12
msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe."
msgstr ""
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ್ನಿಂದ ಹೆಚ್ಚಾಗಿ ರಚಿಸಲಾದ ಉಚಿತ ಮತ್ತು ಮುಕ್ತ-ಮೂಲ ಯೋಜನೆಯಾಗಿದೆ ಮತ್ತು ನಿಮ್ಮ ಬೆಂಬಲವನ್ನು ಹೆಚ್ಚು ಪ್ರಶಂಸಿಸಲಾಗುತ್ತದೆ. ನೀವು ಕೊಡುಗೆ ನೀಡಲು ಒಲವು ತೋರುತ್ತಿದ್ದರೆ ಮತ್ತು ನೀವು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾದರೆ, ಪಟ್ಟಿ ಮಾಡಲಾದ ಯಾವುದೇ ಪ್ಲಾಟ್‌ಫಾರ್ಮ್‌ಗಳ ಮೂಲಕ ದೇಣಿಗೆ ನೀಡಲು ಪರಿಗಣಿಸಿ. ಹೆಚ್ಚುವರಿಯಾಗಿ, ಓಪನ್ ಕಲೆಕ್ಟಿವ್ ಮೂಲಕ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇಗೆ ದೇಣಿಗೆಗಳು ತೆರಿಗೆ-ವಿನಾಯತಿಯನ್ನು ಹೊಂದಿವೆ, ಏಕೆಂದರೆ ಯೋಜನೆಯು ಓಪನ್ ಕಲೆಕ್ಟಿವ್ ಯುರೋಪ್‌ನಿಂದ ಆರ್ಥಿಕವಾಗಿ ಆಯೋಜಿಸಲ್ಪಟ್ಟಿದ."
#: apps/client/src/pages/home/sections/features/index.tsx:107
msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection."
msgstr ""
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ 3 ವರ್ಷಗಳ ಕಠಿಣ ಪರಿಶ್ರಮದ ಉತ್ಸಾಹದ ಯೋಜನೆಯಾಗಿದೆ ಮತ್ತು ಅದರೊಂದಿಗೆ (ಹತ್ತಿರ) ಪರಿಪೂರ್ಣತೆಗೆ ನಿರ್ಮಿಸಲಾದ ಹಲವಾರು ಮರು-ಪುನರಾವರ್ತಿತ ಆಲೋಚನೆಗಳು ಮತ್ತು ವೈಶಿಷ್ಟ್ಯಗಳು ಬರುತ್ತದೆ."
#: apps/client/src/pages/home/sections/contributors/index.tsx:22
msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience."
msgstr ""
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅದರ ರೋಮಾಂಚಕ ಸಮುದಾಯಕ್ಕೆ ಧನ್ಯವಾದಗಳು. ಈ ಯೋಜನೆಯು ತಮ್ಮ ಸಮಯ ಮತ್ತು ಕೌಶಲ್ಯಗಳನ್ನು ಮೀಸಲಿಟ್ಟ ಹಲವಾರು ವ್ಯಕ್ತಿಗಳಿಗೆ ಅದರ ಪ್ರಗತಿಗೆ ಬದ್ಧವಾಗಿದೆ. ಕೆಳಗೆ, GitHub ನಲ್ಲಿ ಅದರ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ವರ್ಧಿಸಿದ ಕೋಡರ್‌ಗಳನ್ನು ಮತ್ತು ಕ್ರೌಡಿನ್‌ನಲ್ಲಿ ಭಾಷಾಂತರಿಸಿದ ಭಾಷಾಶಾಸ್ತ್ರಜ್ಞರನ್ನು ವಿಶಾಲ ಪ್ರೇಕ್ಷಕರಿಗೆ ಪ್ರವೇಶಿಸುವಂತೆ ನಾವು ಆಚರಿಸುತ್ತೇವೆ."
#: apps/client/src/pages/builder/_components/toolbar.tsx:63
msgid "Redo"
msgstr ""
msgstr "ಮತ್ತೆಮಾಡು"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:129
msgid "Remove"
msgstr ""
msgstr "ತೆಗೆದುಹಾಕಿ"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:83
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:128
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:150
msgid "Rename"
msgstr ""
msgstr "ಮರುಹೆಸರಿಸಿ"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
msgstr "ಇಮೇಲ್ ದೃಢೀಕರಣ ಲಿಂಕ್ ಅನ್ನು ಮರುಕಳುಹಿಸಿ"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:124
msgid "Reset"
msgstr ""
msgstr "ಮರುಹೊಂದಿಸಿ"
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210
msgid "Reset Layout"
msgstr ""
msgstr "ಲೇಔಟ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ"
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ"
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ"
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
msgstr "ಜೂಮ್ ಮರುಹೊಂದಿಸಿ"
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
#: apps/client/src/pages/dashboard/resumes/page.tsx:35
msgid "Resumes"
msgstr ""
msgstr "ರೆಸ್ಯೂಮೇ"
#: apps/client/src/pages/home/sections/statistics/index.tsx:14
msgid "Resumes Generated"
msgstr ""
msgstr "ರೆಸ್ಯೂಮ್‌ಗಳನ್ನು ರಚಿಸಲಾಗಿದೆ"
#: apps/client/src/pages/home/sections/features/index.tsx:105
msgid "Rich in features, not in pricing."
msgstr ""
msgstr "ವೈಶಿಷ್ಟ್ಯಗಳಲ್ಲಿ ಸಮೃದ್ಧವಾಗಿದೆ, ಬೆಲೆಯಲ್ಲಿ ಅಲ್ಲ."
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143
msgid "Rounded"
msgstr ""
msgstr "ದುಂಡಾದ"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:166
msgid "Scan the QR code below with your authenticator app to setup 2FA on your account."
msgstr ""
msgstr "ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ 2FA ಸೆಟಪ್ ಮಾಡಲು ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್‌ನೊಂದಿಗೆ ಕೆಳಗಿನ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿ."
#. Score or honors for the degree, for example, CGPA or magna cum laude
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92
msgid "Score"
msgstr ""
msgstr "ಅಂಕ"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
msgid "Search for a font family"
msgstr ""
msgstr "ಫಾಂಟ್ ಕುಟುಂಬಕ್ಕಾಗಿ ಹುಡುಕಿ"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
msgid "Search for a font subset"
msgstr ""
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
msgid "Search for a font variant"
msgstr ""
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
#: apps/client/src/components/locale-switch.tsx:42
msgid "Search for a language"
msgstr ""
msgstr "ಭಾಷೆಗಾಗಿ ಹುಡುಕಿ"
#: apps/client/src/pages/home/sections/features/index.tsx:55
msgid "Secure with two-factor authentication"
msgstr ""
msgstr "ಎರಡು ಅಂಶದ ದೃಢೀಕರಣದೊಂದಿಗೆ ಸುರಕ್ಷಿತ"
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
msgid "Security"
msgstr ""
msgstr "ಭದ್ರತೆ"
#: apps/client/src/pages/home/sections/features/index.tsx:49
msgid "Self-host with Docker"
msgstr ""
msgstr "ಡಾಕರ್ ಜೊತೆಗೆ ಸ್ವಯಂ ಹೋಸ್ಟ್"
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
msgstr "ಇಮೇಲ್ ಕಳುಹಿಸಿ"
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
msgid "Send me a message"
msgstr ""
msgstr "ಸಂದೇಶ ಕಳುಹಿಸಿ"
#: apps/client/src/components/user-options.tsx:28
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:92
#: apps/client/src/pages/dashboard/settings/page.tsx:16
#: apps/client/src/pages/dashboard/settings/page.tsx:26
msgid "Settings"
msgstr ""
msgstr "ಸೆಟ್ಟಿಂಗ್ಸಗಳು"
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:157
msgid "Setup two-factor authentication on your account"
@ -1672,4 +1673,3 @@ msgstr "ಗಾತ್ರ ಹಿಗ್ಗಿಸಿ"
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr "ಗಾತ್ರ ಕುಗ್ಗಿಸಿ"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ml\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Malayalam\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: mr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Marathi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ne\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: no\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: or\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Odia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ro\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ru\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sv\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ta\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Tamil\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: te\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Telugu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: th\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: uk\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\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"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"PO-Revision-Date: 2023-11-20 17:59\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -120,7 +120,7 @@ msgstr ""
msgid "Add New Page"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:70
#: apps/client/src/components/ai-actions.tsx:79
msgid "AI"
msgstr ""
@ -238,8 +238,8 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:106
msgid "Casual"
msgstr ""
@ -252,7 +252,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:88
#: apps/client/src/components/ai-actions.tsx:97
msgid "Change Tone"
msgstr ""
@ -288,8 +288,8 @@ msgstr ""
msgid "Company"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:106
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:118
msgid "Confident"
msgstr ""
@ -539,7 +539,7 @@ msgstr ""
msgid "Finally,"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:81
#: apps/client/src/components/ai-actions.tsx:90
msgid "Fix Spelling & Grammar"
msgstr ""
@ -588,8 +588,8 @@ msgstr ""
msgid "Free, forever"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:112
#: apps/client/src/components/ai-actions.tsx:115
#: apps/client/src/components/ai-actions.tsx:121
#: apps/client/src/components/ai-actions.tsx:124
msgid "Friendly"
msgstr ""
@ -605,7 +605,7 @@ msgstr ""
msgid "Get Started"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:10
#: apps/client/src/pages/auth/_components/social-auth.tsx:18
msgid "GitHub"
msgstr ""
@ -622,7 +622,7 @@ msgstr ""
msgid "Go to Dashboard"
msgstr ""
#: apps/client/src/pages/auth/_components/social-auth.tsx:17
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
msgid "Google"
msgstr ""
@ -704,7 +704,7 @@ msgstr ""
msgid "Import an existing resume"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:76
#: apps/client/src/components/ai-actions.tsx:85
msgid "Improve Writing"
msgstr ""
@ -949,6 +949,7 @@ msgstr ""
msgid "One-Time Password"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:56
#: apps/client/src/libs/axios.ts:34
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188
#: apps/client/src/services/resume/print.tsx:34
@ -1068,8 +1069,8 @@ msgstr ""
msgid "Primary Color"
msgstr ""
#: apps/client/src/components/ai-actions.tsx:100
#: apps/client/src/components/ai-actions.tsx:103
#: apps/client/src/components/ai-actions.tsx:109
#: apps/client/src/components/ai-actions.tsx:112
msgid "Professional"
msgstr ""
@ -1672,4 +1673,3 @@ msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:77
msgid "Zoom Out"
msgstr ""

View File

@ -2,20 +2,36 @@ import { t } from "@lingui/macro";
import { GithubLogo, GoogleLogo } from "@phosphor-icons/react";
import { Button } from "@reactive-resume/ui";
export const SocialAuth = () => (
<div className="grid grid-cols-2 gap-4">
<Button asChild size="lg" className="w-full !bg-[#222] !text-white hover:!bg-[#222]/80">
<a href="/api/auth/github">
<GithubLogo className="mr-3 h-4 w-4" />
{t`GitHub`}
</a>
</Button>
import { useAuthProviders } from "@/client/services/auth/providers";
<Button asChild size="lg" className="w-full !bg-[#4285F4] !text-white hover:!bg-[#4285F4]/80">
<a href="/api/auth/google">
<GoogleLogo className="mr-3 h-4 w-4" />
{t`Google`}
</a>
</Button>
</div>
);
export const SocialAuth = () => {
const { providers } = useAuthProviders();
if (!providers || providers.length === 0) return null;
return (
<div className="grid grid-cols-2 gap-4">
{providers.includes("github") && (
<Button asChild size="lg" className="w-full !bg-[#222] !text-white hover:!bg-[#222]/80">
<a href="/api/auth/github">
<GithubLogo className="mr-3 h-4 w-4" />
{t`GitHub`}
</a>
</Button>
)}
{providers.includes("google") && (
<Button
asChild
size="lg"
className="w-full !bg-[#4285F4] !text-white hover:!bg-[#4285F4]/80"
>
<a href="/api/auth/google">
<GoogleLogo className="mr-3 h-4 w-4" />
{t`Google`}
</a>
</Button>
)}
</div>
);
};

View File

@ -1,10 +1,12 @@
import { t } from "@lingui/macro";
import { cn } from "@reactive-resume/utils";
import { useMemo } from "react";
import { Link, matchRoutes, Outlet, useLocation } from "react-router-dom";
import { LocaleSwitch } from "@/client/components/locale-switch";
import { Logo } from "@/client/components/logo";
import { ThemeSwitch } from "@/client/components/theme-switch";
import { useAuthProviders } from "@/client/services/auth/providers";
import { SocialAuth } from "./_components/social-auth";
@ -13,8 +15,13 @@ const authRoutes = [{ path: "/auth/login" }, { path: "/auth/register" }];
export const AuthLayout = () => {
const location = useLocation();
const { providers } = useAuthProviders();
const emailAuthDisabled = !providers || !providers.includes("email");
const isAuthRoute = useMemo(() => matchRoutes(authRoutes, location) !== null, [location]);
if (!providers) return null;
return (
<div className="flex h-screen w-screen">
<div className="relative flex w-full flex-col justify-center gap-y-8 px-12 sm:mx-auto sm:basis-[420px] sm:px-0 lg:basis-[480px] lg:px-12">
@ -33,7 +40,7 @@ export const AuthLayout = () => {
{isAuthRoute && (
<>
<div className="flex items-center gap-x-4">
<div className={cn("flex items-center gap-x-4", emailAuthDisabled && "hidden")}>
<hr className="flex-1" />
<span className="text-xs font-medium">
{t({

View File

@ -14,6 +14,7 @@ import {
FormMessage,
Input,
} from "@reactive-resume/ui";
import { cn } from "@reactive-resume/utils";
import { useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
@ -21,12 +22,16 @@ import { Link } from "react-router-dom";
import { z } from "zod";
import { useLogin } from "@/client/services/auth";
import { useAuthProviders } from "@/client/services/auth/providers";
type FormValues = z.infer<typeof loginSchema>;
export const LoginPage = () => {
const { login, loading } = useLogin();
const { providers } = useAuthProviders();
const emailAuthDisabled = !providers || !providers.includes("email");
const formRef = useRef<HTMLFormElement>(null);
usePasswordToggle(formRef);
@ -53,7 +58,7 @@ export const LoginPage = () => {
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Sign in to your account`}</h2>
<h6>
<h6 className={cn(emailAuthDisabled && "hidden")}>
<span className="opacity-75">{t`Don't have an account?`}</span>
<Button asChild variant="link" className="px-1.5">
<Link to="/auth/register">
@ -64,7 +69,7 @@ export const LoginPage = () => {
</h6>
</div>
<div>
<div className={cn(emailAuthDisabled && "hidden")}>
<Form {...form}>
<form
ref={formRef}

View File

@ -14,6 +14,7 @@ import {
FormMessage,
Input,
} from "@reactive-resume/ui";
import { cn } from "@reactive-resume/utils";
import { useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
@ -21,6 +22,7 @@ import { Link, useNavigate } from "react-router-dom";
import { z } from "zod";
import { useRegister } from "@/client/services/auth";
import { useAuthProviders } from "@/client/services/auth/providers";
type FormValues = z.infer<typeof registerSchema>;
@ -28,6 +30,9 @@ export const RegisterPage = () => {
const navigate = useNavigate();
const { register, loading } = useRegister();
const { providers } = useAuthProviders();
const emailAuthDisabled = !providers || !providers.includes("email");
const formRef = useRef<HTMLFormElement>(null);
usePasswordToggle(formRef);
@ -62,7 +67,7 @@ export const RegisterPage = () => {
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Create a new account`}</h2>
<h6>
<h6 className={cn(emailAuthDisabled && "hidden")}>
<span className="opacity-75">{t`Already have an account?`}</span>
<Button asChild variant="link" className="px-1.5">
<Link to="/auth/login">
@ -72,7 +77,7 @@ export const RegisterPage = () => {
</h6>
</div>
<div>
<div className={cn(emailAuthDisabled && "hidden")}>
<Form {...form}>
<form
ref={formRef}

View File

@ -1,4 +1,5 @@
import { t } from "@lingui/macro";
import { useLingui } from "@lingui/react";
import { Helmet } from "react-helmet-async";
import { ContributorsSection } from "./sections/contributors";
@ -11,22 +12,33 @@ import { SupportSection } from "./sections/support";
import { TemplatesSection } from "./sections/templates";
import { TestimonialsSection } from "./sections/testimonials";
export const HomePage = () => (
<main className="relative isolate bg-background">
<Helmet>
<title>
{t`Reactive Resume`} - {t`A free and open-source resume builder`}
</title>
</Helmet>
export const HomePage = () => {
const { i18n } = useLingui();
<HeroSection />
<LogoCloudSection />
<StatisticsSection />
<FeaturesSection />
<TemplatesSection />
<TestimonialsSection />
<SupportSection />
<FAQSection />
<ContributorsSection />
</main>
);
return (
<main className="relative isolate bg-background">
<Helmet prioritizeSeoTags>
<html lang={i18n.locale} />
<title>
{t`Reactive Resume`} - {t`A free and open-source resume builder`}
</title>
<meta
name="description"
content="A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume."
/>
</Helmet>
<HeroSection />
<LogoCloudSection />
<StatisticsSection />
<FeaturesSection />
<TemplatesSection />
<TestimonialsSection />
<SupportSection />
<FAQSection />
<ContributorsSection />
</main>
);
};

View File

@ -57,7 +57,7 @@ export const HeroSection = () => (
<img
width={3600}
height={2078}
src="/screenshots/builder.png"
src="/screenshots/builder.jpg"
alt="Reactive Resume - Screenshot - Builder Screen"
className="w-[76rem] rounded-lg bg-background/5 shadow-2xl ring-1 ring-foreground/10"
/>

View File

@ -3,6 +3,7 @@ import { QueryClientProvider } from "@tanstack/react-query";
import { HelmetProvider } from "react-helmet-async";
import { Outlet } from "react-router-dom";
import { helmetContext } from "../constants/helmet";
import { queryClient } from "../libs/query-client";
import { DialogProvider } from "./dialog";
import { LocaleProvider } from "./locale";
@ -11,18 +12,18 @@ import { Toaster } from "./toaster";
export const Providers = () => (
<LocaleProvider>
<QueryClientProvider client={queryClient}>
<ThemeProvider>
<TooltipProvider>
<DialogProvider>
<HelmetProvider>
<HelmetProvider context={helmetContext}>
<QueryClientProvider client={queryClient}>
<ThemeProvider>
<TooltipProvider>
<DialogProvider>
<Outlet />
<Toaster />
</HelmetProvider>
</DialogProvider>
</TooltipProvider>
</ThemeProvider>
</QueryClientProvider>
</DialogProvider>
</TooltipProvider>
</ThemeProvider>
</QueryClientProvider>
</HelmetProvider>
</LocaleProvider>
);

View File

@ -9,23 +9,21 @@ import { useAuthStore } from "@/client/stores/auth";
export const authLoader: LoaderFunction<UserDto> = async ({ request }) => {
const status = new URL(request.url).searchParams.get("status");
const { success } = authResponseSchema
.pick({ status: true })
.safeParse({ status: new URL(request.url).searchParams.get("status") });
const { success } = authResponseSchema.pick({ status: true }).safeParse({ status });
if (!success) return redirect("/auth/login");
if (status === "2fa_required") {
return redirect("/auth/verify-otp");
}
const user = await queryClient.fetchQuery({
queryKey: [USER_KEY],
queryFn: fetchUser,
});
if (!user) {
redirect("/auth/login");
}
if (status === "2fa_required") {
return redirect("/auth/verify-otp");
return redirect("/auth/login");
}
if (status === "authenticated") {

View File

@ -0,0 +1,24 @@
import { AuthProvidersDto } from "@reactive-resume/dto";
import { useQuery } from "@tanstack/react-query";
import { AUTH_PROVIDERS_KEY } from "@/client/constants/query-keys";
import { axios } from "@/client/libs/axios";
export const getAuthProviders = async () => {
const response = await axios.get<AuthProvidersDto>(`/auth/providers`);
return response.data;
};
export const useAuthProviders = () => {
const {
error,
isPending: loading,
data: providers,
} = useQuery({
queryKey: [AUTH_PROVIDERS_KEY],
queryFn: getAuthProviders,
});
return { providers, loading, error };
};

View File

@ -1,6 +1,7 @@
import { Language } from "@reactive-resume/utils";
import { useQuery } from "@tanstack/react-query";
import { LANGUAGES_KEY } from "@/client/constants/query-keys";
import { axios } from "@/client/libs/axios";
export const fetchLanguages = async () => {
@ -15,7 +16,7 @@ export const useLanguages = () => {
isPending: loading,
data: languages,
} = useQuery({
queryKey: ["translation", "languages"],
queryKey: [LANGUAGES_KEY],
queryFn: fetchLanguages,
});

View File

@ -106,6 +106,12 @@ export class AuthController {
return this.handleAuthenticationResponse(user, response);
}
@Get("providers")
getAuthProviders() {
return this.authService.getAuthProviders();
}
// OAuth Flows
@ApiTags("OAuth", "GitHub")
@Get("github")
@UseGuards(GitHubGuard)

View File

@ -32,22 +32,6 @@ export class AuthModule {
TwoFactorStrategy,
// OAuth2 Strategies
{
provide: GoogleStrategy,
inject: [ConfigService, UserService],
useFactory: (configService: ConfigService<Config>, userService: UserService) => {
try {
const clientID = configService.getOrThrow("GOOGLE_CLIENT_ID");
const clientSecret = configService.getOrThrow("GOOGLE_CLIENT_SECRET");
const callbackURL = configService.getOrThrow("GOOGLE_CALLBACK_URL");
return new GoogleStrategy(clientID, clientSecret, callbackURL, userService);
} catch (error) {
return new DummyStrategy();
}
},
},
{
provide: GitHubStrategy,
inject: [ConfigService, UserService],
@ -63,6 +47,22 @@ export class AuthModule {
}
},
},
{
provide: GoogleStrategy,
inject: [ConfigService, UserService],
useFactory: (configService: ConfigService<Config>, userService: UserService) => {
try {
const clientID = configService.getOrThrow("GOOGLE_CLIENT_ID");
const clientSecret = configService.getOrThrow("GOOGLE_CLIENT_SECRET");
const callbackURL = configService.getOrThrow("GOOGLE_CALLBACK_URL");
return new GoogleStrategy(clientID, clientSecret, callbackURL, userService);
} catch (error) {
return new DummyStrategy();
}
},
},
],
exports: [AuthService],
};

View File

@ -7,7 +7,7 @@ import {
import { ConfigService } from "@nestjs/config";
import { JwtService } from "@nestjs/jwt";
import { PrismaClientKnownRequestError } from "@prisma/client/runtime/library";
import { LoginDto, RegisterDto } from "@reactive-resume/dto";
import { AuthProvidersDto, LoginDto, RegisterDto } from "@reactive-resume/dto";
import { ErrorMessage } from "@reactive-resume/utils";
import * as bcryptjs from "bcryptjs";
import { randomBytes } from "crypto";
@ -171,6 +171,32 @@ export class AuthService {
});
}
getAuthProviders() {
const providers: AuthProvidersDto = [];
if (!this.configService.get("DISABLE_EMAIL_AUTH")) {
providers.push("email");
}
if (
this.configService.get("GITHUB_CLIENT_ID") &&
this.configService.get("GITHUB_CLIENT_SECRET") &&
this.configService.get("GITHUB_CALLBACK_URL")
) {
providers.push("github");
}
if (
this.configService.get("GOOGLE_CLIENT_ID") &&
this.configService.get("GOOGLE_CLIENT_SECRET") &&
this.configService.get("GOOGLE_CALLBACK_URL")
) {
providers.push("google");
}
return providers;
}
// Email Verification Flows
async sendVerificationEmail(email: string) {
try {

View File

@ -6,8 +6,7 @@ export const configSchema = z.object({
// Ports
PORT: z.coerce.number().default(3000),
// Client Port & URL (only for development environments)
__DEV__CLIENT_PORT: z.coerce.number().optional(),
// Client URL (only for development environments)
__DEV__CLIENT_URL: z.string().url().optional(),
// URLs
@ -44,7 +43,10 @@ export const configSchema = z.object({
// Crowdin (Optional)
CROWDIN_PROJECT_ID: z.coerce.number().optional(),
CROWDIN_ACCESS_TOKEN: z.string().optional(),
CROWDIN_PERSONAL_TOKEN: z.string().optional(),
// Email (Optional)
DISABLE_EMAIL_AUTH: z.coerce.boolean().optional().default(false),
// GitHub (OAuth)
GITHUB_CLIENT_ID: z.string().optional(),

View File

@ -35,21 +35,25 @@ export class ContributorsService {
async fetchCrowdinContributors() {
const projectId = this.configService.getOrThrow("CROWDIN_PROJECT_ID");
const accessToken = this.configService.getOrThrow("CROWDIN_ACCESS_TOKEN");
const accessToken = this.configService.getOrThrow("CROWDIN_PERSONAL_TOKEN");
const response = await this.httpService.axiosRef.get(
`https://api.crowdin.com/api/v2/projects/${projectId}/members`,
{ headers: { Authorization: `Bearer ${accessToken}` } },
);
const { data } = response.data as CrowdinContributorsResponse;
try {
const response = await this.httpService.axiosRef.get(
`https://api.crowdin.com/api/v2/projects/${projectId}/members`,
{ headers: { Authorization: `Bearer ${accessToken}` } },
);
const { data } = response.data as CrowdinContributorsResponse;
return data.map(({ data }) => {
return {
id: data.id,
name: data.username,
url: `https://crowdin.com/profile/${data.username}`,
avatar: data.avatarUrl,
} satisfies ContributorDto;
});
return data.map(({ data }) => {
return {
id: data.id,
name: data.username,
url: `https://crowdin.com/profile/${data.username}`,
avatar: data.avatarUrl,
} satisfies ContributorDto;
});
} catch (error) {
return [];
}
}
}

View File

@ -24,7 +24,7 @@ export class TranslationService {
async fetchLanguages() {
try {
const projectId = this.configService.getOrThrow("CROWDIN_PROJECT_ID");
const accessToken = this.configService.getOrThrow("CROWDIN_ACCESS_TOKEN");
const accessToken = this.configService.getOrThrow("CROWDIN_PERSONAL_TOKEN");
const response = await this.httpService.axiosRef.get(
`https://api.crowdin.com/api/v2/projects/${projectId}/languages/progress?limit=100`,

View File

@ -2,7 +2,7 @@ base_path: .
preserve_hierarchy: false
project_id_env: CROWDIN_PROJECT_ID
api_token_env: CROWDIN_ACCESS_TOKEN
api_token_env: CROWDIN_PERSONAL_TOKEN
files:
- source: /apps/client/src/locales/en-US/messages.po

View File

@ -1,6 +1,7 @@
export * from "./forgot-password";
export * from "./login";
export * from "./message";
export * from "./providers";
export * from "./register";
export * from "./reset-password";
export * from "./response";

View File

@ -0,0 +1,6 @@
import { createZodDto } from "nestjs-zod/dto";
import { z } from "nestjs-zod/z";
const authProvidersSchema = z.array(z.enum(["email", "github", "google"]));
export class AuthProvidersDto extends createZodDto(authProvidersSchema) {}

View File

@ -1,7 +1,7 @@
{
"name": "@reactive-resume/source",
"description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
"version": "4.0.0-alpha.7",
"version": "4.0.0-alpha.8",
"license": "MIT",
"private": true,
"author": {
@ -35,21 +35,21 @@
"@lingui/swc-plugin": "^4.0.4",
"@lingui/vite-plugin": "^4.5.0",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.2.9",
"@nx/eslint-plugin": "17.1.2",
"@nx/eslint": "17.1.2",
"@nx/jest": "17.1.2",
"@nx/js": "17.1.2",
"@nx/nest": "17.1.2",
"@nx/node": "17.1.2",
"@nx/react": "17.1.2",
"@nx/vite": "17.1.2",
"@nx/web": "17.1.2",
"@nx/webpack": "17.1.2",
"@nx/workspace": "17.1.2",
"@nestjs/testing": "^10.2.10",
"@nx/eslint": "17.1.3",
"@nx/eslint-plugin": "17.1.3",
"@nx/jest": "17.1.3",
"@nx/js": "17.1.3",
"@nx/nest": "17.1.3",
"@nx/node": "17.1.3",
"@nx/react": "17.1.3",
"@nx/vite": "17.1.3",
"@nx/web": "17.1.3",
"@nx/webpack": "17.1.3",
"@nx/workspace": "17.1.3",
"@swc-node/register": "~1.6.8",
"@swc/cli": "~0.1.63",
"@swc/core": "~1.3.96",
"@swc/core": "~1.3.99",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
@ -60,56 +60,56 @@
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.8",
"@types/jest": "^29.5.9",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.get": "^4.4.9",
"@types/lodash.set": "^4.3.9",
"@types/multer": "^1.4.10",
"@types/node": "20.9.2",
"@types/multer": "^1.4.11",
"@types/node": "20.9.3",
"@types/nodemailer": "^6.4.14",
"@types/papaparse": "^5.3.11",
"@types/papaparse": "^5.3.12",
"@types/passport": "^1.0.16",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.14",
"@types/passport-local": "^1.0.38",
"@types/passport": "^1.0.15",
"@types/react-dom": "18.2.15",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.16",
"@types/react-is": "18.2.4",
"@types/react": "18.2.37",
"@types/retry": "^0.12.5",
"@types/webfontloader": "^1.6.37",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitejs/plugin-react-swc": "~3.5.0",
"@types/webfontloader": "^1.6.38",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "~4.2.0",
"@vitejs/plugin-react-swc": "~3.5.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "~0.34.6",
"autoprefixer": "^10.4.16",
"eslint": "~8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-lingui": "^0.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint": "~8.54.0",
"jest-environment-node": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jsdom": "~22.1.0",
"nx": "17.1.2",
"nx": "17.1.3",
"postcss": "8.4.31",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"postcss": "8.4.31",
"prettier": "^3.1.0",
"tailwindcss-animate": "^1.0.7",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "~5.2.2",
"vite-plugin-dts": "~3.6.3",
"typescript": "~5.3.2",
"vite": "~5.0.0",
"vite-plugin-dts": "~3.6.3",
"vitest": "~0.34.6"
},
"dependencies": {
@ -126,12 +126,12 @@
"@lingui/react": "^4.5.0",
"@nestjs-modules/mailer": "^1.9.1",
"@nestjs/axios": "^3.0.1",
"@nestjs/common": "^10.2.9",
"@nestjs/common": "^10.2.10",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.9",
"@nestjs/core": "^10.2.10",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.2",
"@nestjs/platform-express": "^10.2.9",
"@nestjs/platform-express": "^10.2.10",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/swagger": "^7.1.16",
"@nestjs/terminus": "^10.1.1",
@ -159,12 +159,12 @@
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/node": "^7.80.1",
"@songkeys/nestjs-redis-health": "^10.0.0",
"@sentry/node": "^7.81.0",
"@songkeys/nestjs-redis": "^10.0.0",
"@songkeys/nestjs-redis-health": "^10.0.0",
"@swc/helpers": "~0.5.3",
"@tanstack/react-query": "^5.8.4",
"@tiptap/extension-highlight": "^2.1.12",
@ -176,8 +176,8 @@
"@tiptap/starter-kit": "^2.1.12",
"@types/passport-jwt": "^3.0.13",
"async-retry": "^1.3.3",
"axios-auth-refresh": "^3.3.6",
"axios": "^1.6.2",
"axios-auth-refresh": "^3.3.6",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
@ -200,27 +200,27 @@
"nestjs-prisma": "^0.22.0",
"nestjs-zod": "^3.0.0",
"nodemailer": "^6.9.7",
"openai": "^4.19.0",
"openai": "^4.19.1",
"otplib": "^12.0.1",
"papaparse": "^5.4.1",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport": "^0.6.0",
"pdf-lib": "^1.17.1",
"prisma": "^5.6.0",
"puppeteer": "^21.4.1",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "18.2.0",
"react-helmet-async": "^1.3.0",
"react-helmet-async": "^2.0.0",
"react-hook-form": "^7.48.2",
"react-parallax-tilt": "^1.7.174",
"react-resizable-panels": "^0.0.59",
"react-resizable-panels": "^0.0.61",
"react-router-dom": "6.19.0",
"react-zoom-pan-pinch": "^3.3.0",
"react": "18.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"sharp": "^0.32.6",
@ -231,8 +231,8 @@
"use-keyboard-shortcut": "^1.1.6",
"usehooks-ts": "^2.9.1",
"webfontloader": "^1.6.28",
"zod-to-json-schema": "^3.22.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.0",
"zundo": "^2.0.0",
"zustand": "^4.4.6"
},

2129
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -101,7 +101,10 @@ services:
# -- Crowdin (Optional) --
# CROWDIN_PROJECT_ID:
# CROWDIN_ACCESS_TOKEN:
# CROWDIN_PERSONAL_TOKEN:
# -- Email --
# DISABLE_EMAIL_AUTH: true
# -- GitHub --
GITHUB_CLIENT_ID: github_client_id

View File

@ -98,7 +98,10 @@ services:
# -- Crowdin (Optional) --
# CROWDIN_PROJECT_ID:
# CROWDIN_ACCESS_TOKEN:
# CROWDIN_PERSONAL_TOKEN:
# -- Email --
# DISABLE_EMAIL_AUTH: true
# -- GitHub --
GITHUB_CLIENT_ID: github_client_id

View File

@ -109,7 +109,10 @@ services:
# -- Crowdin (Optional) --
# CROWDIN_PROJECT_ID:
# CROWDIN_ACCESS_TOKEN:
# CROWDIN_PERSONAL_TOKEN:
# -- Email --
# DISABLE_EMAIL_AUTH: true
# -- GitHub --
GITHUB_CLIENT_ID: github_client_id

View File

@ -103,7 +103,10 @@ services:
# -- Crowdin (Optional) --
# CROWDIN_PROJECT_ID:
# CROWDIN_ACCESS_TOKEN:
# CROWDIN_PERSONAL_TOKEN:
# -- Email --
# DISABLE_EMAIL_AUTH: true
# -- GitHub --
GITHUB_CLIENT_ID: github_client_id