From 48727be8094279ac817f6bbdb33ea45e48a9312f Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Fri, 10 Nov 2023 13:14:44 +0100 Subject: [PATCH] fix(i18n): delete local translations --- .env.example | 4 + .github/workflows/update-translations.yml | 14 +- .gitignore | 2 +- apps/client/src/libs/lingui.ts | 5 +- apps/client/src/locales/af-ZA/messages.po | 1493 ----------------- apps/client/src/locales/am-ET/messages.po | 1493 ----------------- apps/client/src/locales/ar-SA/messages.po | 1493 ----------------- apps/client/src/locales/bg-BG/messages.po | 1493 ----------------- apps/client/src/locales/bn-BD/messages.po | 1493 ----------------- apps/client/src/locales/ca-ES/messages.po | 1493 ----------------- apps/client/src/locales/cs-CZ/messages.po | 1493 ----------------- apps/client/src/locales/da-DK/messages.po | 1493 ----------------- apps/client/src/locales/de-DE/messages.po | 1493 ----------------- apps/client/src/locales/el-GR/messages.po | 1493 ----------------- apps/client/src/locales/en-US/messages.po | 1483 ---------------- apps/client/src/locales/es-ES/messages.po | 1493 ----------------- apps/client/src/locales/fa-IR/messages.po | 1493 ----------------- apps/client/src/locales/fi-FI/messages.po | 1493 ----------------- apps/client/src/locales/fr-FR/messages.po | 1493 ----------------- apps/client/src/locales/he-IL/messages.po | 1493 ----------------- apps/client/src/locales/hi-IN/messages.po | 1493 ----------------- apps/client/src/locales/hu-HU/messages.po | 1493 ----------------- apps/client/src/locales/id-ID/messages.po | 1493 ----------------- apps/client/src/locales/it-IT/messages.po | 1493 ----------------- apps/client/src/locales/ja-JP/messages.po | 1493 ----------------- apps/client/src/locales/km-KH/messages.po | 1493 ----------------- apps/client/src/locales/kn-IN/messages.po | 1493 ----------------- apps/client/src/locales/ko-KR/messages.po | 1493 ----------------- apps/client/src/locales/lt-LT/messages.po | 1493 ----------------- apps/client/src/locales/ml-IN/messages.po | 1493 ----------------- apps/client/src/locales/mr-IN/messages.po | 1493 ----------------- apps/client/src/locales/ne-NP/messages.po | 1493 ----------------- apps/client/src/locales/nl-NL/messages.po | 1493 ----------------- apps/client/src/locales/no-NO/messages.po | 1493 ----------------- apps/client/src/locales/or-IN/messages.po | 1493 ----------------- apps/client/src/locales/pl-PL/messages.po | 1493 ----------------- apps/client/src/locales/pt-BR/messages.po | 1493 ----------------- apps/client/src/locales/pt-PT/messages.po | 1493 ----------------- apps/client/src/locales/ro-RO/messages.po | 1493 ----------------- apps/client/src/locales/ru-RU/messages.po | 1493 ----------------- apps/client/src/locales/sr-SP/messages.po | 1493 ----------------- apps/client/src/locales/sv-SE/messages.po | 1493 ----------------- apps/client/src/locales/ta-IN/messages.po | 1493 ----------------- apps/client/src/locales/te-IN/messages.po | 1493 ----------------- apps/client/src/locales/th-TH/messages.po | 1493 ----------------- apps/client/src/locales/tr-TR/messages.po | 1493 ----------------- apps/client/src/locales/uk-UA/messages.po | 1493 ----------------- apps/client/src/locales/vi-VN/messages.po | 1493 ----------------- apps/client/src/locales/zh-CN/messages.po | 1493 ----------------- apps/client/src/locales/zh-TW/messages.po | 1493 ----------------- apps/client/src/locales/zu-ZA/messages.po | 1493 ----------------- apps/server/src/app.module.ts | 2 + apps/server/src/cache/cache.module.ts | 23 +- apps/server/src/config/schema.ts | 3 + apps/server/src/health/health.controller.ts | 18 +- apps/server/src/resume/resume.controller.ts | 18 +- apps/server/src/resume/resume.service.ts | 29 +- apps/server/src/storage/storage.service.ts | 23 +- .../src/translation/translation.controller.ts | 35 + .../src/translation/translation.module.ts | 10 + apps/server/src/user/user.service.ts | 19 +- apps/server/src/utils/utils.service.ts | 31 +- package.json | 3 - pnpm-lock.yaml | 179 +- tsconfig.base.json | 6 +- 65 files changed, 143 insertions(+), 70442 deletions(-) delete mode 100644 apps/client/src/locales/af-ZA/messages.po delete mode 100644 apps/client/src/locales/am-ET/messages.po delete mode 100644 apps/client/src/locales/ar-SA/messages.po delete mode 100644 apps/client/src/locales/bg-BG/messages.po delete mode 100644 apps/client/src/locales/bn-BD/messages.po delete mode 100644 apps/client/src/locales/ca-ES/messages.po delete mode 100644 apps/client/src/locales/cs-CZ/messages.po delete mode 100644 apps/client/src/locales/da-DK/messages.po delete mode 100644 apps/client/src/locales/de-DE/messages.po delete mode 100644 apps/client/src/locales/el-GR/messages.po delete mode 100644 apps/client/src/locales/en-US/messages.po delete mode 100644 apps/client/src/locales/es-ES/messages.po delete mode 100644 apps/client/src/locales/fa-IR/messages.po delete mode 100644 apps/client/src/locales/fi-FI/messages.po delete mode 100644 apps/client/src/locales/fr-FR/messages.po delete mode 100644 apps/client/src/locales/he-IL/messages.po delete mode 100644 apps/client/src/locales/hi-IN/messages.po delete mode 100644 apps/client/src/locales/hu-HU/messages.po delete mode 100644 apps/client/src/locales/id-ID/messages.po delete mode 100644 apps/client/src/locales/it-IT/messages.po delete mode 100644 apps/client/src/locales/ja-JP/messages.po delete mode 100644 apps/client/src/locales/km-KH/messages.po delete mode 100644 apps/client/src/locales/kn-IN/messages.po delete mode 100644 apps/client/src/locales/ko-KR/messages.po delete mode 100644 apps/client/src/locales/lt-LT/messages.po delete mode 100644 apps/client/src/locales/ml-IN/messages.po delete mode 100644 apps/client/src/locales/mr-IN/messages.po delete mode 100644 apps/client/src/locales/ne-NP/messages.po delete mode 100644 apps/client/src/locales/nl-NL/messages.po delete mode 100644 apps/client/src/locales/no-NO/messages.po delete mode 100644 apps/client/src/locales/or-IN/messages.po delete mode 100644 apps/client/src/locales/pl-PL/messages.po delete mode 100644 apps/client/src/locales/pt-BR/messages.po delete mode 100644 apps/client/src/locales/pt-PT/messages.po delete mode 100644 apps/client/src/locales/ro-RO/messages.po delete mode 100644 apps/client/src/locales/ru-RU/messages.po delete mode 100644 apps/client/src/locales/sr-SP/messages.po delete mode 100644 apps/client/src/locales/sv-SE/messages.po delete mode 100644 apps/client/src/locales/ta-IN/messages.po delete mode 100644 apps/client/src/locales/te-IN/messages.po delete mode 100644 apps/client/src/locales/th-TH/messages.po delete mode 100644 apps/client/src/locales/tr-TR/messages.po delete mode 100644 apps/client/src/locales/uk-UA/messages.po delete mode 100644 apps/client/src/locales/vi-VN/messages.po delete mode 100644 apps/client/src/locales/zh-CN/messages.po delete mode 100644 apps/client/src/locales/zh-TW/messages.po delete mode 100644 apps/client/src/locales/zu-ZA/messages.po create mode 100644 apps/server/src/translation/translation.controller.ts create mode 100644 apps/server/src/translation/translation.module.ts diff --git a/.env.example b/.env.example index de06263b..3e6df42b 100644 --- a/.env.example +++ b/.env.example @@ -57,6 +57,10 @@ REDIS_URL=redis://default:password@localhost:6379 # Sentry (for error reporting, Optional) # SENTRY_DSN= +# Crowdin (Optional) +CROWDIN_DISTRIBUTION_HASH= +CROWDIN_PERSONAL_TOKEN= + # GitHub (OAuth, Optional) GITHUB_CLIENT_ID= GITHUB_CLIENT_SECRET= diff --git a/.github/workflows/update-translations.yml b/.github/workflows/update-translations.yml index 8d85de21..b5db1d0e 100644 --- a/.github/workflows/update-translations.yml +++ b/.github/workflows/update-translations.yml @@ -10,20 +10,16 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 + - name: Checkout Repository + uses: actions/checkout@v4.1.1 - - name: crowdin action + - name: Sync Sources with Crowdin uses: crowdin/github-action@v1 with: upload_sources: true - create_pull_request: true + create_pull_request: false upload_translations: false - download_translations: true - localization_branch_name: l10n - pull_request_base_branch_name: "v4" - pull_request_title: "New Translations" - pull_request_body: "There have been new translations added to the project. Please review and merge the changes made on Crowdin to help keep them in sync." + download_translations: false env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.gitignore b/.gitignore index 143ac5fe..9b2a9795 100644 --- a/.gitignore +++ b/.gitignore @@ -48,4 +48,4 @@ libs/prisma # Lingui Compiled Messages apps/client/src/locales/_build/ -apps/client/src/locales/**/*.js \ No newline at end of file +apps/client/src/locales \ No newline at end of file diff --git a/apps/client/src/libs/lingui.ts b/apps/client/src/libs/lingui.ts index 421127e3..aeb6408a 100644 --- a/apps/client/src/libs/lingui.ts +++ b/apps/client/src/libs/lingui.ts @@ -1,6 +1,8 @@ import { i18n } from "@lingui/core"; import { t } from "@lingui/macro"; +import { axios } from "./axios"; + type Locale = "en-US" | "de-DE" | "zu-ZA"; export const defaultLocale = "en-US"; @@ -20,7 +22,8 @@ export const getLocales = () => { }; export async function dynamicActivate(locale: string) { - const { messages } = await import(`../locales/${locale}/messages.po`); + const response = await axios(`translation/${locale}`); + const messages = await response.data; i18n.load(locale, messages); i18n.activate(locale); diff --git a/apps/client/src/locales/af-ZA/messages.po b/apps/client/src/locales/af-ZA/messages.po deleted file mode 100644 index 8f40c348..00000000 --- a/apps/client/src/locales/af-ZA/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: af\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Afrikaans\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/am-ET/messages.po b/apps/client/src/locales/am-ET/messages.po deleted file mode 100644 index 071ee921..00000000 --- a/apps/client/src/locales/am-ET/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: am\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: am\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Amharic\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ar-SA/messages.po b/apps/client/src/locales/ar-SA/messages.po deleted file mode 100644 index 89c2bd62..00000000 --- a/apps/client/src/locales/ar-SA/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ar\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" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ar\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Arabic\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/bg-BG/messages.po b/apps/client/src/locales/bg-BG/messages.po deleted file mode 100644 index 089c2399..00000000 --- a/apps/client/src/locales/bg-BG/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: bg\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Bulgarian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/bn-BD/messages.po b/apps/client/src/locales/bn-BD/messages.po deleted file mode 100644 index 339493bf..00000000 --- a/apps/client/src/locales/bn-BD/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: bn\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Bengali\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ca-ES/messages.po b/apps/client/src/locales/ca-ES/messages.po deleted file mode 100644 index b0c9eeea..00000000 --- a/apps/client/src/locales/ca-ES/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ca\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Catalan\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/cs-CZ/messages.po b/apps/client/src/locales/cs-CZ/messages.po deleted file mode 100644 index 7fe9ea54..00000000 --- a/apps/client/src/locales/cs-CZ/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: cs\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Czech\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/da-DK/messages.po b/apps/client/src/locales/da-DK/messages.po deleted file mode 100644 index 4c3794c1..00000000 --- a/apps/client/src/locales/da-DK/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: da\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Danish\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/de-DE/messages.po b/apps/client/src/locales/de-DE/messages.po deleted file mode 100644 index f9ca6a0f..00000000 --- a/apps/client/src/locales/de-DE/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: de\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: German\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/el-GR/messages.po b/apps/client/src/locales/el-GR/messages.po deleted file mode 100644 index 0b37ed59..00000000 --- a/apps/client/src/locales/el-GR/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: el\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Greek\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/en-US/messages.po b/apps/client/src/locales/en-US/messages.po deleted file mode 100644 index 25182645..00000000 --- a/apps/client/src/locales/en-US/messages.po +++ /dev/null @@ -1,1483 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en-US\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "You have enabled two-factor authentication successfully." - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "{value, plural, one {Column} other {Columns}}" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "A free and open-source resume builder" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "A link has been copied to your clipboard." - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "A passion project by <0>Amruth Pillai" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "A password reset link should have been sent to your inbox, if an account existed with the email you provided." - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "A4" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "Accepts only {accept} files" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "Account" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "Add a custom field" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "Add a new item" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "Add a new item" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "Add a new section" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "Add New Page" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "AI" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "Already have an account?" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "An error occurred while importing your resume." - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "An error occurred while trying to create a new account." - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "An error occurred while trying to create your resume." - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "An error occurred while trying to enable two-factor authentication." - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "An error occurred while trying to print your resume." - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "An error occurred while trying to reset your password." - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "An error occurred while trying to send your password recovery email." - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "An error occurred while trying to sign in to your account." - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "An error occurred while trying to verify your email address." - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "An error occurred while validating the file." - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "Anyone with the link can view and download the resume." - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "API Key" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "Are you sure you want to delete this item?" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "Are you sure you want to delete your resume?" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "Are you sure you want to disable two-factor authentication?" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "Are you sure you want to lock this resume?" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "Are you sure you want to unlock this resume?" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "Are you sure?" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "Area of Study" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "Aspect Ratio" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "Awarder" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "Back" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "Background Color" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "Backup Code" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "Basics" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "Basics" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "Border" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "Border Radius" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "Built with" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "By the community, for the community." - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "Cancel" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "Casual" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "Center Artboard" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "Change Password" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "Change Tone" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "Changed your mind about the name? Give it a new one." - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "Check your email for the confirmation link to update your email address." - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "Circle" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "Close" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "Code" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "Code must be exactly 6 digits long." - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "Columns" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "Company" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "Confident" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "Confirm New Password" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "Continue" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "Copy" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "Copy Link to Resume" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "Copy to Clipboard" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "Create" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "Create a new account" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "Create a new item" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "Create a new resume" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "Create one now" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "Create Sample Resume" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "Custom Section" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "Danger Zone" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "Dark" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "Date" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "Delete" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "Delete Account" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "Description" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "Disable" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "Disable 2FA" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "Discard" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "Documentation" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "Don't have an account?" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "Don't know where to begin? Hit the docs!" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "Don't see your language? <0>Help translate the app." - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "Donate to Reactive Resume" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "Download PDF" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "Downloads" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "Duplicate" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "Duplicate an existing item" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "Duplicate an existing resume" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "Edit" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "Effects" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "Email" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "Enable 2FA" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "English" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "Enter a new password below, and make sure it's secure." - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "Enter the one-time password provided by your authenticator app below." - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "Enter your email address and we will send you a link to reset your password if the account exists." - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "Errors" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "Export" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "File" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "Filetype" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "Finally," - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "Fix Spelling & Grammar" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "Fluency" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "Fluency (CEFR)" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "Font Family" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "Font Size" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "Font Subset" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "Font Variants" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "Forget" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "Forgot Password?" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "Forgot your password?" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "Format" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "Found a bug, or have an idea for a new feature?" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "Friendly" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "Full Name" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "Generate a random title for your resume" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "German" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "Get Started" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "GitHub" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "GitHub Stars" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "Give your old resume a new name." - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "Go to Dashboard" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "Google" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "Grayscale" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "Grid" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -msgstr "Headline" - -#: 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 "Here, you can update your account information such as your profile picture, name and username." - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "Here, you can update your profile to customize and personalize your experience." - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "Hidden" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "Hide" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "Hold <0>Ctrl to display your password temporarily." - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "Horizontal" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -msgstr "Icon" - -#: 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." -msgstr "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form." - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "Import" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "Import an existing resume" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "Improve Writing" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." - -#: 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 "In this section, you can change your password and enable/disable two-factor authentication." - -#: 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." -msgstr "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." - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "Information" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "Institution" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "Issuer" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "John Doe" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "john.doe" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "john.doe@example.com" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "JSON" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "Keywords" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "Label" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -msgstr "Language" - -#: 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 "Last updated {lastUpdated}" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "Layout" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "Learn more" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "Letter" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "Level" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "Licensed under <0>MIT" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "Light" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "Line Height" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "LinkedIn, JSON Resume, etc." - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "List" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "Locale" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "Location" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "Lock" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "Logout" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "Lost your device?" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "Main" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "March 2023" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "March 2023 - Present" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "Margin" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "Name" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "Name" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "Network" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "New Password" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "Note: This will make your account less secure." - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "Notes" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "One-Time Password" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "Open" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "Open books on a table" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "OpenAI did not return any choices for your text." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "OpenAI Integration" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "Options" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "or continue with" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "Organization" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "Page" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "Page {0}" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "Password" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "PDF" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "Phone" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "Photograph by Patrick Tomasso" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "Picture" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "Please note that this step is completely optional." - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "Please select a file type" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "Portrait" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "Position" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "Position" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "Powered by <0>Simple Icons" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "Primary Color" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "Professional" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "Profile" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "Public" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "Publisher" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "Raise an issue" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "Reactive Resume" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -msgstr "Reactive Resume - Screenshot - Builder Screen" - -#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 -msgid "Reactive Resume has helped people land jobs at these great companies:" -msgstr "Reactive Resume has helped people land jobs at these great companies:" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -msgstr "Redo" - -#: 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:128 -msgid "Remove" -msgstr "Remove" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "Rename" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "Resend email confirmation link" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "Reset" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "Reset Layout" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "Reset your password" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -msgstr "Reset Zoom" - -#: 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:31 -msgid "Resumes" -msgstr "Resumes" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "Resumes Generated" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "Rounded" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "Save Changes" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "Scan the QR code below with your authenticator app to setup 2FA on your account." - -#. 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 "Score" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "Search for a font family" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "Search for a font subset" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "Search for a font variant" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "Security" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "Send Email" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -msgstr "Send me a message" - -#: 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 "Settings" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "Setup two-factor authentication on your account" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "Sharing" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "Show" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "Show Break Line" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "Show Page Numbers" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "Sidebar" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "Sign in" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "Sign in now" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "Sign in to your account" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "Sign up" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "Size (in px)" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "Slug" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "Square" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "Start building from scratch" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "Start building your resume by giving it a name." - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "Start from scratch" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "Statistics" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "Statistics are available only for public resumes." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "Store Locally" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "Store your backup codes securely" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "Stored" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "Summary" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "Support the app by donating what you can!" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "System" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "Template" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "Text Color" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "That doesn't look like a valid OpenAI API key." - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "The passwords you entered do not match." - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "The resume you were looking for doesn't seem to exist, please check the link and try again." - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "Theme" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "There was an error while updating your resume." - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "This action can be reverted by clicking on the undo button in the floating toolbar." - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "This action cannot be undone. This will permanently delete your resume and cannot be recovered." - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "This resume is locked, please unlock to make further changes." - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "Tip: You can name the resume referring to the position you are applying for." - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "Title" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "Title" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "Toggle Page Break Line" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "Toggle Page Numbers" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "Two-Factor Authentication" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "Type <0>delete to confirm deleting your account." - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "Type of Study" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "Typography" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "Underline Links" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "Undo" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "Unlock" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "Unlocking a resume will allow you to make changes to it again." - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "Unverified" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "Update an existing item" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "Update an existing resume" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "URL" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "URL must start with https://" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "Use your backup code" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "Username" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "Users Signed Up" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "Validate" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "Validated" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "Value" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "Verified" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "Verify that two-factor authentication has been setup correctly" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "Verify your email address" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "Version 4" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "Views" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "Visible" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "Website" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "What's new in the latest version" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "You can add multiple keywords by separating them with a comma or pressing enter." - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "You can also enter your username." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "You should have received an email from <0>Reactive Resume with a link to verify your account." - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "You've got mail!" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "Your account and all your data has been deleted successfully. Goodbye!" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "Your email address has been verified successfully." - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "Your password has been updated successfully." - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "Zoom In" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "Zoom Out" diff --git a/apps/client/src/locales/es-ES/messages.po b/apps/client/src/locales/es-ES/messages.po deleted file mode 100644 index e88665d3..00000000 --- a/apps/client/src/locales/es-ES/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: es-ES\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Spanish\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/fa-IR/messages.po b/apps/client/src/locales/fa-IR/messages.po deleted file mode 100644 index dfdfdb73..00000000 --- a/apps/client/src/locales/fa-IR/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fa\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: fa\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Persian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/fi-FI/messages.po b/apps/client/src/locales/fi-FI/messages.po deleted file mode 100644 index d0161a42..00000000 --- a/apps/client/src/locales/fi-FI/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: fi\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Finnish\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/fr-FR/messages.po b/apps/client/src/locales/fr-FR/messages.po deleted file mode 100644 index 9a57677d..00000000 --- a/apps/client/src/locales/fr-FR/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: fr\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: French\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/he-IL/messages.po b/apps/client/src/locales/he-IL/messages.po deleted file mode 100644 index 25342e56..00000000 --- a/apps/client/src/locales/he-IL/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: he\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: he\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Hebrew\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/hi-IN/messages.po b/apps/client/src/locales/hi-IN/messages.po deleted file mode 100644 index 1070c39f..00000000 --- a/apps/client/src/locales/hi-IN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: hi\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Hindi\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/hu-HU/messages.po b/apps/client/src/locales/hu-HU/messages.po deleted file mode 100644 index 58f6fa65..00000000 --- a/apps/client/src/locales/hu-HU/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: hu\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Hungarian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/id-ID/messages.po b/apps/client/src/locales/id-ID/messages.po deleted file mode 100644 index d8681415..00000000 --- a/apps/client/src/locales/id-ID/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: id\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Indonesian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/it-IT/messages.po b/apps/client/src/locales/it-IT/messages.po deleted file mode 100644 index 7653b192..00000000 --- a/apps/client/src/locales/it-IT/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: it\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Italian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ja-JP/messages.po b/apps/client/src/locales/ja-JP/messages.po deleted file mode 100644 index a88e0c57..00000000 --- a/apps/client/src/locales/ja-JP/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ja\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Japanese\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/km-KH/messages.po b/apps/client/src/locales/km-KH/messages.po deleted file mode 100644 index 092c0034..00000000 --- a/apps/client/src/locales/km-KH/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: km\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Khmer\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/kn-IN/messages.po b/apps/client/src/locales/kn-IN/messages.po deleted file mode 100644 index cfaff169..00000000 --- a/apps/client/src/locales/kn-IN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: kn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: kn\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Kannada\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ko-KR/messages.po b/apps/client/src/locales/ko-KR/messages.po deleted file mode 100644 index c681db32..00000000 --- a/apps/client/src/locales/ko-KR/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ko\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Korean\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/lt-LT/messages.po b/apps/client/src/locales/lt-LT/messages.po deleted file mode 100644 index cf56c84a..00000000 --- a/apps/client/src/locales/lt-LT/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: lt\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" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: lt\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Lithuanian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ml-IN/messages.po b/apps/client/src/locales/ml-IN/messages.po deleted file mode 100644 index 97df4436..00000000 --- a/apps/client/src/locales/ml-IN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ml-IN\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Malayalam\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/mr-IN/messages.po b/apps/client/src/locales/mr-IN/messages.po deleted file mode 100644 index 1aab2f52..00000000 --- a/apps/client/src/locales/mr-IN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: mr\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: mr\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Marathi\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ne-NP/messages.po b/apps/client/src/locales/ne-NP/messages.po deleted file mode 100644 index 8ee74969..00000000 --- a/apps/client/src/locales/ne-NP/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ne\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ne-NP\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Nepali\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/nl-NL/messages.po b/apps/client/src/locales/nl-NL/messages.po deleted file mode 100644 index dcc3a1d3..00000000 --- a/apps/client/src/locales/nl-NL/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: nl\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Dutch\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/no-NO/messages.po b/apps/client/src/locales/no-NO/messages.po deleted file mode 100644 index 9d1876b7..00000000 --- a/apps/client/src/locales/no-NO/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: no\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Norwegian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/or-IN/messages.po b/apps/client/src/locales/or-IN/messages.po deleted file mode 100644 index 2cd8e986..00000000 --- a/apps/client/src/locales/or-IN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: or\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: or\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Odia\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/pl-PL/messages.po b/apps/client/src/locales/pl-PL/messages.po deleted file mode 100644 index e5a0e85b..00000000 --- a/apps/client/src/locales/pl-PL/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: pl\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" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: pl\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Polish\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/pt-BR/messages.po b/apps/client/src/locales/pt-BR/messages.po deleted file mode 100644 index 83bf6e8a..00000000 --- a/apps/client/src/locales/pt-BR/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: pt-BR\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Portuguese, Brazilian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/pt-PT/messages.po b/apps/client/src/locales/pt-PT/messages.po deleted file mode 100644 index b7f1ec05..00000000 --- a/apps/client/src/locales/pt-PT/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: pt-PT\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Portuguese\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ro-RO/messages.po b/apps/client/src/locales/ro-RO/messages.po deleted file mode 100644 index 4a472c09..00000000 --- a/apps/client/src/locales/ro-RO/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ro\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Romanian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ru-RU/messages.po b/apps/client/src/locales/ru-RU/messages.po deleted file mode 100644 index 43febaf6..00000000 --- a/apps/client/src/locales/ru-RU/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ru\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" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ru\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Russian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/sr-SP/messages.po b/apps/client/src/locales/sr-SP/messages.po deleted file mode 100644 index f2a8fbe0..00000000 --- a/apps/client/src/locales/sr-SP/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: sr\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" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: sr\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Serbian (Cyrillic)\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/sv-SE/messages.po b/apps/client/src/locales/sv-SE/messages.po deleted file mode 100644 index 3f3c7d9c..00000000 --- a/apps/client/src/locales/sv-SE/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: sv-SE\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Swedish\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/ta-IN/messages.po b/apps/client/src/locales/ta-IN/messages.po deleted file mode 100644 index 749b2d79..00000000 --- a/apps/client/src/locales/ta-IN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: ta\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Tamil\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/te-IN/messages.po b/apps/client/src/locales/te-IN/messages.po deleted file mode 100644 index cb2f83df..00000000 --- a/apps/client/src/locales/te-IN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: te\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Telugu\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/th-TH/messages.po b/apps/client/src/locales/th-TH/messages.po deleted file mode 100644 index e8b8bc57..00000000 --- a/apps/client/src/locales/th-TH/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: th\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Thai\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/tr-TR/messages.po b/apps/client/src/locales/tr-TR/messages.po deleted file mode 100644 index c366c629..00000000 --- a/apps/client/src/locales/tr-TR/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: tr\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Turkish\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/uk-UA/messages.po b/apps/client/src/locales/uk-UA/messages.po deleted file mode 100644 index a261a909..00000000 --- a/apps/client/src/locales/uk-UA/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: uk\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" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: uk\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Ukrainian\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/vi-VN/messages.po b/apps/client/src/locales/vi-VN/messages.po deleted file mode 100644 index e0306058..00000000 --- a/apps/client/src/locales/vi-VN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: vi\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Vietnamese\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/zh-CN/messages.po b/apps/client/src/locales/zh-CN/messages.po deleted file mode 100644 index 7eb15d77..00000000 --- a/apps/client/src/locales/zh-CN/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: zh\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: zh-CN\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Chinese Simplified\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/zh-TW/messages.po b/apps/client/src/locales/zh-TW/messages.po deleted file mode 100644 index 9ef5309f..00000000 --- a/apps/client/src/locales/zh-TW/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: zh\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: zh-TW\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Chinese Traditional\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -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." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" - -#: 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 "" - -#: 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." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:95 -msgid "Keywords" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -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 "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -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 "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -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:128 -msgid "Remove" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -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:31 -msgid "Resumes" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" - -#. 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 "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -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 "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "" - diff --git a/apps/client/src/locales/zu-ZA/messages.po b/apps/client/src/locales/zu-ZA/messages.po deleted file mode 100644 index 734eb76f..00000000 --- a/apps/client/src/locales/zu-ZA/messages.po +++ /dev/null @@ -1,1493 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-11-10 11:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: zu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: reactive-resume\n" -"X-Crowdin-Project-ID: 503410\n" -"X-Crowdin-Language: zu\n" -"X-Crowdin-File: messages.po\n" -"X-Crowdin-File-ID: 418\n" -"Project-Id-Version: reactive-resume\n" -"Language-Team: Zulu\n" -"PO-Revision-Date: 2023-11-10 10:22\n" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:182 -msgid "You have enabled two-factor authentication successfully." -msgstr "crwdns7056:0crwdne7056:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:113 -msgid "{value, plural, one {Column} other {Columns}}" -msgstr "crwdns7058:0value={value}crwdne7058:0" - -#: 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.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.<2>Your donations could be tax-deductible, depending on your location." -msgstr "crwdns7060:0crwdne7060:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:52 -msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "crwdns7062:0crwdne7062:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 -msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "crwdns7064:0crwdne7064:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:91 -msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "crwdns7066:0crwdne7066:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 -msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "crwdns7068:0crwdne7068:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 -msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "crwdns7070:0crwdne7070:0" - -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/home/sections/hero/index.tsx:35 -msgid "A free and open-source resume builder" -msgstr "crwdns7072:0crwdne7072:0" - -#: apps/client/src/pages/home/components/footer.tsx:19 -#: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "crwdns7074:0crwdne7074:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 -msgid "A link has been copied to your clipboard." -msgstr "crwdns7078:0crwdne7078:0" - -#: apps/client/src/components/copyright.tsx:29 -msgid "A passion project by <0>Amruth Pillai" -msgstr "crwdns7080:0crwdne7080:0" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:62 -msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "crwdns7082:0crwdne7082:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 -msgid "A4" -msgstr "crwdns7084:0crwdne7084:0" - -#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 -msgid "Accepts only {accept} files" -msgstr "crwdns7086:0{accept}crwdne7086:0" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 -msgid "Account" -msgstr "crwdns7088:0crwdne7088:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:131 -msgid "Add a custom field" -msgstr "crwdns7090:0crwdne7090:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147 -msgctxt "For example, add a new work experience, or add a new profile." -msgid "Add a new item" -msgstr "Add a new item" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:67 -msgid "Add a new item" -msgstr "crwdns7092:0crwdne7092:0" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:80 -#: apps/client/src/pages/builder/sidebars/left/index.tsx:197 -msgid "Add a new section" -msgstr "crwdns7094:0crwdne7094:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:267 -msgid "Add New Page" -msgstr "crwdns7098:0crwdne7098:0" - -#: apps/client/src/components/ai-actions.tsx:70 -msgid "AI" -msgstr "crwdns7100:0crwdne7100:0" - -#: apps/client/src/pages/auth/register/page.tsx:72 -msgid "Already have an account?" -msgstr "crwdns7102:0crwdne7102:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 -msgid "An error occurred while importing your resume." -msgstr "crwdns7104:0crwdne7104:0" - -#: apps/client/src/pages/auth/register/page.tsx:60 -msgid "An error occurred while trying to create a new account." -msgstr "crwdns7106:0crwdne7106:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:120 -msgid "An error occurred while trying to create your resume." -msgstr "crwdns7108:0crwdne7108:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:108 -msgid "An error occurred while trying to enable two-factor authentication." -msgstr "crwdns7110:0crwdne7110:0" - -#: apps/client/src/services/resume/print.ts:36 -msgid "An error occurred while trying to print your resume." -msgstr "crwdns7112:0crwdne7112:0" - -#: apps/client/src/pages/auth/reset-password/page.tsx:57 -msgid "An error occurred while trying to reset your password." -msgstr "crwdns7114:0crwdne7114:0" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:48 -msgid "An error occurred while trying to send your password recovery email." -msgstr "crwdns7116:0crwdne7116:0" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:53 -#: apps/client/src/pages/auth/login/page.tsx:52 -#: apps/client/src/pages/auth/verify-otp/page.tsx:53 -msgid "An error occurred while trying to sign in to your account." -msgstr "crwdns7118:0crwdne7118:0" - -#: apps/client/src/pages/auth/verify-email/page.tsx:40 -msgid "An error occurred while trying to verify your email address." -msgstr "crwdns7120:0crwdne7120:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:145 -msgid "An error occurred while validating the file." -msgstr "crwdns7122:0crwdne7122:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 -msgid "Anyone with the link can view and download the resume." -msgstr "crwdns7124:0crwdne7124:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 -msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "crwdns7126:0crwdne7126:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "crwdns7128:0crwdne7128:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115 -msgid "Are you sure you want to delete this item?" -msgstr "crwdns7130:0crwdne7130:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:163 -msgid "Are you sure you want to delete your resume?" -msgstr "crwdns7132:0crwdne7132:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:136 -msgid "Are you sure you want to disable two-factor authentication?" -msgstr "crwdns7134:0crwdne7134:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 -msgid "Are you sure you want to lock this resume?" -msgstr "crwdns7136:0crwdne7136:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 -msgid "Are you sure you want to unlock this resume?" -msgstr "crwdns7138:0crwdne7138:0" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Are you sure?" -msgstr "crwdns7140:0crwdne7140:0" - -#. For example, Computer Science or Business Administration -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 -msgid "Area of Study" -msgstr "crwdns7142:0crwdne7142:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:89 -msgid "Aspect Ratio" -msgstr "crwdns7144:0crwdne7144:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 -msgid "Awarder" -msgstr "crwdns7146:0crwdne7146:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 -msgid "Back" -msgstr "crwdns7148:0crwdne7148:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 -msgid "Background Color" -msgstr "crwdns7150:0crwdne7150:0" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:81 -msgid "Backup Code" -msgstr "crwdns7152:0crwdne7152:0" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:86 -msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "crwdns7154:0crwdne7154:0" - -#: apps/client/src/pages/builder/sidebars/left/index.tsx:57 -msgctxt "The Basics section of a Resume consists of User's Picture, Full Name, Location etc." -msgid "Basics" -msgstr "crwdns7156:0crwdne7156:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 -msgid "Basics" -msgstr "Basics" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:202 -msgid "Border" -msgstr "crwdns7160:0crwdne7160:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:134 -msgid "Border Radius" -msgstr "crwdns7162:0crwdne7162:0" - -#: apps/client/src/pages/public/page.tsx:76 -msgid "Built with" -msgstr "crwdns7164:0crwdne7164:0" - -#: apps/client/src/components/copyright.tsx:27 -msgid "By the community, for the community." -msgstr "crwdns7166:0crwdne7166:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:170 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:148 -msgid "Cancel" -msgstr "crwdns7168:0crwdne7168:0" - -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 -msgid "Casual" -msgstr "crwdns7170:0crwdne7170:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:92 -msgid "Center Artboard" -msgstr "crwdns7172:0crwdne7172:0" - -#: apps/client/src/pages/auth/reset-password/page.tsx:106 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 -msgid "Change Password" -msgstr "crwdns7174:0crwdne7174:0" - -#: apps/client/src/components/ai-actions.tsx:88 -msgid "Change Tone" -msgstr "crwdns7176:0crwdne7176:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 -msgid "Changed your mind about the name? Give it a new one." -msgstr "crwdns7178:0crwdne7178:0" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 -msgid "Check your email for the confirmation link to update your email address." -msgstr "crwdns7180:0crwdne7180:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:155 -msgid "Circle" -msgstr "crwdns7182:0crwdne7182:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:255 -msgid "Close" -msgstr "crwdns7184:0crwdne7184:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:212 -msgid "Code" -msgstr "crwdns7186:0crwdne7186:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:51 -msgid "Code must be exactly 6 digits long." -msgstr "crwdns7188:0crwdne7188:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:107 -msgid "Columns" -msgstr "crwdns7190:0crwdne7190:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 -msgid "Company" -msgstr "crwdns7192:0crwdne7192:0" - -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 -msgid "Confident" -msgstr "crwdns7194:0crwdne7194:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 -msgid "Confirm New Password" -msgstr "crwdns7196:0crwdne7196:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:245 -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:252 -msgid "Continue" -msgstr "crwdns7198:0crwdne7198:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 -msgid "Copy" -msgstr "crwdns7200:0crwdne7200:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:129 -msgid "Copy Link to Resume" -msgstr "crwdns7202:0crwdne7202:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 -msgid "Copy to Clipboard" -msgstr "crwdns7204:0crwdne7204:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:254 -msgid "Create" -msgstr "crwdns7206:0crwdne7206:0" - -#: apps/client/src/pages/auth/register/page.tsx:70 -msgid "Create a new account" -msgstr "crwdns7208:0crwdne7208:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 -msgid "Create a new item" -msgstr "crwdns7210:0crwdne7210:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:192 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 -msgid "Create a new resume" -msgstr "crwdns7212:0crwdne7212:0" - -#: apps/client/src/pages/auth/login/page.tsx:67 -msgctxt "This is a link to create a new account" -msgid "Create one now" -msgstr "crwdns7214:0crwdne7214:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:267 -msgid "Create Sample Resume" -msgstr "crwdns7216:0crwdne7216:0" - -#: apps/client/src/stores/resume.ts:45 -msgid "Custom Section" -msgstr "crwdns7218:0crwdne7218:0" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 -msgid "Danger Zone" -msgstr "crwdns7220:0crwdne7220:0" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80 -msgid "Dark" -msgstr "crwdns7222:0crwdne7222:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 -msgid "Date" -msgstr "crwdns7224:0crwdne7224:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:172 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 -msgid "Delete" -msgstr "crwdns7226:0crwdne7226:0" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 -msgid "Delete Account" -msgstr "crwdns7228:0crwdne7228:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 -msgid "Description" -msgstr "crwdns7230:0crwdne7230:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:150 -msgid "Disable" -msgstr "crwdns7232:0crwdne7232:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 -msgid "Disable 2FA" -msgstr "crwdns7234:0crwdne7234:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 -msgid "Discard" -msgstr "crwdns7236:0crwdne7236:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:111 -msgid "Documentation" -msgstr "crwdns7238:0crwdne7238:0" - -#: apps/client/src/pages/auth/login/page.tsx:64 -msgid "Don't have an account?" -msgstr "crwdns7240:0crwdne7240:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:89 -msgid "Don't know where to begin? Hit the docs!" -msgstr "crwdns7242:0crwdne7242:0" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 -msgid "Don't see your language? <0>Help translate the app." -msgstr "crwdns7716:0crwdne7716:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:41 -msgid "Donate to Reactive Resume" -msgstr "crwdns7246:0crwdne7246:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 -msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "crwdns7248:0crwdne7248:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 -msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "crwdns7250:0crwdne7250:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:136 -msgid "Download PDF" -msgstr "crwdns7252:0crwdne7252:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 -msgid "Downloads" -msgstr "crwdns7254:0crwdne7254:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:256 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 -msgid "Duplicate" -msgstr "crwdns7256:0crwdne7256:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 -msgid "Duplicate an existing item" -msgstr "crwdns7258:0crwdne7258:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 -msgid "Duplicate an existing resume" -msgstr "crwdns7260:0crwdne7260:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 -msgid "Edit" -msgstr "crwdns7262:0crwdne7262:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180 -msgid "Effects" -msgstr "crwdns7264:0crwdne7264:0" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:87 -#: apps/client/src/pages/auth/login/page.tsx:86 -#: apps/client/src/pages/auth/register/page.tsx:135 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183 -msgid "Email" -msgstr "crwdns7266:0crwdne7266:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 -msgid "Enable 2FA" -msgstr "crwdns7268:0crwdne7268:0" - -#: apps/client/src/libs/lingui.ts:10 -msgid "English" -msgstr "crwdns7270:0crwdne7270:0" - -#: apps/client/src/pages/auth/reset-password/page.tsx:74 -msgid "Enter a new password below, and make sure it's secure." -msgstr "crwdns7272:0crwdne7272:0" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:65 -msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "crwdns7274:0crwdne7274:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:181 -msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "crwdns7276:0crwdne7276:0" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:66 -msgid "Enter the one-time password provided by your authenticator app below." -msgstr "crwdns7278:0crwdne7278:0" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:75 -msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "crwdns7280:0crwdne7280:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 -msgid "Errors" -msgstr "crwdns7282:0crwdne7282:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:82 -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 -msgid "Export" -msgstr "crwdns7284:0crwdne7284:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 -msgid "File" -msgstr "crwdns7286:0crwdne7286:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 -msgid "Filetype" -msgstr "crwdns7288:0crwdne7288:0" - -#: apps/client/src/pages/home/sections/hero/index.tsx:33 -msgid "Finally," -msgstr "crwdns7290:0crwdne7290:0" - -#: apps/client/src/components/ai-actions.tsx:81 -msgid "Fix Spelling & Grammar" -msgstr "crwdns7292:0crwdne7292:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:51 -msgid "Fluency" -msgstr "crwdns7294:0crwdne7294:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:65 -msgid "Fluency (CEFR)" -msgstr "crwdns7296:0crwdne7296:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 -msgid "Font Family" -msgstr "crwdns7298:0crwdne7298:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 -msgid "Font Size" -msgstr "crwdns7300:0crwdne7300:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 -msgid "Font Subset" -msgstr "crwdns7302:0crwdne7302:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 -msgid "Font Variants" -msgstr "crwdns7304:0crwdne7304:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 -msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "crwdns7306:0crwdne7306:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 -msgid "Forget" -msgstr "crwdns7308:0crwdne7308:0" - -#: apps/client/src/pages/auth/login/page.tsx:122 -msgid "Forgot Password?" -msgstr "crwdns7310:0crwdne7310:0" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:73 -msgid "Forgot your password?" -msgstr "crwdns7312:0crwdne7312:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 -msgid "Format" -msgstr "crwdns7314:0crwdne7314:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:50 -msgid "Found a bug, or have an idea for a new feature?" -msgstr "crwdns7316:0crwdne7316:0" - -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 -msgid "Friendly" -msgstr "crwdns7318:0crwdne7318:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 -msgid "Full Name" -msgstr "crwdns7320:0crwdne7320:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:216 -msgid "Generate a random title for your resume" -msgstr "crwdns7322:0crwdne7322:0" - -#: apps/client/src/libs/lingui.ts:11 -msgid "German" -msgstr "crwdns7324:0crwdne7324:0" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 -msgid "Get Started" -msgstr "crwdns7326:0crwdne7326:0" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 -msgid "GitHub" -msgstr "crwdns7328:0crwdne7328:0" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:12 -msgid "GitHub Stars" -msgstr "crwdns7330:0crwdne7330:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 -msgid "Give your old resume a new name." -msgstr "crwdns7332:0crwdne7332:0" - -#: apps/client/src/pages/auth/verify-email/page.tsx:74 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 -msgid "Go to Dashboard" -msgstr "crwdns7334:0crwdne7334:0" - -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 -msgid "Google" -msgstr "crwdns7336:0crwdne7336:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:213 -msgid "Grayscale" -msgstr "crwdns7338:0crwdne7338:0" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:37 -msgid "Grid" -msgstr "crwdns7340:0crwdne7340:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 -msgid "Headline" -msgstr "crwdns7342:0crwdne7342:0" - -#: 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 "crwdns7344:0crwdne7344:0" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60 -msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "crwdns7346:0crwdne7346:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191 -msgid "Hidden" -msgstr "crwdns7348:0crwdne7348:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Hide" -msgstr "crwdns7350:0crwdne7350:0" - -#: apps/client/src/pages/auth/login/page.tsx:106 -#: apps/client/src/pages/auth/register/page.tsx:161 -#: apps/client/src/pages/auth/reset-password/page.tsx:95 -msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "crwdns7352:0crwdne7352:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:104 -msgid "Horizontal" -msgstr "crwdns7354:0crwdne7354:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 -msgid "Icon" -msgstr "crwdns7356:0crwdne7356:0" - -#: 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." -msgstr "crwdns7358:0crwdne7358:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 -msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "crwdns7360:0crwdne7360:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 -msgid "Import" -msgstr "crwdns7362:0crwdne7362:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 -#: 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 "crwdns7364:0crwdne7364:0" - -#: apps/client/src/components/ai-actions.tsx:76 -msgid "Improve Writing" -msgstr "crwdns7366:0crwdne7366:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 -msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "crwdns7368:0crwdne7368:0" - -#: 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 "crwdns7370:0crwdne7370:0" - -#: 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." -msgstr "crwdns7372:0crwdne7372:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:86 -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:123 -msgid "Information" -msgstr "crwdns7374:0crwdne7374:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 -msgid "Institution" -msgstr "crwdns7376:0crwdne7376:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 -msgid "Issuer" -msgstr "crwdns7378:0crwdne7378:0" - -#: apps/client/src/pages/auth/register/page.tsx:96 -msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." -msgid "John Doe" -msgstr "crwdns7380:0crwdne7380:0" - -#: apps/client/src/pages/auth/register/page.tsx:117 -msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." -msgid "john.doe" -msgstr "crwdns7382:0crwdne7382:0" - -#: apps/client/src/pages/auth/register/page.tsx:138 -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 "crwdns7384:0crwdne7384:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 -msgid "JSON" -msgstr "crwdns7386:0crwdne7386:0" - -#: 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:95 -msgid "Keywords" -msgstr "crwdns7388:0crwdne7388:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 -msgid "Label" -msgstr "crwdns7390:0crwdne7390:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:42 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:93 -msgid "Language" -msgstr "crwdns7392:0crwdne7392:0" - -#: 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 "crwdns7394:0{lastUpdated}crwdne7394:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:68 -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 -msgid "Layout" -msgstr "crwdns7396:0crwdne7396:0" - -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 -msgid "Learn more" -msgstr "crwdns7398:0crwdne7398:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 -msgid "Letter" -msgstr "crwdns7400:0crwdne7400:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 -msgid "Level" -msgstr "crwdns7402:0crwdne7402:0" - -#: apps/client/src/components/copyright.tsx:16 -msgid "Licensed under <0>MIT" -msgstr "crwdns7404:0crwdne7404:0" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 -msgid "Light" -msgstr "crwdns7406:0crwdne7406:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 -msgid "Line Height" -msgstr "crwdns7408:0crwdne7408:0" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 -msgid "LinkedIn, JSON Resume, etc." -msgstr "crwdns7410:0crwdne7410:0" - -#: apps/client/src/pages/dashboard/resumes/page.tsx:41 -msgid "List" -msgstr "crwdns7412:0crwdne7412:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/locale.tsx:36 -msgid "Locale" -msgstr "crwdns7718:0crwdne7718:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 -msgid "Location" -msgstr "crwdns7414:0crwdne7414:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 -msgid "Lock" -msgstr "crwdns7416:0crwdne7416:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 -msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "crwdns7418:0crwdne7418:0" - -#: apps/client/src/components/user-options.tsx:34 -#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 -msgid "Logout" -msgstr "crwdns7420:0crwdne7420:0" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:70 -msgid "Lost your device?" -msgstr "crwdns7422:0crwdne7422:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 -msgid "Main" -msgstr "crwdns7424:0crwdne7424:0" - -#. The month and year should be uniform across all languages. -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 -msgid "March 2023" -msgstr "crwdns7426:0crwdne7426:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 -msgid "March 2023 - Present" -msgstr "crwdns7428:0crwdne7428:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 -msgid "Margin" -msgstr "crwdns7430:0crwdne7430:0" - -#: apps/client/src/pages/auth/register/page.tsx:93 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40 -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:37 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 -msgid "Name" -msgstr "crwdns7432:0crwdne7432:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 -msgctxt "Name of the Certification" -msgid "Name" -msgstr "Name" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 -msgid "Network" -msgstr "crwdns7436:0crwdne7436:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 -msgid "New Password" -msgstr "crwdns7438:0crwdne7438:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:144 -msgid "Note: This will make your account less secure." -msgstr "crwdns7440:0crwdne7440:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:83 -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 -msgid "Notes" -msgstr "crwdns7442:0crwdne7442:0" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:88 -msgid "One-Time Password" -msgstr "crwdns7444:0crwdne7444:0" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 -msgid "Open" -msgstr "crwdns7446:0crwdne7446:0" - -#: apps/client/src/pages/auth/layout.tsx:48 -msgid "Open books on a table" -msgstr "crwdns7448:0crwdne7448:0" - -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 -msgid "OpenAI did not return any choices for your text." -msgstr "crwdns7450:0crwdne7450:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 -msgid "OpenAI Integration" -msgstr "crwdns7452:0crwdne7452:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 -msgid "Options" -msgstr "crwdns7454:0crwdne7454:0" - -#: apps/client/src/pages/auth/layout.tsx:30 -msgctxt "The user can either login with email/password, or continue with GitHub or Google." -msgid "or continue with" -msgstr "crwdns7456:0crwdne7456:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 -msgid "Organization" -msgstr "crwdns7458:0crwdne7458:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:75 -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 -msgid "Page" -msgstr "crwdns7460:0crwdne7460:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 -msgid "Page {0}" -msgstr "crwdns7462:0{0}crwdne7462:0" - -#: apps/client/src/pages/auth/login/page.tsx:101 -#: apps/client/src/pages/auth/register/page.tsx:156 -#: apps/client/src/pages/auth/reset-password/page.tsx:90 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 -msgid "Password" -msgstr "crwdns7464:0crwdne7464:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 -msgid "PDF" -msgstr "crwdns7466:0crwdne7466:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 -msgid "Phone" -msgstr "crwdns7468:0crwdne7468:0" - -#: apps/client/src/pages/auth/layout.tsx:59 -msgid "Photograph by Patrick Tomasso" -msgstr "crwdns7470:0crwdne7470:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:52 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 -msgid "Picture" -msgstr "crwdns7472:0crwdne7472:0" - -#: apps/client/src/pages/auth/verify-email/page.tsx:66 -msgid "Please note that this step is completely optional." -msgstr "crwdns7474:0crwdne7474:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 -msgid "Please select a file type" -msgstr "crwdns7476:0crwdne7476:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 -msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "crwdns7478:0crwdne7478:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:110 -msgid "Portrait" -msgstr "crwdns7480:0crwdne7480:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 -msgctxt "Position held at a company, for example, Software Engineer" -msgid "Position" -msgstr "crwdns7482:0crwdne7482:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 -msgid "Position" -msgstr "Position" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 -msgid "Powered by <0>Simple Icons" -msgstr "crwdns7486:0crwdne7486:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 -msgid "Primary Color" -msgstr "crwdns7488:0crwdne7488:0" - -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 -msgid "Professional" -msgstr "crwdns7490:0crwdne7490:0" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:58 -msgid "Profile" -msgstr "crwdns7492:0crwdne7492:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 -msgid "Public" -msgstr "crwdns7494:0crwdne7494:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 -msgid "Publisher" -msgstr "crwdns7496:0crwdne7496:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:70 -msgid "Raise an issue" -msgstr "crwdns7498:0crwdne7498:0" - -#: apps/client/src/components/copyright.tsx:38 -#: apps/client/src/components/icon.tsx:29 -#: apps/client/src/components/logo.tsx:29 -#: apps/client/src/pages/builder/page.tsx:39 -#: apps/client/src/pages/dashboard/resumes/page.tsx:20 -#: apps/client/src/pages/dashboard/settings/page.tsx:16 -#: apps/client/src/pages/home/components/footer.tsx:16 -#: apps/client/src/pages/home/page.tsx:12 -#: apps/client/src/pages/public/page.tsx:57 -#: apps/client/src/pages/public/page.tsx:78 -msgid "Reactive Resume" -msgstr "crwdns7500:0crwdne7500:0" - -#: apps/client/src/pages/home/sections/hero/index.tsx:56 -msgid "Reactive Resume - Screenshot - Builder Screen" -msgstr "crwdns7502:0crwdne7502:0" - -#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 -msgid "Reactive Resume has helped people land jobs at these great companies:" -msgstr "crwdns7504:0crwdne7504:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:66 -msgid "Redo" -msgstr "crwdns7506:0crwdne7506:0" - -#: 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:128 -msgid "Remove" -msgstr "crwdns7508:0crwdne7508:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:82 -#: 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 "crwdns7510:0crwdne7510:0" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201 -msgid "Resend email confirmation link" -msgstr "crwdns7512:0crwdne7512:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:123 -msgid "Reset" -msgstr "crwdns7514:0crwdne7514:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 -msgid "Reset Layout" -msgstr "crwdns7516:0crwdne7516:0" - -#: apps/client/src/pages/auth/reset-password/page.tsx:72 -msgid "Reset your password" -msgstr "crwdns7518:0crwdne7518:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:86 -msgid "Reset Zoom" -msgstr "crwdns7520:0crwdne7520:0" - -#: 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:31 -msgid "Resumes" -msgstr "crwdns7522:0crwdne7522:0" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:14 -msgid "Resumes Generated" -msgstr "crwdns7524:0crwdne7524:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 -msgid "Rounded" -msgstr "crwdns7526:0crwdne7526:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:255 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 -msgid "Save Changes" -msgstr "crwdns7528:0crwdne7528:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:179 -msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "crwdns7530:0crwdne7530:0" - -#. 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 "crwdns7532:0crwdne7532:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 -msgid "Search for a font family" -msgstr "crwdns7534:0crwdne7534:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 -msgid "Search for a font subset" -msgstr "crwdns7536:0crwdne7536:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 -msgid "Search for a font variant" -msgstr "crwdns7538:0crwdne7538:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 -msgid "Security" -msgstr "crwdns7540:0crwdne7540:0" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:97 -msgid "Send Email" -msgstr "crwdns7542:0crwdne7542:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:80 -msgid "Send me a message" -msgstr "crwdns7544:0crwdne7544:0" - -#: 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 "crwdns7546:0crwdne7546:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 -msgid "Setup two-factor authentication on your account" -msgstr "crwdns7548:0crwdne7548:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:76 -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 -msgid "Sharing" -msgstr "crwdns7550:0crwdne7550:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:77 -msgid "Show" -msgstr "crwdns7552:0crwdne7552:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 -msgid "Show Break Line" -msgstr "crwdns7554:0crwdne7554:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 -msgid "Show Page Numbers" -msgstr "crwdns7556:0crwdne7556:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 -msgid "Sidebar" -msgstr "crwdns7558:0crwdne7558:0" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:96 -#: apps/client/src/pages/auth/login/page.tsx:118 -#: apps/client/src/pages/auth/verify-otp/page.tsx:98 -msgid "Sign in" -msgstr "crwdns7560:0crwdne7560:0" - -#: apps/client/src/pages/auth/register/page.tsx:75 -msgid "Sign in now" -msgstr "crwdns7562:0crwdne7562:0" - -#: apps/client/src/pages/auth/login/page.tsx:62 -msgid "Sign in to your account" -msgstr "crwdns7564:0crwdne7564:0" - -#: apps/client/src/pages/auth/register/page.tsx:172 -msgid "Sign up" -msgstr "crwdns7566:0crwdne7566:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:73 -msgid "Size (in px)" -msgstr "crwdns7568:0crwdne7568:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 -msgid "Slug" -msgstr "crwdns7570:0crwdne7570:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:98 -#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 -msgid "Square" -msgstr "crwdns7572:0crwdne7572:0" - -#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 -msgid "Start building from scratch" -msgstr "crwdns7574:0crwdne7574:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:199 -msgid "Start building your resume by giving it a name." -msgstr "crwdns7576:0crwdne7576:0" - -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 -msgid "Start from scratch" -msgstr "crwdns7578:0crwdne7578:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:79 -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 -msgid "Statistics" -msgstr "crwdns7580:0crwdne7580:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 -msgid "Statistics are available only for public resumes." -msgstr "crwdns7582:0crwdne7582:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "crwdns7584:0crwdne7584:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:173 -msgid "Store your backup codes securely" -msgstr "crwdns7586:0crwdne7586:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "crwdns7588:0crwdne7588:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 -msgid "Summary" -msgstr "crwdns7590:0crwdne7590:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 -msgid "Support the app by donating what you can!" -msgstr "crwdns7592:0crwdne7592:0" - -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:78 -msgid "System" -msgstr "crwdns7594:0crwdne7594:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:65 -#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18 -msgid "Template" -msgstr "crwdns7596:0crwdne7596:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 -msgid "Text Color" -msgstr "crwdns7598:0crwdne7598:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "crwdns7600:0crwdne7600:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 -msgid "The passwords you entered do not match." -msgstr "crwdns7602:0crwdne7602:0" - -#: apps/client/src/pages/public/page.tsx:104 -msgid "The resume you were looking for doesn't seem to exist, please check the link and try again." -msgstr "crwdns7604:0crwdne7604:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:74 -#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 -#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:71 -msgid "Theme" -msgstr "crwdns7606:0crwdne7606:0" - -#: apps/client/src/services/resume/update.ts:35 -msgid "There was an error while updating your resume." -msgstr "crwdns7608:0crwdne7608:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 -msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "crwdns7610:0crwdne7610:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:165 -msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "crwdns7612:0crwdne7612:0" - -#: apps/client/src/pages/builder/_components/header.tsx:56 -msgid "This resume is locked, please unlock to make further changes." -msgstr "crwdns7614:0crwdne7614:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 -msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "crwdns7616:0crwdne7616:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:230 -msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "crwdns7618:0crwdne7618:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 -msgctxt "Name of the Award" -msgid "Title" -msgstr "crwdns7620:0crwdne7620:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:210 -msgid "Title" -msgstr "Title" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:101 -msgid "Toggle Page Break Line" -msgstr "crwdns7624:0crwdne7624:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:114 -msgid "Toggle Page Numbers" -msgstr "crwdns7626:0crwdne7626:0" - -#: apps/client/src/pages/auth/verify-otp/page.tsx:63 -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 -msgid "Two-Factor Authentication" -msgstr "crwdns7628:0crwdne7628:0" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 -msgid "Type <0>delete to confirm deleting your account." -msgstr "crwdns7630:0crwdne7630:0" - -#. For example, Bachelor's Degree or Master's Degree -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 -msgid "Type of Study" -msgstr "crwdns7632:0crwdne7632:0" - -#: apps/client/src/pages/builder/sidebars/right/index.tsx:71 -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 -msgid "Typography" -msgstr "crwdns7634:0crwdne7634:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:180 -msgid "Underline Links" -msgstr "crwdns7636:0crwdne7636:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:59 -msgid "Undo" -msgstr "crwdns7638:0crwdne7638:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 -msgid "Unlock" -msgstr "crwdns7640:0crwdne7640:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 -msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "crwdns7642:0crwdne7642:0" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Unverified" -msgstr "crwdns7644:0crwdne7644:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 -msgid "Update an existing item" -msgstr "crwdns7646:0crwdne7646:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:193 -msgid "Update an existing resume" -msgstr "crwdns7648:0crwdne7648:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 -msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "crwdns7650:0crwdne7650:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 -msgid "URL" -msgstr "crwdns7652:0crwdne7652:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 -msgid "URL must start with https://" -msgstr "crwdns7654:0crwdne7654:0" - -#: apps/client/src/pages/auth/backup-otp/page.tsx:63 -msgid "Use your backup code" -msgstr "crwdns7656:0crwdne7656:0" - -#: apps/client/src/pages/auth/register/page.tsx:114 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165 -msgid "Username" -msgstr "crwdns7658:0crwdne7658:0" - -#: apps/client/src/pages/home/sections/statistics/index.tsx:13 -msgid "Users Signed Up" -msgstr "crwdns7660:0crwdne7660:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 -msgid "Validate" -msgstr "crwdns7662:0crwdne7662:0" - -#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 -msgid "Validated" -msgstr "crwdns7664:0crwdne7664:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:57 -msgid "Value" -msgstr "crwdns7666:0crwdne7666:0" - -#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194 -msgid "Verified" -msgstr "crwdns7668:0crwdne7668:0" - -#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:172 -msgid "Verify that two-factor authentication has been setup correctly" -msgstr "crwdns7670:0crwdne7670:0" - -#: apps/client/src/pages/auth/verify-email/page.tsx:55 -msgid "Verify your email address" -msgstr "crwdns7672:0crwdne7672:0" - -#: apps/client/src/pages/home/sections/hero/index.tsx:24 -msgid "Version 4" -msgstr "crwdns7674:0crwdne7674:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 -msgid "Views" -msgstr "crwdns7676:0crwdne7676:0" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 -msgid "Visible" -msgstr "crwdns7678:0crwdne7678:0" - -#: apps/client/src/pages/auth/verify-email/page.tsx:68 -msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "crwdns7680:0crwdne7680:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 -#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109 -#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 -#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86 -#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 -#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 -#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 -#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 -msgid "Website" -msgstr "crwdns7682:0crwdne7682:0" - -#: apps/client/src/pages/home/sections/hero/index.tsx:27 -msgid "What's new in the latest version" -msgstr "crwdns7684:0crwdne7684:0" - -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 -#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:100 -msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "crwdns7686:0crwdne7686:0" - -#: apps/client/src/pages/auth/login/page.tsx:90 -msgid "You can also enter your username." -msgstr "crwdns7688:0crwdne7688:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 -msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "crwdns7690:0crwdne7690:0" - -#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 -msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "crwdns7692:0crwdne7692:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 -msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "crwdns7694:0crwdne7694:0" - -#: apps/client/src/pages/auth/verify-email/page.tsx:57 -msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "crwdns7696:0crwdne7696:0" - -#: apps/client/src/pages/auth/forgot-password/page.tsx:59 -msgid "You've got mail!" -msgstr "crwdns7698:0crwdne7698:0" - -#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 -msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "crwdns7700:0crwdne7700:0" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 -msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "crwdns7702:0crwdne7702:0" - -#: apps/client/src/pages/auth/verify-email/page.tsx:29 -msgid "Your email address has been verified successfully." -msgstr "crwdns7704:0crwdne7704:0" - -#: apps/client/src/services/openai/client.ts:11 -msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "crwdns7706:0crwdne7706:0" - -#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 -msgid "Your password has been updated successfully." -msgstr "crwdns7708:0crwdne7708:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:74 -msgid "Zoom In" -msgstr "crwdns7710:0crwdne7710:0" - -#: apps/client/src/pages/builder/_components/toolbar.tsx:80 -msgid "Zoom Out" -msgstr "crwdns7712:0crwdne7712:0" - diff --git a/apps/server/src/app.module.ts b/apps/server/src/app.module.ts index 44904d9a..54e28fdf 100644 --- a/apps/server/src/app.module.ts +++ b/apps/server/src/app.module.ts @@ -14,6 +14,7 @@ import { MailModule } from "./mail/mail.module"; import { PrinterModule } from "./printer/printer.module"; import { ResumeModule } from "./resume/resume.module"; import { StorageModule } from "./storage/storage.module"; +import { TranslationModule } from "./translation/translation.module"; import { UserModule } from "./user/user.module"; import { UtilsModule } from "./utils/utils.module"; @@ -34,6 +35,7 @@ import { UtilsModule } from "./utils/utils.module"; ResumeModule, StorageModule, PrinterModule, + TranslationModule, // Static Assets ServeStaticModule.forRoot({ diff --git a/apps/server/src/cache/cache.module.ts b/apps/server/src/cache/cache.module.ts index 444f93e8..734f1760 100644 --- a/apps/server/src/cache/cache.module.ts +++ b/apps/server/src/cache/cache.module.ts @@ -1,8 +1,6 @@ -import { CacheModule as NestCacheModule } from "@nestjs/cache-manager"; -import { Logger, Module } from "@nestjs/common"; +import { Module } from "@nestjs/common"; import { ConfigService } from "@nestjs/config"; import { RedisModule } from "@songkeys/nestjs-redis"; -import { redisStore } from "cache-manager-redis-yet"; import { Config } from "../config/schema"; @@ -14,25 +12,6 @@ import { Config } from "../config/schema"; config: { url: configService.getOrThrow("REDIS_URL") }, }), }), - NestCacheModule.registerAsync({ - isGlobal: true, - - inject: [ConfigService], - useFactory: async (configService: ConfigService) => { - const url = configService.get("REDIS_URL"); - - if (!url) { - Logger.warn( - "`REDIS_URL` was not set, using in-memory cache instead. This is not suitable for production.", - "CacheModule", - ); - - return {}; - } - - return { store: await redisStore({ url }) }; - }, - }), ], }) export class CacheModule {} diff --git a/apps/server/src/config/schema.ts b/apps/server/src/config/schema.ts index 823b5aad..7907bcc4 100644 --- a/apps/server/src/config/schema.ts +++ b/apps/server/src/config/schema.ts @@ -42,6 +42,9 @@ export const configSchema = z.object({ // Sentry SENTRY_DSN: z.string().url().startsWith("https://").optional(), + // Crowdin (Optional) + CROWDIN_DISTRIBUTION_HASH: z.string().optional(), + // GitHub (OAuth) GITHUB_CLIENT_ID: z.string().optional(), GITHUB_CLIENT_SECRET: z.string().optional(), diff --git a/apps/server/src/health/health.controller.ts b/apps/server/src/health/health.controller.ts index 48ca1b51..cd937241 100644 --- a/apps/server/src/health/health.controller.ts +++ b/apps/server/src/health/health.controller.ts @@ -1,11 +1,11 @@ -import { CacheInterceptor, CacheKey, CacheTTL } from "@nestjs/cache-manager"; -import { Controller, Get, NotFoundException, UseInterceptors } from "@nestjs/common"; +import { Controller, Get, NotFoundException } from "@nestjs/common"; import { ApiTags } from "@nestjs/swagger"; import { HealthCheck, HealthCheckService } from "@nestjs/terminus"; import { RedisService } from "@songkeys/nestjs-redis"; import { RedisHealthIndicator } from "@songkeys/nestjs-redis-health"; import { configSchema } from "../config/schema"; +import { UtilsService } from "../utils/utils.service"; import { BrowserHealthIndicator } from "./browser.health"; import { DatabaseHealthIndicator } from "./database.health"; import { StorageHealthIndicator } from "./storage.health"; @@ -20,14 +20,10 @@ export class HealthController { private readonly storage: StorageHealthIndicator, private readonly redisService: RedisService, private readonly redis: RedisHealthIndicator, + private readonly utils: UtilsService, ) {} - @Get() - @HealthCheck() - @UseInterceptors(CacheInterceptor) - @CacheKey("health:check") - @CacheTTL(30000) // 30 seconds - check() { + private run() { return this.health.check([ () => this.database.isHealthy(), () => this.storage.isHealthy(), @@ -42,6 +38,12 @@ export class HealthController { ]); } + @Get() + @HealthCheck() + check() { + return this.utils.getCachedOrSet(`health:check`, () => this.run(), 1000 * 30); // 30 seconds + } + @Get("environment") environment() { if (process.env.NODE_ENV === "production") throw new NotFoundException(); diff --git a/apps/server/src/resume/resume.controller.ts b/apps/server/src/resume/resume.controller.ts index dde367ec..f68a9df4 100644 --- a/apps/server/src/resume/resume.controller.ts +++ b/apps/server/src/resume/resume.controller.ts @@ -1,4 +1,3 @@ -import { CacheInterceptor, CacheKey } from "@nestjs/cache-manager"; import { BadRequestException, Body, @@ -11,7 +10,6 @@ import { Patch, Post, UseGuards, - UseInterceptors, } from "@nestjs/common"; import { ApiTags } from "@nestjs/swagger"; import { User as UserEntity } from "@prisma/client"; @@ -25,6 +23,7 @@ import { User } from "@/server/user/decorators/user.decorator"; import { OptionalGuard } from "../auth/guards/optional.guard"; import { TwoFactorGuard } from "../auth/guards/two-factor.guard"; import { ErrorMessage } from "../constants/error-message"; +import { UtilsService } from "../utils/utils.service"; import { Resume } from "./decorators/resume.decorator"; import { ResumeGuard } from "./guards/resume.guard"; import { ResumeService } from "./resume.service"; @@ -32,13 +31,18 @@ import { ResumeService } from "./resume.service"; @ApiTags("Resume") @Controller("resume") export class ResumeController { - constructor(private readonly resumeService: ResumeService) {} + constructor( + private readonly resumeService: ResumeService, + private readonly utils: UtilsService, + ) {} @Get("schema") - @UseInterceptors(CacheInterceptor) - @CacheKey("resume:schema") - async getSchema() { - return zodToJsonSchema(resumeDataSchema); + getSchema() { + return this.utils.getCachedOrSet( + `resume:schema`, + () => zodToJsonSchema(resumeDataSchema), + 1000 * 60 * 60 * 24, // 24 hours + ); } @Post() diff --git a/apps/server/src/resume/resume.service.ts b/apps/server/src/resume/resume.service.ts index 999ac56a..cbfdbbb6 100644 --- a/apps/server/src/resume/resume.service.ts +++ b/apps/server/src/resume/resume.service.ts @@ -1,12 +1,10 @@ -import { CACHE_MANAGER } from "@nestjs/cache-manager"; -import { BadRequestException, Inject, Injectable, Logger } from "@nestjs/common"; +import { BadRequestException, Injectable, Logger } from "@nestjs/common"; import { Prisma } from "@prisma/client"; import { CreateResumeDto, ImportResumeDto, ResumeDto, UpdateResumeDto } from "@reactive-resume/dto"; import { defaultResumeData, ResumeData } from "@reactive-resume/schema"; import type { DeepPartial } from "@reactive-resume/utils"; import { generateRandomName, kebabCase } from "@reactive-resume/utils"; import { RedisService } from "@songkeys/nestjs-redis"; -import { Cache } from "cache-manager"; import deepmerge from "deepmerge"; import Redis from "ioredis"; import { PrismaService } from "nestjs-prisma"; @@ -28,7 +26,6 @@ export class ResumeService { private readonly storageService: StorageService, private readonly redisService: RedisService, private readonly utils: UtilsService, - @Inject(CACHE_MANAGER) private readonly cache: Cache, ) { this.redis = this.redisService.getClient(); } @@ -54,8 +51,8 @@ export class ResumeService { }); await Promise.all([ - this.cache.del(`user:${userId}:resumes`), - this.cache.set(`user:${userId}:resume:${resume.id}`, resume), + this.redis.del(`user:${userId}:resumes`), + this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)), ]); return resume; @@ -75,8 +72,8 @@ export class ResumeService { }); await Promise.all([ - this.cache.del(`user:${userId}:resumes`), - this.cache.set(`user:${userId}:resume:${resume.id}`, resume), + this.redis.del(`user:${userId}:resumes`), + this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)), ]); return resume; @@ -142,10 +139,10 @@ export class ResumeService { }); await Promise.all([ - this.cache.set(`user:${userId}:resume:${id}`, resume), - this.cache.del(`user:${userId}:resumes`), - this.cache.del(`user:${userId}:storage:resumes:${id}`), - this.cache.del(`user:${userId}:storage:previews:${id}`), + this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)), + this.redis.del(`user:${userId}:resumes`), + this.redis.del(`user:${userId}:storage:resumes:${id}`), + this.redis.del(`user:${userId}:storage:previews:${id}`), ]); return resume; @@ -163,8 +160,8 @@ export class ResumeService { }); await Promise.all([ - this.cache.set(`user:${userId}:resume:${id}`, resume), - this.cache.del(`user:${userId}:resumes`), + this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)), + this.redis.del(`user:${userId}:resumes`), ]); return resume; @@ -173,8 +170,8 @@ export class ResumeService { async remove(userId: string, id: string) { await Promise.all([ // Remove cached keys - this.cache.del(`user:${userId}:resumes`), - this.cache.del(`user:${userId}:resume:${id}`), + this.redis.del(`user:${userId}:resumes`), + this.redis.del(`user:${userId}:resume:${id}`), // Remove files in storage, and their cached keys this.storageService.deleteObject(userId, "resumes", id), diff --git a/apps/server/src/storage/storage.service.ts b/apps/server/src/storage/storage.service.ts index d2e7d652..56e48535 100644 --- a/apps/server/src/storage/storage.service.ts +++ b/apps/server/src/storage/storage.service.ts @@ -1,14 +1,8 @@ -import { CACHE_MANAGER } from "@nestjs/cache-manager"; -import { - Inject, - Injectable, - InternalServerErrorException, - Logger, - OnModuleInit, -} from "@nestjs/common"; +import { Injectable, InternalServerErrorException, Logger, OnModuleInit } from "@nestjs/common"; import { ConfigService } from "@nestjs/config"; import { createId } from "@paralleldrive/cuid2"; -import { Cache } from "cache-manager"; +import { RedisService } from "@songkeys/nestjs-redis"; +import { Redis } from "ioredis"; import { Client } from "minio"; import { MinioService } from "nestjs-minio-client"; import sharp from "sharp"; @@ -44,6 +38,7 @@ const PUBLIC_ACCESS_POLICY = { @Injectable() export class StorageService implements OnModuleInit { + private readonly redis: Redis; private readonly logger = new Logger(StorageService.name); private client: Client; @@ -52,8 +47,10 @@ export class StorageService implements OnModuleInit { constructor( private readonly configService: ConfigService, private readonly minioService: MinioService, - @Inject(CACHE_MANAGER) private readonly cache: Cache, - ) {} + private readonly redisService: RedisService, + ) { + this.redis = this.redisService.getClient(); + } async onModuleInit() { this.client = this.minioService.client; @@ -125,7 +122,7 @@ export class StorageService implements OnModuleInit { await Promise.all([ this.client.putObject(this.bucketName, filepath, buffer, metadata), - this.cache.set(`user:${userId}:storage:${type}:${filename}`, url), + this.redis.set(`user:${userId}:storage:${type}:${filename}`, url), ]); return url; @@ -140,7 +137,7 @@ export class StorageService implements OnModuleInit { try { return Promise.all([ - this.cache.del(`user:${userId}:storage:${type}:${filename}`), + this.redis.del(`user:${userId}:storage:${type}:${filename}`), this.client.removeObject(this.bucketName, path), ]); } catch (error) { diff --git a/apps/server/src/translation/translation.controller.ts b/apps/server/src/translation/translation.controller.ts new file mode 100644 index 00000000..0ac336d7 --- /dev/null +++ b/apps/server/src/translation/translation.controller.ts @@ -0,0 +1,35 @@ +import { HttpService } from "@nestjs/axios"; +import { Controller, Get, Header, Param } from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; + +import { Config } from "../config/schema"; +import { UtilsService } from "../utils/utils.service"; + +@Controller("translation") +export class TranslationController { + constructor( + private readonly httpService: HttpService, + private readonly configService: ConfigService, + private readonly utils: UtilsService, + ) {} + + private async fetchTranslations(locale: string) { + const distributionHash = this.configService.get("CROWDIN_DISTRIBUTION_HASH"); + const response = await this.httpService.axiosRef.get( + `https://distributions.crowdin.net/${distributionHash}/content/${locale}/messages.json`, + ); + + return response.data; + } + + @Get("/:locale") + @Header("Content-Type", "application/octet-stream") + @Header("Content-Disposition", 'attachment; filename="messages.po"') + async getTranslation(@Param("locale") locale: string) { + return this.utils.getCachedOrSet( + `translation:${locale}`, + async () => this.fetchTranslations(locale), + 1000 * 60 * 60 * 24, // 24 hours + ); + } +} diff --git a/apps/server/src/translation/translation.module.ts b/apps/server/src/translation/translation.module.ts new file mode 100644 index 00000000..2ca077b7 --- /dev/null +++ b/apps/server/src/translation/translation.module.ts @@ -0,0 +1,10 @@ +import { HttpModule } from "@nestjs/axios"; +import { Module } from "@nestjs/common"; + +import { TranslationController } from "./translation.controller"; + +@Module({ + imports: [HttpModule], + controllers: [TranslationController], +}) +export class TranslationModule {} diff --git a/apps/server/src/user/user.service.ts b/apps/server/src/user/user.service.ts index 1363a355..b6ddf802 100644 --- a/apps/server/src/user/user.service.ts +++ b/apps/server/src/user/user.service.ts @@ -1,7 +1,7 @@ -import { CACHE_MANAGER } from "@nestjs/cache-manager"; -import { Inject, Injectable, InternalServerErrorException } from "@nestjs/common"; +import { Injectable, InternalServerErrorException } from "@nestjs/common"; import { Prisma } from "@prisma/client"; -import { Cache } from "cache-manager"; +import { RedisService } from "@songkeys/nestjs-redis"; +import Redis from "ioredis"; import { PrismaService } from "nestjs-prisma"; import { ErrorMessage } from "../constants/error-message"; @@ -9,11 +9,15 @@ import { StorageService } from "../storage/storage.service"; @Injectable() export class UserService { + private readonly redis: Redis; + constructor( private readonly prisma: PrismaService, private readonly storageService: StorageService, - @Inject(CACHE_MANAGER) private readonly cache: Cache, - ) {} + private readonly redisService: RedisService, + ) { + this.redis = this.redisService.getClient(); + } async findOneById(id: string) { const user = await this.prisma.user.findUniqueOrThrow({ @@ -67,10 +71,7 @@ export class UserService { } async deleteOneById(id: string) { - await Promise.all([ - ...(await this.cache.store.keys(`user:${id}:*`)).map((key) => this.cache.del(key)), - this.storageService.deleteFolder(id), - ]); + await Promise.all([this.redis.del(`user:${id}:*`), this.storageService.deleteFolder(id)]); return this.prisma.user.delete({ where: { id } }); } diff --git a/apps/server/src/utils/utils.service.ts b/apps/server/src/utils/utils.service.ts index 5045a57b..f9b0bd4a 100644 --- a/apps/server/src/utils/utils.service.ts +++ b/apps/server/src/utils/utils.service.ts @@ -1,18 +1,21 @@ -import { CACHE_MANAGER } from "@nestjs/cache-manager"; -import { Inject, Injectable, InternalServerErrorException, Logger } from "@nestjs/common"; +import { Injectable, InternalServerErrorException, Logger } from "@nestjs/common"; import { ConfigService } from "@nestjs/config"; -import { Cache } from "cache-manager"; +import { RedisService } from "@songkeys/nestjs-redis"; +import Redis from "ioredis"; import { Config } from "../config/schema"; @Injectable() export class UtilsService { + private readonly redis: Redis; logger = new Logger(UtilsService.name); constructor( + private readonly redisService: RedisService, private readonly configService: ConfigService, - @Inject(CACHE_MANAGER) private readonly cache: Cache, - ) {} + ) { + this.redis = this.redisService.getClient(); + } getUrl(): string { const url = @@ -27,28 +30,34 @@ export class UtilsService { return url; } - async getCachedOrSet(key: string, callback: () => Promise, ttl?: number): Promise { + async getCachedOrSet( + key: string, + callback: () => Promise | T, + ttl: number = 1000 * 60 * 60 * 24, // 24 hours + type: "json" | "string" = "json", + ): Promise { // Try to get the value from the cache const start = performance.now(); - const cachedValue = await this.cache.get(key); + const cachedValue = await this.redis.get(key); const duration = Number(performance.now() - start).toFixed(0); - if (cachedValue === undefined) { + if (!cachedValue) { this.logger.debug(`Cache Key "${key}": miss`); } else { this.logger.debug(`Cache Key "${key}": hit - ${duration}ms`); } // If the value is in the cache, return it - if (cachedValue !== undefined) { - return cachedValue; + if (cachedValue) { + return (type === "string" ? cachedValue : JSON.parse(cachedValue)) as T; } // If the value is not in the cache, run the callback const value = await callback(); + const valueToCache = (type === "string" ? value : JSON.stringify(value)) as string; // Store the value in the cache - await this.cache.set(key, value, ttl); + await this.redis.set(key, valueToCache, "PX", ttl); // Return the value return value; diff --git a/package.json b/package.json index 9d651995..50372ffa 100644 --- a/package.json +++ b/package.json @@ -131,7 +131,6 @@ "@lingui/react": "^4.5.0", "@nestjs-modules/mailer": "^1.9.1", "@nestjs/axios": "^3.0.1", - "@nestjs/cache-manager": "^2.1.1", "@nestjs/common": "^10.2.8", "@nestjs/config": "^3.1.1", "@nestjs/core": "^10.2.8", @@ -186,8 +185,6 @@ "axios": "^1.6.1", "axios-auth-refresh": "^3.3.6", "bcryptjs": "^2.4.3", - "cache-manager": "^5.2.4", - "cache-manager-redis-yet": "^4.1.2", "class-variance-authority": "^0.7.0", "clsx": "^2.0.0", "cmdk": "^0.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index db9e5837..5bb2e319 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -41,9 +41,6 @@ dependencies: '@nestjs/axios': specifier: ^3.0.1 version: 3.0.1(@nestjs/common@10.2.8)(axios@1.6.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/cache-manager': - specifier: ^2.1.1 - version: 2.1.1(@nestjs/common@10.2.8)(@nestjs/core@10.2.8)(cache-manager@5.2.4)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/common': specifier: ^10.2.8 version: 10.2.8(reflect-metadata@0.1.13)(rxjs@7.8.1) @@ -206,12 +203,6 @@ dependencies: bcryptjs: specifier: ^2.4.3 version: 2.4.3 - cache-manager: - specifier: ^5.2.4 - version: 5.2.4 - cache-manager-redis-yet: - specifier: ^4.1.2 - version: 4.1.2 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -2164,16 +2155,6 @@ packages: conventional-changelog-conventionalcommits: 7.0.2 dev: true - /@commitlint/config-validator@18.1.0: - resolution: {integrity: sha512-kbHkIuItXn93o2NmTdwi5Mk1ujyuSIysRE/XHtrcps/27GuUKEIqBJp6TdJ4Sq+ze59RlzYSHMKuDKZbfg9+uQ==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - '@commitlint/types': 18.1.0 - ajv: 8.12.0 - dev: true - optional: true - /@commitlint/config-validator@18.4.0: resolution: {integrity: sha512-1y6qHMU3o4cYQSK+Y9EnmH6H1GRiwQGjnLIUOIKlekrmfc8MrMk1ByNmb8od4vK3qHJAaL/77/5n+1uyyIF5dA==} engines: {node: '>=v18'} @@ -2194,13 +2175,6 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule@18.1.0: - resolution: {integrity: sha512-w3Vt4K+O7+nSr9/gFSEfZ1exKUOPSlJaRpnk7Y+XowEhvwT7AIk1HNANH+gETf0zGZ020+hfiMW/Ome+SNCUsg==} - engines: {node: '>=v18'} - requiresBuild: true - dev: true - optional: true - /@commitlint/execute-rule@18.4.0: resolution: {integrity: sha512-g013SWki6ZWhURBLOSXTaVQGWHdA0QlPJGiW4a+YpThezmJOemvc4LiKVpn13AjSKQ40QnmBqpBrxujOaSo+3A==} engines: {node: '>=v18'} @@ -2232,28 +2206,6 @@ packages: '@commitlint/types': 18.4.0 dev: true - /@commitlint/load@18.2.0(typescript@5.2.2): - resolution: {integrity: sha512-xjX3d3CRlOALwImhOsmLYZh14/+gW/KxsY7+bPKrzmGuFailf9K7ckhB071oYZVJdACnpY4hDYiosFyOC+MpAA==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - '@commitlint/config-validator': 18.1.0 - '@commitlint/execute-rule': 18.1.0 - '@commitlint/resolve-extends': 18.1.0 - '@commitlint/types': 18.1.0 - '@types/node': 18.18.8 - chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.2.2) - cosmiconfig-typescript-loader: 5.0.0(@types/node@18.18.8)(cosmiconfig@8.3.6)(typescript@5.2.2) - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - resolve-from: 5.0.0 - transitivePeerDependencies: - - typescript - dev: true - optional: true - /@commitlint/load@18.4.0(typescript@5.2.2): resolution: {integrity: sha512-7unGl1HGRNMgWrUPmj8OFkJyuNUMb6xA1i53/OAFKd9l+U3C4WTfoJe3t/TUz8vKZLCaDcWWR/b2cw5HveBBFg==} engines: {node: '>=v18'} @@ -2299,20 +2251,6 @@ packages: minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@18.1.0: - resolution: {integrity: sha512-3mZpzOEJkELt7BbaZp6+bofJyxViyObebagFn0A7IHaLARhPkWTivXdjvZHS12nAORftv88Yhbh8eCPKfSvB7g==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - '@commitlint/config-validator': 18.1.0 - '@commitlint/types': 18.1.0 - import-fresh: 3.3.0 - lodash.mergewith: 4.6.2 - resolve-from: 5.0.0 - resolve-global: 1.0.0 - dev: true - optional: true - /@commitlint/resolve-extends@18.4.0: resolution: {integrity: sha512-qhgU6ach+S6sJMD9NjCYiEycOObGhxzWQLQzqlScJCv9zkPs15Bg0ffLXTQ3z7ipXv46XEKYMnSJzjLRw2Tlkg==} engines: {node: '>=v18'} @@ -2348,15 +2286,6 @@ packages: find-up: 5.0.0 dev: true - /@commitlint/types@18.1.0: - resolution: {integrity: sha512-65vGxZmbs+2OVwEItxhp3Ul7X2m2LyLfifYI/NdPwRqblmuES2w2aIRhIjb7cwUIBHHSTT8WXj4ixVHQibmvLQ==} - engines: {node: '>=v18'} - requiresBuild: true - dependencies: - chalk: 4.1.2 - dev: true - optional: true - /@commitlint/types@18.4.0: resolution: {integrity: sha512-MKeaFxt0I9fhqUb2E+YIzX/gZtmkuodJET/XKiZIMvXUff8Ee4Ih86eLg+yAm2jf1pwGBmU02uNOp0y094w2Uw==} engines: {node: '>=v18'} @@ -3564,22 +3493,6 @@ packages: rxjs: 7.8.1 dev: false - /@nestjs/cache-manager@2.1.1(@nestjs/common@10.2.8)(@nestjs/core@10.2.8)(cache-manager@5.2.4)(reflect-metadata@0.1.13)(rxjs@7.8.1): - resolution: {integrity: sha512-oYfRys4Ng0zp2HTUPNjH7gizf4vvG3PQZZ+3yGemb3xrF+p3JxDSK0cDq9NTjHzD5UmhjiyAftB9GkuL+t3r9g==} - peerDependencies: - '@nestjs/common': ^9.0.0 || ^10.0.0 - '@nestjs/core': ^9.0.0 || ^10.0.0 - cache-manager: <=5 - reflect-metadata: ^0.1.12 - rxjs: ^7.0.0 - dependencies: - '@nestjs/common': 10.2.8(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.8(@nestjs/common@10.2.8)(@nestjs/platform-express@10.2.8)(reflect-metadata@0.1.13)(rxjs@7.8.1) - cache-manager: 5.2.4 - reflect-metadata: 0.1.13 - rxjs: 7.8.1 - dev: false - /@nestjs/common@10.2.8(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-rmpwcdvq2IWMmsUVP8rsdKub6uDWk7dwCYo0aif50JTwcvcxzaP3iKVFKoSgvp0RKYu8h15+/AEOfaInmPpl0Q==} peerDependencies: @@ -6131,55 +6044,6 @@ packages: '@babel/runtime': 7.23.2 dev: false - /@redis/bloom@1.2.0(@redis/client@1.5.11): - resolution: {integrity: sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==} - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': 1.5.11 - dev: false - - /@redis/client@1.5.11: - resolution: {integrity: sha512-cV7yHcOAtNQ5x/yQl7Yw1xf53kO0FNDTdDU6bFIMbW6ljB7U7ns0YRM+QIkpoqTAt6zK5k9Fq0QWlUbLcq9AvA==} - engines: {node: '>=14'} - dependencies: - cluster-key-slot: 1.1.2 - generic-pool: 3.9.0 - yallist: 4.0.0 - dev: false - - /@redis/graph@1.1.0(@redis/client@1.5.11): - resolution: {integrity: sha512-16yZWngxyXPd+MJxeSr0dqh2AIOi8j9yXKcKCwVaKDbH3HTuETpDVPcLujhFYVPtYrngSco31BUcSa9TH31Gqg==} - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': 1.5.11 - dev: false - - /@redis/json@1.0.6(@redis/client@1.5.11): - resolution: {integrity: sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==} - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': 1.5.11 - dev: false - - /@redis/search@1.1.5(@redis/client@1.5.11): - resolution: {integrity: sha512-hPP8w7GfGsbtYEJdn4n7nXa6xt6hVZnnDktKW4ArMaFQ/m/aR7eFvsLQmG/mn1Upq99btPJk+F27IQ2dYpCoUg==} - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': 1.5.11 - dev: false - - /@redis/time-series@1.0.5(@redis/client@1.5.11): - resolution: {integrity: sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==} - peerDependencies: - '@redis/client': ^1.0.0 - dependencies: - '@redis/client': 1.5.11 - dev: false - /@remirror/core-constants@2.0.2: resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==} dev: false @@ -9064,27 +8928,6 @@ packages: engines: {node: '>=8'} dev: true - /cache-manager-redis-yet@4.1.2: - resolution: {integrity: sha512-pM2K1ZlOv8gQpE1Z5mcDrfLj5CsNKVRiYua/SZ12j7LEDgfDeFVntI6JSgIw0siFSR/9P/FpG30scI3frHwibA==} - engines: {node: '>= 16.17.0'} - dependencies: - '@redis/bloom': 1.2.0(@redis/client@1.5.11) - '@redis/client': 1.5.11 - '@redis/graph': 1.1.0(@redis/client@1.5.11) - '@redis/json': 1.0.6(@redis/client@1.5.11) - '@redis/search': 1.1.5(@redis/client@1.5.11) - '@redis/time-series': 1.0.5(@redis/client@1.5.11) - cache-manager: 5.2.4 - redis: 4.6.10 - dev: false - - /cache-manager@5.2.4: - resolution: {integrity: sha512-gkuCjug16NdGvKm/sydxGVx17uffrSWcEe2xraBtwRCgdYcFxwJAla4OYpASAZT2yhSoxgDiWL9XH6IAChcZJA==} - dependencies: - lodash.clonedeep: 4.5.0 - lru-cache: 10.0.1 - dev: false - /cacheable-lookup@5.0.4: resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} engines: {node: '>=10.6.0'} @@ -10151,7 +9994,7 @@ packages: longest: 2.0.1 word-wrap: 1.2.5 optionalDependencies: - '@commitlint/load': 18.2.0(typescript@5.2.2) + '@commitlint/load': 18.4.0(typescript@5.2.2) transitivePeerDependencies: - typescript dev: true @@ -12069,11 +11912,6 @@ packages: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true - /generic-pool@3.9.0: - resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==} - engines: {node: '>= 4'} - dev: false - /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -14359,10 +14197,6 @@ packages: resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} dev: true - /lodash.clonedeep@4.5.0: - resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} - dev: false - /lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} @@ -17670,17 +17504,6 @@ packages: redis-errors: 1.2.0 dev: false - /redis@4.6.10: - resolution: {integrity: sha512-mmbyhuKgDiJ5TWUhiKhBssz+mjsuSI/lSZNPI9QvZOYzWvYGejtb+W3RlDDf8LD6Bdl5/mZeG8O1feUGhXTxEg==} - dependencies: - '@redis/bloom': 1.2.0(@redis/client@1.5.11) - '@redis/client': 1.5.11 - '@redis/graph': 1.1.0(@redis/client@1.5.11) - '@redis/json': 1.0.6(@redis/client@1.5.11) - '@redis/search': 1.1.5(@redis/client@1.5.11) - '@redis/time-series': 1.0.5(@redis/client@1.5.11) - dev: false - /reflect-metadata@0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} diff --git a/tsconfig.base.json b/tsconfig.base.json index c73496a2..5f222be9 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -18,12 +18,12 @@ "@/client/*": ["apps/client/src/*"], "@/server/*": ["apps/server/src/*"], "@/artboard/*": ["apps/artboard/src/*"], + "@reactive-resume/ui": ["libs/ui/src/index.ts"], "@reactive-resume/dto": ["libs/dto/src/index.ts"], + "@reactive-resume/utils": ["libs/utils/src/index.ts"], "@reactive-resume/hooks": ["libs/hooks/src/index.ts"], "@reactive-resume/parser": ["libs/parser/src/index.ts"], - "@reactive-resume/schema": ["libs/schema/src/index.ts"], - "@reactive-resume/ui": ["libs/ui/src/index.ts"], - "@reactive-resume/utils": ["libs/utils/src/index.ts"] + "@reactive-resume/schema": ["libs/schema/src/index.ts"] } }, "exclude": ["node_modules", "dist", "tmp", ".nx"]