- upgrade react-resizable-panels to latest version

- update translations
- remove cypress
- add await to all return blocks
This commit is contained in:
Amruth Pillai
2023-11-19 09:52:55 +01:00
parent 9c4db2956b
commit 8b217dfcfa
95 changed files with 4162 additions and 4213 deletions

1
.gitignore vendored
View File

@ -49,3 +49,4 @@ libs/prisma
# Lingui Compiled Messages
apps/client/src/locales/_build/
apps/client/src/locales/*/messages.mjs

View File

@ -19,7 +19,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
COPY . .
RUN pnpm build
RUN pnpm run build
# --- Release Image ---
FROM base AS release
@ -31,8 +31,9 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-l
COPY --chown=node:node --from=build /app/dist ./dist
COPY --chown=node:node --from=build /app/tools/prisma ./tools/prisma
RUN pnpm prisma:generate
RUN pnpm run prisma:generate
RUN pnpm run messages:compile
EXPOSE 3000
CMD [ "dumb-init", "pnpm", "start" ]
CMD [ "dumb-init", "pnpm", "run", "start" ]

View File

@ -1,10 +0,0 @@
{
"extends": ["plugin:cypress/recommended", "../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
}
]
}

View File

@ -1,8 +0,0 @@
import { nxE2EPreset } from "@nx/cypress/plugins/cypress-preset";
import { defineConfig } from "cypress";
export default defineConfig({
e2e: nxE2EPreset(__dirname, {
bundler: "vite",
}),
});

View File

@ -1,33 +0,0 @@
{
"name": "client-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/client-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nx/cypress:cypress",
"options": {
"cypressConfig": "apps/client-e2e/cypress.config.ts",
"devServerTarget": "client:serve:development",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "client:serve:production"
},
"ci": {
"devServerTarget": "client:serve-static"
}
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/client-e2e/**/*.{js,ts}"]
}
}
},
"tags": ["frontend"],
"implicitDependencies": ["client"]
}

View File

@ -1,13 +0,0 @@
import { getGreeting } from "../support/app.po";
describe("client", () => {
beforeEach(() => cy.visit("/"));
it("should display welcome message", () => {
// Custom command example, see `../support/commands.ts` file
cy.login("my-email@something.com", "myPassword");
// Function helper example, see `../support/app.po.ts` file
getGreeting().contains("Welcome client");
});
});

View File

@ -1,4 +0,0 @@
{
"name": "Using fixtures to represent data",
"email": "hello@cypress.io"
}

View File

@ -1 +0,0 @@
export const getGreeting = () => cy.get("h1");

View File

@ -1,35 +0,0 @@
// ***********************************************
// This example commands.js shows you how to
// create various custom commands and overwrite
// existing commands.
//
// For more comprehensive examples of custom
// commands please read more here:
// https://on.cypress.io/custom-commands
// ***********************************************
// eslint-disable-next-line @typescript-eslint/no-namespace
declare namespace Cypress {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
interface Chainable<Subject> {
login(email: string, password: string): void;
}
}
//
// -- This is a parent command --
Cypress.Commands.add("login", (email, password) => {
console.log("Custom command example: Login", email, password);
});
//
// -- This is a child command --
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
//
//
// -- This is a dual command --
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
//
//
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })

View File

@ -1,17 +0,0 @@
// ***********************************************************
// This example support/index.js is processed and
// loaded automatically before your test files.
//
// This is a great place to put global configuration and
// behavior that modifies Cypress.
//
// You can change the location of this file or turn off
// automatically serving support files with the
// 'supportFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/configuration
// ***********************************************************
// Import commands.js using ES2015 syntax:
import "./commands";

View File

@ -1,10 +0,0 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"sourceMap": false,
"outDir": "../../dist/out-tsc",
"allowJs": true,
"types": ["cypress", "node"]
},
"include": ["src/**/*.ts", "src/**/*.js", "cypress.config.ts"]
}

View File

@ -3,6 +3,6 @@ import { i18n } from "@lingui/core";
export const defaultLocale = "en-US";
export async function dynamicActivate(locale: string) {
const { messages } = await import(`../locales/${locale}/messages.po`);
const { messages } = await import(`../locales/${locale}/messages.mjs`);
i18n.loadAndActivate({ locale, messages });
}

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: af\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: am\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Amharic\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ar\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bg\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bn\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Bengali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ca\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: cs\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: da\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: el\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -72,7 +72,7 @@ msgstr "A link has been copied to your clipboard."
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr "A passion project by <0>Amruth Pillai</0>"
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
@ -124,7 +124,7 @@ msgstr "Add New Page"
msgid "AI"
msgstr "AI"
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr "Already have an account?"
@ -197,11 +197,11 @@ msgstr "Back"
msgid "Background Color"
msgstr "Background Color"
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr "Backup Code"
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
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."
@ -247,7 +247,7 @@ msgstr "Casual"
msgid "Center Artboard"
msgstr "Center Artboard"
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr "Change Password"
@ -319,7 +319,8 @@ msgstr "Copy to Clipboard"
msgid "Create"
msgstr "Create"
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr "Create a new account"
@ -333,7 +334,7 @@ msgstr "Create a new item"
msgid "Create a new resume"
msgstr "Create a new resume"
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr "Create one now"
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr "Disable 2FA"
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr "Discard"
msgid "Documentation"
msgstr "Documentation"
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr "Don't have an account?"
@ -473,11 +474,11 @@ msgstr "Edit"
msgid "Effects"
msgstr "Effects"
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr "Email"
@ -485,11 +486,11 @@ msgstr "Email"
msgid "Enable 2FA"
msgstr "Enable 2FA"
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
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:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
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."
@ -497,11 +498,11 @@ msgstr "Enter one of the 10 backup codes you saved when you enabled two-factor a
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
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:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
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."
@ -566,11 +567,11 @@ msgstr "For example, information regarding which companies you sent this resume
msgid "Forget"
msgstr "Forget"
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr "Forgot Password?"
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr "Forgot your password?"
@ -616,7 +617,7 @@ msgstr "GitHub Stars"
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:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr "Go to Dashboard"
@ -659,9 +660,9 @@ msgstr "Hide"
msgid "Hide Icons"
msgstr "Hide Icons"
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr "Hold <0>Ctrl</0> to display your password temporarily."
@ -760,17 +761,17 @@ msgstr "It looks like the verification token you provided is invalid. Please try
msgid "It looks like your email address has already been verified."
msgstr "It looks like your email address has already been verified."
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr "John Doe"
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr "john.doe"
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr "john.doe@example.com"
@ -867,7 +868,7 @@ msgstr "Locking a resume will prevent any further changes to it. This is useful
msgid "Logout"
msgstr "Logout"
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr "Lost your device?"
@ -901,7 +902,7 @@ msgstr "Margin"
msgid "MIT License"
msgstr "MIT License"
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr "Note: This will make your account less secure."
msgid "Notes"
msgstr "Notes"
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr "One-Time Password"
@ -998,9 +999,9 @@ msgstr "Page"
msgid "Page {0}"
msgstr "Page {0}"
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr "Password"
@ -1030,7 +1031,7 @@ msgstr "Pick any font from Google Fonts"
msgid "Picture"
msgstr "Picture"
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr "Please note that this step is completely optional."
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr "Raise an issue"
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr "Remove"
msgid "Rename"
msgstr "Rename"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr "Resend email confirmation link"
@ -1143,10 +1151,14 @@ msgstr "Reset"
msgid "Reset Layout"
msgstr "Reset Layout"
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr "Reset your password"
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr "Reset your Password"
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr "Reset Zoom"
@ -1171,7 +1183,7 @@ msgstr "Rounded"
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr "Save Changes"
@ -1213,7 +1225,7 @@ msgstr "Security"
msgid "Self-host with Docker"
msgstr "Self-host with Docker"
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr "Send Email"
@ -1253,17 +1265,18 @@ msgstr "Show Page Numbers"
msgid "Sidebar"
msgstr "Sidebar"
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr "Sign in"
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr "Sign in now"
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr "Sign in to your account"
@ -1279,7 +1292,7 @@ msgstr "Sign in with GitHub"
msgid "Sign in with Google"
msgstr "Sign in with Google"
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr "Sign up"
@ -1420,7 +1433,7 @@ msgstr "This action cannot be undone. This will permanently delete your resume a
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr "This resume is locked, please unlock to make further changes."
@ -1453,7 +1466,8 @@ msgstr "Toggle Page Numbers"
msgid "Track views and downloads"
msgstr "Track views and downloads"
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr "Two-Factor Authentication"
@ -1497,7 +1511,7 @@ msgstr "Unlock"
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
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr "Unverified"
@ -1521,7 +1535,8 @@ msgstr "URL"
msgid "URL must start with https://"
msgstr "URL must start with https://"
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr "Use your backup code"
@ -1529,9 +1544,9 @@ msgstr "Use your backup code"
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr "User does not have an associated 'secrets' record. Please report this issue on GitHub."
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr "Username"
@ -1551,7 +1566,7 @@ msgstr "Validated"
msgid "Value"
msgstr "Value"
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr "Verified"
@ -1559,7 +1574,8 @@ msgstr "Verified"
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:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr "Verify your email address"
@ -1575,7 +1591,7 @@ msgstr "Views"
msgid "Visible"
msgstr "Visible"
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
@ -1604,7 +1620,7 @@ msgstr "What's new in the latest version"
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:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr "You can also enter your username."
@ -1620,11 +1636,12 @@ msgstr "You can track the number of views your resume has received, or how many
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr "You've got mail!"
@ -1636,7 +1653,7 @@ msgstr "Your account and all your data has been deleted successfully. Goodbye!"
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr "Your email address has been verified successfully."

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fa\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Persian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: he\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -86,7 +86,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
msgid "A4"
msgstr ""
msgstr "ए4"
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json.
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -236,7 +236,7 @@ msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
msgid "Cancel"
msgstr ""
msgstr "रद्द करें"
#: apps/client/src/components/ai-actions.tsx:94
#: apps/client/src/components/ai-actions.tsx:97
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -467,17 +468,17 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89
msgid "Edit"
msgstr ""
msgstr "एडिट करें"
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: km\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Lithuanian\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ml\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Malayalam\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: mr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Marathi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ne\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: no\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: or\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Odia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ro\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ru\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Serbian (Cyrillic)\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sv\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ta\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Tamil\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: te\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Telugu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: th\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: uk\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:50\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: reactive-resume\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-11-17 13:00\n"
"PO-Revision-Date: 2023-11-19 08:49\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "A passion project by <0>Amruth Pillai</0>"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:47
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
msgstr ""
@ -124,7 +124,7 @@ msgstr ""
msgid "AI"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:66
msgid "Already have an account?"
msgstr ""
@ -197,11 +197,11 @@ msgstr ""
msgid "Background Color"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:67
#: apps/client/src/pages/auth/backup-otp/page.tsx:74
msgid "Backup Code"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:72
#: apps/client/src/pages/auth/backup-otp/page.tsx:79
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
msgstr ""
@ -247,7 +247,7 @@ msgstr ""
msgid "Center Artboard"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:92
#: apps/client/src/pages/auth/reset-password/page.tsx:99
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
msgid "Change Password"
msgstr ""
@ -319,7 +319,8 @@ msgstr ""
msgid "Create"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:57
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/register/page.tsx:64
msgid "Create a new account"
msgstr ""
@ -333,7 +334,7 @@ msgstr ""
msgid "Create a new resume"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:53
#: apps/client/src/pages/auth/login/page.tsx:60
msgctxt "This is a link to create a new account"
msgid "Create one now"
msgstr ""
@ -411,7 +412,7 @@ msgid "Disable 2FA"
msgstr ""
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:222
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
msgid "Discard"
@ -421,7 +422,7 @@ msgstr ""
msgid "Documentation"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:57
msgid "Don't have an account?"
msgstr ""
@ -473,11 +474,11 @@ msgstr ""
msgid "Effects"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:72
#: apps/client/src/pages/auth/login/page.tsx:72
#: apps/client/src/pages/auth/register/page.tsx:122
#: apps/client/src/pages/auth/forgot-password/page.tsx:79
#: apps/client/src/pages/auth/login/page.tsx:79
#: apps/client/src/pages/auth/register/page.tsx:129
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:183
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
msgid "Email"
msgstr ""
@ -485,11 +486,11 @@ msgstr ""
msgid "Enable 2FA"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/reset-password/page.tsx:67
msgid "Enter a new password below, and make sure it's secure."
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:58
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
msgstr ""
@ -497,11 +498,11 @@ msgstr ""
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:53
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
msgid "Enter the one-time password provided by your authenticator app below."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:60
#: apps/client/src/pages/auth/forgot-password/page.tsx:67
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
msgstr ""
@ -566,11 +567,11 @@ msgstr ""
msgid "Forget"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:108
#: apps/client/src/pages/auth/login/page.tsx:115
msgid "Forgot Password?"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:58
#: apps/client/src/pages/auth/forgot-password/page.tsx:65
msgid "Forgot your password?"
msgstr ""
@ -616,7 +617,7 @@ msgstr ""
msgid "Give your old resume a new name."
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:67
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18
msgid "Go to Dashboard"
msgstr ""
@ -659,9 +660,9 @@ msgstr ""
msgid "Hide Icons"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:92
#: apps/client/src/pages/auth/register/page.tsx:148
#: apps/client/src/pages/auth/reset-password/page.tsx:81
#: apps/client/src/pages/auth/login/page.tsx:99
#: apps/client/src/pages/auth/register/page.tsx:155
#: apps/client/src/pages/auth/reset-password/page.tsx:88
msgid "Hold <0>Ctrl</0> to display your password temporarily."
msgstr ""
@ -760,17 +761,17 @@ msgstr ""
msgid "It looks like your email address has already been verified."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:83
#: apps/client/src/pages/auth/register/page.tsx:90
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
msgid "John Doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:104
#: apps/client/src/pages/auth/register/page.tsx:111
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
msgid "john.doe"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:125
#: apps/client/src/pages/auth/register/page.tsx:132
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
msgid "john.doe@example.com"
msgstr ""
@ -867,7 +868,7 @@ msgstr ""
msgid "Logout"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/auth/verify-otp/page.tsx:64
msgid "Lost your device?"
msgstr ""
@ -901,7 +902,7 @@ msgstr ""
msgid "MIT License"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:80
#: apps/client/src/pages/auth/register/page.tsx:87
#: 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:36
@ -944,7 +945,7 @@ msgstr ""
msgid "Notes"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:75
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
msgid "One-Time Password"
msgstr ""
@ -998,9 +999,9 @@ msgstr ""
msgid "Page {0}"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:87
#: apps/client/src/pages/auth/register/page.tsx:143
#: apps/client/src/pages/auth/reset-password/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:94
#: apps/client/src/pages/auth/register/page.tsx:150
#: apps/client/src/pages/auth/reset-password/page.tsx:83
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
msgid "Password"
msgstr ""
@ -1030,7 +1031,7 @@ msgstr ""
msgid "Picture"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:52
#: apps/client/src/pages/auth/verify-email/page.tsx:59
msgid "Please note that this step is completely optional."
msgstr ""
@ -1089,6 +1090,13 @@ msgid "Raise an issue"
msgstr ""
#: apps/client/src/components/copyright.tsx:38
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/register/page.tsx:59
#: apps/client/src/pages/auth/reset-password/page.tsx:60
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: 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
@ -1131,7 +1139,7 @@ msgstr ""
msgid "Rename"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:201
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198
msgid "Resend email confirmation link"
msgstr ""
@ -1143,10 +1151,14 @@ msgstr ""
msgid "Reset Layout"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:58
#: apps/client/src/pages/auth/reset-password/page.tsx:65
msgid "Reset your password"
msgstr ""
#: apps/client/src/pages/auth/reset-password/page.tsx:60
msgid "Reset your Password"
msgstr ""
#: apps/client/src/pages/builder/_components/toolbar.tsx:83
msgid "Reset Zoom"
msgstr ""
@ -1171,7 +1183,7 @@ msgstr ""
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138
msgid "Save Changes"
msgstr ""
@ -1213,7 +1225,7 @@ msgstr ""
msgid "Self-host with Docker"
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
#: apps/client/src/pages/auth/forgot-password/page.tsx:89
msgid "Send Email"
msgstr ""
@ -1253,17 +1265,18 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:82
#: apps/client/src/pages/auth/login/page.tsx:104
#: apps/client/src/pages/auth/verify-otp/page.tsx:85
#: apps/client/src/pages/auth/backup-otp/page.tsx:89
#: apps/client/src/pages/auth/login/page.tsx:111
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
msgid "Sign in"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:62
#: apps/client/src/pages/auth/register/page.tsx:69
msgid "Sign in now"
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:48
#: apps/client/src/pages/auth/login/page.tsx:50
#: apps/client/src/pages/auth/login/page.tsx:55
msgid "Sign in to your account"
msgstr ""
@ -1279,7 +1292,7 @@ msgstr ""
msgid "Sign in with Google"
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:159
#: apps/client/src/pages/auth/register/page.tsx:166
msgid "Sign up"
msgstr ""
@ -1420,7 +1433,7 @@ msgstr ""
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
msgstr ""
#: apps/client/src/pages/builder/_components/header.tsx:56
#: apps/client/src/pages/builder/_components/header.tsx:53
msgid "This resume is locked, please unlock to make further changes."
msgstr ""
@ -1453,7 +1466,8 @@ msgstr ""
msgid "Track views and downloads"
msgstr ""
#: apps/client/src/pages/auth/verify-otp/page.tsx:50
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
msgid "Two-Factor Authentication"
msgstr ""
@ -1497,7 +1511,7 @@ msgstr ""
msgid "Unlocking a resume will allow you to make changes to it again."
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Unverified"
msgstr ""
@ -1521,7 +1535,8 @@ msgstr ""
msgid "URL must start with https://"
msgstr ""
#: apps/client/src/pages/auth/backup-otp/page.tsx:49
#: apps/client/src/pages/auth/backup-otp/page.tsx:51
#: apps/client/src/pages/auth/backup-otp/page.tsx:56
msgid "Use your backup code"
msgstr ""
@ -1529,9 +1544,9 @@ msgstr ""
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
msgstr ""
#: apps/client/src/pages/auth/register/page.tsx:101
#: apps/client/src/pages/auth/register/page.tsx:108
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:165
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
msgid "Username"
msgstr ""
@ -1551,7 +1566,7 @@ msgstr ""
msgid "Value"
msgstr ""
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:194
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
msgid "Verified"
msgstr ""
@ -1559,7 +1574,8 @@ msgstr ""
msgid "Verify that two-factor authentication has been setup correctly"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:41
#: apps/client/src/pages/auth/verify-email/page.tsx:43
#: apps/client/src/pages/auth/verify-email/page.tsx:48
msgid "Verify your email address"
msgstr ""
@ -1575,7 +1591,7 @@ msgstr ""
msgid "Visible"
msgstr ""
#: apps/client/src/pages/auth/verify-email/page.tsx:54
#: apps/client/src/pages/auth/verify-email/page.tsx:61
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
msgstr ""
@ -1604,7 +1620,7 @@ msgstr ""
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
msgstr ""
#: apps/client/src/pages/auth/login/page.tsx:76
#: apps/client/src/pages/auth/login/page.tsx:83
msgid "You can also enter your username."
msgstr ""
@ -1620,11 +1636,12 @@ msgstr ""
msgid "You have the option to <0>obtain your own OpenAI API key</0>. 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:43
#: apps/client/src/pages/auth/verify-email/page.tsx:50
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
msgstr ""
#: apps/client/src/pages/auth/forgot-password/page.tsx:44
#: apps/client/src/pages/auth/forgot-password/page.tsx:46
#: apps/client/src/pages/auth/forgot-password/page.tsx:51
msgid "You've got mail!"
msgstr ""
@ -1636,7 +1653,7 @@ msgstr ""
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:27
#: apps/client/src/pages/auth/verify-email/page.tsx:28
msgid "Your email address has been verified successfully."
msgstr ""

View File

@ -13,6 +13,7 @@ import {
Input,
} from "@reactive-resume/ui";
import { useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
import { useNavigate } from "react-router-dom";
import { z } from "zod";
@ -45,6 +46,12 @@ export const BackupOtpPage = () => {
return (
<div className="space-y-8">
<Helmet>
<title>
{t`Use your backup code`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Use your backup code`}</h2>
<h6 className="leading-relaxed opacity-60">

View File

@ -14,6 +14,7 @@ import {
Input,
} from "@reactive-resume/ui";
import { useState } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
import { z } from "zod";
@ -40,6 +41,12 @@ export const ForgotPasswordPage = () => {
if (submitted) {
return (
<div className="space-y-8">
<Helmet>
<title>
{t`You've got mail!`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-4">
<h2 className="text-2xl font-semibold tracking-tight">{t`You've got mail!`}</h2>
<Alert variant="success">

View File

@ -15,6 +15,7 @@ import {
Input,
} from "@reactive-resume/ui";
import { useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
import { Link } from "react-router-dom";
import { z } from "zod";
@ -44,6 +45,12 @@ export const LoginPage = () => {
return (
<div className="space-y-8">
<Helmet>
<title>
{t`Sign in to your account`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Sign in to your account`}</h2>
<h6>

View File

@ -15,6 +15,7 @@ import {
Input,
} from "@reactive-resume/ui";
import { useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
import { Link, useNavigate } from "react-router-dom";
import { z } from "zod";
@ -53,6 +54,12 @@ export const RegisterPage = () => {
return (
<div className="space-y-8">
<Helmet>
<title>
{t`Create a new account`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Create a new account`}</h2>
<h6>

View File

@ -14,6 +14,7 @@ import {
Input,
} from "@reactive-resume/ui";
import { useEffect, useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
import { useNavigate, useSearchParams } from "react-router-dom";
import { z } from "zod";
@ -54,6 +55,12 @@ export const ResetPasswordPage = () => {
return (
<div className="space-y-8">
<Helmet>
<title>
{t`Reset your Password`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Reset your password`}</h2>
<h6 className="leading-relaxed opacity-75">

View File

@ -2,6 +2,7 @@ import { t, Trans } from "@lingui/macro";
import { ArrowRight, Info, SealCheck } from "@phosphor-icons/react";
import { Alert, AlertDescription, AlertTitle, Button } from "@reactive-resume/ui";
import { useEffect } from "react";
import { Helmet } from "react-helmet-async";
import { Link, useNavigate, useSearchParams } from "react-router-dom";
import { useToast } from "@/client/hooks/use-toast";
@ -37,6 +38,12 @@ export const VerifyEmailPage = () => {
return (
<div className="space-y-6">
<Helmet>
<title>
{t`Verify your email address`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-2">
<h2 className="text-2xl font-semibold tracking-tight">{t`Verify your email address`}</h2>
<p className="leading-relaxed opacity-75">

View File

@ -14,6 +14,7 @@ import {
Input,
} from "@reactive-resume/ui";
import { useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
import { Link, useNavigate } from "react-router-dom";
import { z } from "zod";
@ -46,6 +47,12 @@ export const VerifyOtpPage = () => {
return (
<div className="space-y-8">
<Helmet>
<title>
{t`Two-Factor Authentication`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Two-Factor Authentication`}</h2>
<h6>

View File

@ -1,6 +1,5 @@
import { t } from "@lingui/macro";
import { HouseSimple, Lock, SidebarSimple } from "@phosphor-icons/react";
import { useBreakpoint } from "@reactive-resume/hooks";
import { Button, Tooltip } from "@reactive-resume/ui";
import { cn } from "@reactive-resume/utils";
import { Link } from "react-router-dom";
@ -9,22 +8,15 @@ import { useBuilderStore } from "@/client/stores/builder";
import { useResumeStore } from "@/client/stores/resume";
export const BuilderHeader = () => {
const { isDesktop } = useBreakpoint();
const defaultPanelSize = isDesktop ? 25 : 0;
const title = useResumeStore((state) => state.resume.title);
const locked = useResumeStore((state) => state.resume.locked);
const toggle = useBuilderStore((state) => state.toggle);
const isDragging = useBuilderStore(
(state) => state.panel.left.isDragging || state.panel.right.isDragging,
);
const leftPanelSize = useBuilderStore(
(state) => state.panel.left.ref?.getSize() ?? defaultPanelSize,
);
const rightPanelSize = useBuilderStore(
(state) => state.panel.right.ref?.getSize() ?? defaultPanelSize,
(state) => state.panel.left.handle.isDragging || state.panel.right.handle.isDragging,
);
const leftPanelSize = useBuilderStore((state) => state.panel.left.size);
const rightPanelSize = useBuilderStore((state) => state.panel.right.size);
const onToggle = (side: "left" | "right") => toggle(side);
@ -37,11 +29,16 @@ export const BuilderHeader = () => {
)}
>
<div className="flex h-full items-center justify-between px-4">
<Button size="icon" variant="ghost" onClick={() => onToggle("left")}>
<Button
size="icon"
variant="ghost"
className="flex lg:hidden"
onClick={() => onToggle("left")}
>
<SidebarSimple />
</Button>
<div className="flex items-center justify-center gap-x-1">
<div className="flex items-center justify-center gap-x-1 lg:mx-auto">
<Button asChild size="icon" variant="ghost">
<Link to="/dashboard/resumes">
<HouseSimple />
@ -59,7 +56,12 @@ export const BuilderHeader = () => {
)}
</div>
<Button size="icon" variant="ghost" onClick={() => onToggle("right")}>
<Button
size="icon"
variant="ghost"
className="flex lg:hidden"
onClick={() => onToggle("right")}
>
<SidebarSimple className="-scale-x-100" />
</Button>
</div>

View File

@ -25,9 +25,14 @@ const OutletSlot = () => (
export const BuilderLayout = () => {
const { isDesktop } = useBreakpoint();
const panel = useBuilderStore((state) => state.panel);
const sheet = useBuilderStore((state) => state.sheet);
const leftSetSize = useBuilderStore((state) => state.panel.left.setSize);
const rightSetSize = useBuilderStore((state) => state.panel.right.setSize);
const leftHandle = useBuilderStore((state) => state.panel.left.handle);
const rightHandle = useBuilderStore((state) => state.panel.right.handle);
const onOpenAutoFocus = (event: Event) => event.preventDefault();
if (isDesktop) {
@ -35,33 +40,31 @@ export const BuilderLayout = () => {
<div className="relative h-full w-full overflow-hidden">
<PanelGroup direction="horizontal">
<Panel
collapsible
minSize={20}
maxSize={35}
defaultSize={28}
ref={panel.left.setRef}
className={cn("z-10 bg-background", !panel.left.isDragging && "transition-[flex]")}
minSizePixels={48}
maxSizePercentage={35}
defaultSizePercentage={28}
onResize={({ sizePercentage }) => leftSetSize(sizePercentage)}
className={cn("z-10 bg-background", !leftHandle.isDragging && "transition-[flex]")}
>
<LeftSidebar />
</Panel>
<PanelResizeHandle
isDragging={panel.left.isDragging}
onDragging={panel.left.setDragging}
isDragging={leftHandle.isDragging}
onDragging={leftHandle.setDragging}
/>
<Panel>
<OutletSlot />
</Panel>
<PanelResizeHandle
isDragging={panel.right.isDragging}
onDragging={panel.right.setDragging}
isDragging={rightHandle.isDragging}
onDragging={rightHandle.setDragging}
/>
<Panel
collapsible
minSize={20}
maxSize={35}
defaultSize={28}
ref={panel.right.setRef}
className={cn("z-10 bg-background", !panel.right.isDragging && "transition-[flex]")}
minSizePixels={48}
maxSizePercentage={35}
defaultSizePercentage={28}
onResize={({ sizePercentage }) => rightSetSize(sizePercentage)}
className={cn("z-10 bg-background", !rightHandle.isDragging && "transition-[flex]")}
>
<RightSidebar />
</Panel>
@ -75,9 +78,9 @@ export const BuilderLayout = () => {
<Sheet open={sheet.left.open} onOpenChange={sheet.left.setOpen}>
<SheetContent
side="left"
className="top-16 p-0 sm:max-w-xl"
showClose={false}
onOpenAutoFocus={onOpenAutoFocus}
className="top-16 p-0 sm:max-w-xl"
>
<LeftSidebar />
</SheetContent>
@ -88,9 +91,9 @@ export const BuilderLayout = () => {
<Sheet open={sheet.right.open} onOpenChange={sheet.right.setOpen}>
<SheetContent
side="right"
className="p-0 sm:max-w-xl"
showClose={false}
onOpenAutoFocus={onOpenAutoFocus}
className="top-16 p-0 sm:max-w-xl"
>
<RightSidebar />
</SheetContent>

View File

@ -93,7 +93,7 @@ export const LeftSidebar = () => {
</UserOptions>
</div>
<ScrollArea orientation="vertical" className="h-screen flex-1">
<ScrollArea orientation="vertical" className="h-screen flex-1 pb-16 lg:pb-0">
<div ref={containterRef} className="grid gap-y-6 p-6 @container/left">
<BasicsSection />
<Separator />

View File

@ -26,8 +26,8 @@ export const RightSidebar = () => {
};
return (
<div className="flex bg-secondary-accent/30 pt-16 lg:pt-0">
<ScrollArea orientation="vertical" className="h-screen flex-1">
<div className="flex bg-secondary-accent/30">
<ScrollArea orientation="vertical" className="h-screen flex-1 pb-16 lg:pb-0">
<div ref={containterRef} className="grid gap-y-6 p-6 @container/right">
<TemplateSection />
<Separator />

View File

@ -22,10 +22,10 @@ export const TemplateSection = () => {
<main className="grid grid-cols-2 gap-5 @lg/right:grid-cols-3 @2xl/right:grid-cols-4">
{templatesList.map((template, index) => (
<AspectRatio ratio={1 / 1.4142}>
<AspectRatio key={template} ratio={1 / 1.4142}>
<motion.div
initial={{ opacity: 0, x: -50 }}
animate={{ opacity: 1, x: 0, transition: { delay: index * 0.1 } }}
initial={{ opacity: 0 }}
animate={{ opacity: 1, transition: { delay: index * 0.1 } }}
whileTap={{ scale: 0.98, transition: { duration: 0.1 } }}
onClick={() => setValue("metadata.template", template)}
className={cn(

View File

@ -153,6 +153,7 @@ export const AccountSettings = () => {
<FormControl>
<Input {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
@ -160,17 +161,13 @@ export const AccountSettings = () => {
<FormField
name="username"
control={form.control}
render={({ field, fieldState }) => (
render={({ field }) => (
<FormItem>
<FormLabel>{t`Username`}</FormLabel>
<FormControl>
<Input {...field} />
</FormControl>
{fieldState.error && (
<FormDescription className="text-error">
{fieldState.error.message}
</FormDescription>
)}
<FormMessage />
</FormItem>
)}
/>

View File

@ -1,4 +1,3 @@
import { ImperativePanelHandle } from "react-resizable-panels";
import { create } from "zustand";
import { immer } from "zustand/middleware/immer";
@ -7,11 +6,15 @@ type Sheet = {
setOpen: (open: boolean) => void;
};
type Panel = {
type PanelHandle = {
isDragging: boolean;
setDragging: (dragging: boolean) => void;
ref: ImperativePanelHandle | null;
setRef: (ref: ImperativePanelHandle | null) => void;
};
type Panel = {
size: number;
setSize: (size: number) => void;
handle: PanelHandle;
};
interface BuilderState {
@ -64,44 +67,41 @@ export const useBuilderStore = create<BuilderState & BuilderActions>()(
},
panel: {
left: {
ref: null,
isDragging: false,
setRef: (ref) => {
size: 0,
setSize: (size) => {
set((state) => {
state.panel.left.ref = ref;
state.panel.left.size = size;
});
},
setDragging: (dragging) => {
set((state) => {
state.panel.left.isDragging = dragging;
});
handle: {
isDragging: false,
setDragging: (dragging) => {
set((state) => {
state.panel.left.handle.isDragging = dragging;
});
},
},
},
right: {
ref: null,
isDragging: false,
setRef: (ref) => {
size: 0,
setSize: (size) => {
set((state) => {
state.panel.right.ref = ref;
state.panel.right.size = size;
});
},
setDragging: (dragging) => {
set((state) => {
state.panel.right.isDragging = dragging;
});
handle: {
isDragging: false,
setDragging: (dragging) => {
set((state) => {
state.panel.right.handle.isDragging = dragging;
});
},
},
},
},
toggle: (side) => {
set((state) => {
const panelRef = state.panel[side].ref;
if (panelRef) {
const collapsed = panelRef.getCollapsed();
collapsed ? panelRef.expand() : panelRef.collapse();
} else {
state.sheet[side].open = !state.sheet[side].open;
}
state.sheet[side].open = !state.sheet[side].open;
});
},
})),

View File

@ -1,18 +0,0 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
}

View File

@ -1,19 +0,0 @@
/* eslint-disable */
export default {
displayName: "server-e2e",
preset: "../../jest.preset.js",
globalSetup: "<rootDir>/src/support/global-setup.ts",
globalTeardown: "<rootDir>/src/support/global-teardown.ts",
setupFiles: ["<rootDir>/src/support/test-setup.ts"],
testEnvironment: "node",
transform: {
"^.+\\.[tj]s$": [
"ts-jest",
{
tsconfig: "<rootDir>/tsconfig.spec.json",
},
],
},
moduleFileExtensions: ["ts", "js", "html"],
coverageDirectory: "../../coverage/server-e2e",
};

View File

@ -1,24 +0,0 @@
{
"name": "server-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{e2eProjectRoot}"],
"options": {
"jestConfig": "apps/server-e2e/jest.config.ts",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/server-e2e/**/*.{js,ts}"]
}
}
},
"tags": ["backend"],
"implicitDependencies": ["server"]
}

View File

@ -1,10 +0,0 @@
import axios from "axios";
describe("GET /api/health", () => {
it("should return a status 'ok'", async () => {
const res = await axios.get(`/health`);
expect(res.status).toBe(200);
expect(res.data).toMatchObject({ status: "ok" });
});
});

View File

@ -1,10 +0,0 @@
/* eslint-disable */
var __TEARDOWN_MESSAGE__: string;
module.exports = async function () {
// Start services that that the app needs to run (e.g. database, docker-compose, etc.).
console.log("\nSetting up...\n");
// Hint: Use `globalThis` to pass variables to global teardown.
globalThis.__TEARDOWN_MESSAGE__ = "\nTearing down...\n";
};

View File

@ -1,6 +0,0 @@
/* eslint-disable */
module.exports = async function () {
// Put clean up logic here (e.g. stopping services, docker-compose, etc.).
// Hint: `globalThis` is shared between setup and teardown.
console.log(globalThis.__TEARDOWN_MESSAGE__);
};

View File

@ -1,8 +0,0 @@
import axios from "axios";
module.exports = async function () {
const serverUrl = process.env.VITE_SERVER_URL ?? "http://localhost:3000";
axios.defaults.withCredentials = true;
axios.defaults.baseURL = `${serverUrl}/api`;
};

View File

@ -1,13 +0,0 @@
{
"extends": "../../tsconfig.base.json",
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.spec.json"
}
],
"compilerOptions": {
"esModuleInterop": true
}
}

View File

@ -1,9 +0,0 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node"]
},
"include": ["jest.config.ts", "src/**/*.ts"]
}

View File

@ -152,8 +152,6 @@ export class AuthService {
const text = `Please click on the link below to reset your password:\n\n${url}`;
await this.mailService.sendEmail({ to: email, subject, text });
return;
}
async updatePassword(email: string, password: string) {
@ -188,8 +186,6 @@ export class AuthService {
const text = `Please verify your email address by clicking on the link below:\n\n${url}`;
await this.mailService.sendEmail({ to: email, subject, text });
return;
} catch (error) {
throw new InternalServerErrorException(error);
}

View File

@ -13,7 +13,7 @@ export class LocalStrategy extends PassportStrategy(Strategy, "local") {
async validate(identifier: string, password: string) {
try {
return this.authService.authenticate({ identifier, password });
return await this.authService.authenticate({ identifier, password });
} catch (error) {
throw new BadRequestException(ErrorMessage.InvalidCredentials);
}

View File

@ -32,9 +32,9 @@ export class PrinterService {
this.browserURL = `${chromeUrl}?token=${chromeToken}`;
}
private getBrowser() {
private async getBrowser() {
try {
return connect({ browserWSEndpoint: this.browserURL });
return await connect({ browserWSEndpoint: this.browserURL });
} catch (error) {
throw new InternalServerErrorException(ErrorMessage.InvalidBrowserConnection, error.message);
}

View File

@ -47,9 +47,9 @@ export class ResumeController {
@Post()
@UseGuards(TwoFactorGuard)
create(@User() user: UserEntity, @Body() createResumeDto: CreateResumeDto) {
async create(@User() user: UserEntity, @Body() createResumeDto: CreateResumeDto) {
try {
return this.resumeService.create(user.id, createResumeDto);
return await this.resumeService.create(user.id, createResumeDto);
} catch (error) {
if (error instanceof PrismaClientKnownRequestError && error.code === "P2002") {
throw new BadRequestException(ErrorMessage.ResumeSlugAlreadyExists);
@ -61,9 +61,9 @@ export class ResumeController {
@Post("import")
@UseGuards(TwoFactorGuard)
import(@User() user: UserEntity, @Body() importResumeDto: ImportResumeDto) {
async import(@User() user: UserEntity, @Body() importResumeDto: ImportResumeDto) {
try {
return this.resumeService.import(user.id, importResumeDto);
return await this.resumeService.import(user.id, importResumeDto);
} catch (error) {
if (error instanceof PrismaClientKnownRequestError && error.code === "P2002") {
throw new BadRequestException(ErrorMessage.ResumeSlugAlreadyExists);

View File

@ -136,7 +136,7 @@ export class StorageService implements OnModuleInit {
const path = `${userId}/${type}/${filename}.${extension}`;
try {
return Promise.all([
return await Promise.all([
this.redis.del(`user:${userId}:storage:${type}:${filename}`),
this.client.removeObject(this.bucketName, path),
]);
@ -157,7 +157,7 @@ export class StorageService implements OnModuleInit {
}
try {
return this.client.removeObjects(this.bucketName, objectsList);
return await this.client.removeObjects(this.bucketName, objectsList);
} catch (error) {
throw new InternalServerErrorException(
`There was an error while deleting the folder at the specified path: ${this.bucketName}/${prefix}.`,

View File

@ -1,6 +1,18 @@
import { Body, Controller, Delete, Get, Patch, Res, UseGuards } from "@nestjs/common";
import {
BadRequestException,
Body,
Controller,
Delete,
Get,
InternalServerErrorException,
Patch,
Res,
UseGuards,
} from "@nestjs/common";
import { ApiTags } from "@nestjs/swagger";
import { PrismaClientKnownRequestError } from "@prisma/client/runtime/library";
import { UpdateUserDto, UserDto } from "@reactive-resume/dto";
import { ErrorMessage } from "@reactive-resume/utils";
import type { Response } from "express";
import { AuthService } from "../auth/auth.service";
@ -25,24 +37,32 @@ export class UserController {
@Patch("me")
@UseGuards(TwoFactorGuard)
async update(@User("email") email: string, @Body() updateUserDto: UpdateUserDto) {
// If user is updating their email, send a verification email
if (updateUserDto.email && updateUserDto.email !== email) {
await this.userService.updateByEmail(email, {
emailVerified: false,
email: updateUserDto.email,
try {
// If user is updating their email, send a verification email
if (updateUserDto.email && updateUserDto.email !== email) {
await this.userService.updateByEmail(email, {
emailVerified: false,
email: updateUserDto.email,
});
await this.authService.sendVerificationEmail(updateUserDto.email);
email = updateUserDto.email;
}
return await this.userService.updateByEmail(email, {
name: updateUserDto.name,
picture: updateUserDto.picture,
username: updateUserDto.username,
locale: updateUserDto.locale,
});
} catch (error) {
if (error instanceof PrismaClientKnownRequestError && error.code === "P2002") {
throw new BadRequestException(ErrorMessage.UserAlreadyExists);
}
await this.authService.sendVerificationEmail(updateUserDto.email);
email = updateUserDto.email;
throw new InternalServerErrorException(error);
}
return this.userService.updateByEmail(email, {
name: updateUserDto.name,
picture: updateUserDto.picture,
username: updateUserDto.username,
locale: updateUserDto.locale,
});
}
@Delete("me")

View File

@ -45,7 +45,7 @@ export class UserService {
// Otherwise, find the user by username
// If the user doesn't exist, throw an error
return this.prisma.user.findUniqueOrThrow({
return await this.prisma.user.findUniqueOrThrow({
where: { username: identifier },
include: { secrets: true },
});
@ -59,11 +59,11 @@ export class UserService {
}
async create(data: Prisma.UserCreateInput) {
return this.prisma.user.create({ data, include: { secrets: true } });
return await this.prisma.user.create({ data, include: { secrets: true } });
}
async updateByEmail(email: string, data: Prisma.UserUpdateArgs["data"]) {
return this.prisma.user.update({ where: { email }, data });
return await this.prisma.user.update({ where: { email }, data });
}
async updateByResetToken(resetToken: string, data: Prisma.SecretsUpdateArgs["data"]) {
@ -73,6 +73,6 @@ export class UserService {
async deleteOneById(id: string) {
await Promise.all([this.redis.del(`user:${id}:*`), this.storageService.deleteFolder(id)]);
return this.prisma.user.delete({ where: { id } });
return await this.prisma.user.delete({ where: { id } });
}
}

View File

@ -41,7 +41,7 @@ const sectionSchema = z.object({
id: z.string(),
name: z.string(),
type: z.enum(["basic", "custom"]),
columns: z.number(),
columns: z.number().or(z.null()),
visible: z.boolean(),
});

View File

@ -1,4 +1,3 @@
import { DotsSixVertical } from "@phosphor-icons/react";
import { cn } from "@reactive-resume/utils";
import * as PanelPrimitive from "react-resizable-panels";
@ -24,12 +23,10 @@ export const PanelResizeHandle = ({
<div className="flex h-full items-center justify-center">
<div
className={cn(
"absolute z-20 rounded-lg bg-transparent py-2 opacity-25 transition-all hover:bg-info hover:opacity-100",
"absolute inset-y-0 left-0 z-50 w-1 rounded-lg pl-1 transition-all hover:bg-info hover:opacity-100",
isDragging && "bg-info opacity-100",
)}
>
<DotsSixVertical weight="bold" />
</div>
/>
</div>
</PanelPrimitive.PanelResizeHandle>
);

View File

@ -3,6 +3,7 @@ import type { LinguiConfig } from "@lingui/conf";
const config: LinguiConfig = {
format: "po",
sourceLocale: "en-US",
compileNamespace: "es",
fallbackLocales: { default: "en-US" },
locales: [
"af-ZA",

View File

@ -19,10 +19,6 @@
"test": {
"cache": true,
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
},
"e2e": {
"cache": true,
"inputs": ["default", "^production"]
}
},
"namedInputs": {

View File

@ -1,7 +1,7 @@
{
"name": "@reactive-resume/source",
"description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"license": "MIT",
"private": true,
"author": {
@ -26,18 +26,17 @@
"prisma:generate": "pnpm exec prisma generate",
"prisma:migrate": "pnpm exec prisma migrate deploy",
"prisma:migrate:dev": "pnpm exec prisma migrate dev",
"messages:extract": "pnpm exec lingui extract --clean --overwrite --locale en-US"
"messages:extract": "pnpm exec lingui extract --clean --overwrite",
"messages:compile": "pnpm exec lingui compile"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@lingui/cli": "^4.5.0",
"@lingui/conf": "^4.5.0",
"@lingui/swc-plugin": "^4.0.4",
"@lingui/vite-plugin": "^4.5.0",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.2.9",
"@nx/cypress": "17.1.2",
"@nx/eslint-plugin": "17.1.2",
"@nx/eslint": "17.1.2",
"@nx/jest": "17.1.2",
@ -56,7 +55,7 @@
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/eslint-plugin-query": "^5.8.4",
"@testing-library/react": "14.1.0",
"@testing-library/react": "14.1.2",
"@types/async-retry": "^1.4.8",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.6",
@ -67,7 +66,7 @@
"@types/lodash.get": "^4.4.9",
"@types/lodash.set": "^4.3.9",
"@types/multer": "^1.4.10",
"@types/node": "20.9.1",
"@types/node": "20.9.2",
"@types/nodemailer": "^6.4.14",
"@types/papaparse": "^5.3.11",
"@types/passport-github2": "^1.2.9",
@ -86,9 +85,7 @@
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "~0.34.6",
"autoprefixer": "^10.4.16",
"cypress": "^13.5.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-lingui": "^0.2.0",
@ -98,7 +95,7 @@
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint": "~8.53.0",
"eslint": "~8.54.0",
"jest-environment-node": "^29.7.0",
"jest": "^29.7.0",
"jsdom": "~22.1.0",
@ -123,6 +120,7 @@
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/ibm-plex-sans": "^5.0.17",
"@hookform/resolvers": "^3.3.2",
"@lingui/cli": "^4.5.0",
"@lingui/core": "^4.5.0",
"@lingui/detect-locale": "^4.5.0",
"@lingui/macro": "^4.5.0",
@ -220,7 +218,7 @@
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.48.2",
"react-parallax-tilt": "^1.7.174",
"react-resizable-panels": "^0.0.54",
"react-resizable-panels": "^0.0.59",
"react-router-dom": "6.19.0",
"react-zoom-pan-pinch": "^3.3.0",
"react": "18.2.0",
@ -234,7 +232,7 @@
"use-keyboard-shortcut": "^1.1.6",
"usehooks-ts": "^2.9.1",
"webfontloader": "^1.6.28",
"zod-to-json-schema": "^3.21.4",
"zod-to-json-schema": "^3.22.0",
"zod": "^3.22.4",
"zundo": "^2.0.0",
"zustand": "^4.4.6"

1241
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -50,7 +50,7 @@ model Secrets {
model Resume {
id String @id @default(cuid())
title String
slug String @unique
slug String
data Json @default("{}")
visibility Visibility @default(private)
locked Boolean @default(false)
@ -60,5 +60,6 @@ model Resume {
updatedAt DateTime @updatedAt
@@unique([userId, id])
@@unique([userId, slug])
@@index(fields: [userId])
}