📦 v5.0.18 - https://docs.rxresu.me/changelog (Passkeys Support)

This commit is contained in:
Amruth Pillai
2026-04-14 10:51:04 +02:00
parent 4ed6177aee
commit c19b9746c8
70 changed files with 4758 additions and 622 deletions
+19 -19
View File
@@ -89,24 +89,24 @@ Copy `.env.example` to `.env` if not present. Key notes for local dev:
`vp` is the global CLI for Vite+. Do not use pnpm/npm/yarn directly — Vite+ wraps the underlying package manager. `vp` is the global CLI for Vite+. Do not use pnpm/npm/yarn directly — Vite+ wraps the underlying package manager.
| Task | Command | | Task | Command |
| -------------------------- | --------------------------------------------------------------- | | ----------------------------- | --------------------------------------------------------------- |
| Install dependencies | `vp install` | | Install dependencies | `vp install` |
| Dev server (port 3000) | `vp dev` | | Dev server (port 3000) | `vp dev` |
| Lint (Oxlint, type-aware) | `vp lint --type-aware` | | Lint (Oxlint, type-aware) | `vp lint --type-aware` |
| Format (Oxfmt) | `vp fmt` | | Format (Oxfmt) | `vp fmt` |
| Check (lint + fmt + types) | `vp check` | | Check (lint + format + types) | `vp check` |
| Typecheck | `pnpm typecheck` (uses tsgo) | | Typecheck | `pnpm typecheck` (uses tsgo) |
| Run tests | `vp test` | | Run tests | `vp test` |
| DB migrations | `pnpm db:generate` / `pnpm db:migrate` (auto-runs on dev start) | | DB migrations | `pnpm db:generate` / `pnpm db:migrate` (auto-runs on dev start) |
| DB studio | `pnpm db:studio` | | DB studio | `pnpm db:studio` |
| i18n extraction | `pnpm lingui:extract` | | i18n extraction | `pnpm lingui:extract` |
| Add a dependency | `vp add <package>` | | Add a dependency | `vp add <package>` |
| Remove a dependency | `vp remove <package>` | | Remove a dependency | `vp remove <package>` |
| One-off binary | `vp dlx <package>` | | One-off binary | `vp dlx <package>` |
| Build for production | `vp build` | | Build for production | `vp build` |
| Preview production build | `vp preview` | | Preview production build | `vp preview` |
| Start production server | `pnpm start` | | Start production server | `pnpm start` |
## Vite+ Pitfalls ## Vite+ Pitfalls
@@ -128,4 +128,4 @@ Copy `.env.example` to `.env` if not present. Key notes for local dev:
## Review Checklist for Agents ## Review Checklist for Agents
- [ ] Run `vp install` after pulling remote changes and before getting started. - [ ] Run `vp install` after pulling remote changes and before getting started.
- [ ] Run `pnpm lint:fix`, `pnpm fmt:fix`, `pnpm typecheck` and `vp test` to validate changes. - [ ] Run `pnpm lint:fix`, `pnpm format:fix`, `pnpm typecheck` and `vp test` to validate changes.
+9
View File
@@ -4,6 +4,15 @@ description: "List of all notable changes and updates to Reactive Resume"
rss: true rss: true
--- ---
<Update label="v5.0.18" description="14th April 2026">
## Features & Improvements
- Re-enabled **Passkeys** across authentication flows, including passkey sign-in on the login page and passkey management in account settings.
## Maintenance
- Updated dependencies and lockfile.
- Synced translation catalogs from Crowdin.
</Update>
<Update label="v5.0.17" description="9th April 2026"> <Update label="v5.0.17" description="9th April 2026">
## Features & Improvements ## Features & Improvements
- Added **Resume Analysis** in the resume builder right sidebar: run an on-demand AI review for an overall score (0 to 100), a dimension scorecard, strengths, and prioritized suggestions. Results are saved per resume and reload after refresh. - Added **Resume Analysis** in the resume builder right sidebar: run an on-demand AI review for an overall score (0 to 100), a dimension scorecard, strengths, and prioritized suggestions. Results are saved per resume and reload after refresh.
+3 -3
View File
@@ -126,7 +126,7 @@ Here are the most commonly used scripts during development:
| `pnpm run build` | Build the application for production | | `pnpm run build` | Build the application for production |
| `pnpm run start` | Start the production server | | `pnpm run start` | Start the production server |
| `pnpm run lint` | Run Oxlint linter and formatter | | `pnpm run lint` | Run Oxlint linter and formatter |
| `pnpm run fmt` | Run Oxfmt formatter | | `pnpm run format` | Run Oxfmt formatter |
| `pnpm run typecheck` | Run TypeScript type checking | | `pnpm run typecheck` | Run TypeScript type checking |
### Database ### Database
@@ -252,8 +252,8 @@ Uses [Oxlint](https://oxlint.dev/) for linting and [Oxfmt](https://oxfmt.dev/) f
```bash ```bash
# Check and auto-fix issues # Check and auto-fix issues
pnpm run lint pnpm run lint:fix
pnpm run fmt pnpm run format:fix
``` ```
### Type Checking ### Type Checking
+6 -12
View File
@@ -3,15 +3,6 @@ title: "Setting up passkeys"
description: "Learn how to register passkeys (WebAuthn) to sign in securely using biometrics or your device PIN" description: "Learn how to register passkeys (WebAuthn) to sign in securely using biometrics or your device PIN"
--- ---
<Warning>
<strong>Passkeys Temporarily Disabled:</strong> Passkey registration and sign-in are currently unavailable in Reactive Resume due to an upstream issue with our authentication provider. We are closely monitoring the situation and will re-enable passkeys once it is resolved.
For more details and technical updates, see the <a href="https://github.com/better-auth/better-auth/issues/7463" target="_blank" rel="noopener">GitHub issue #7463</a>.
</Warning>
---
<Steps> <Steps>
<Step title="Sign in to the dashboard"> <Step title="Sign in to the dashboard">
Head over to [https://rxresu.me](https://rxresu.me) and sign in with your account credentials. Head over to [https://rxresu.me](https://rxresu.me) and sign in with your account credentials.
@@ -27,8 +18,7 @@ For more details and technical updates, see the <a href="https://github.com/bett
</Step> </Step>
<Step title="Name your passkey"> <Step title="Name your passkey">
You'll be prompted to enter a name for the passkey. Use something descriptive so you can recognize it later (for Enter a descriptive name so you can recognize it later (for example, "MacBook Touch ID" or "iPhone Face ID").
example, “MacBook Touch ID” or “iPhone Face ID”).
</Step> </Step>
<Step title="Complete the passkey prompt"> <Step title="Complete the passkey prompt">
@@ -41,11 +31,15 @@ For more details and technical updates, see the <a href="https://github.com/bett
</Step> </Step>
<Step title="Manage passkeys (optional)"> <Step title="Manage passkeys (optional)">
After registering, your passkey will show up in the list. You can delete a passkey using the trash icon next to it. After registering, your passkey will show up in the list. You can rename it or delete it from the same section.
<Warning> <Warning>
Deleting a passkey cannot be undone. After deletion, you won't be able to sign in using that passkey anymore. Deleting a passkey cannot be undone. After deletion, you won't be able to sign in using that passkey anymore.
</Warning> </Warning>
</Step> </Step>
<Step title="Sign in with a passkey">
On the login page, click <Badge>Sign in with Passkey</Badge> to authenticate without entering your password.
</Step>
</Steps> </Steps>
+50
View File
@@ -900,6 +900,7 @@ msgstr "Graad"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Vee uit" msgstr "Vee uit"
@@ -1226,10 +1227,18 @@ msgstr "Uitvoer"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Misluk om hervat te dupliseer" msgstr "Misluk om hervat te dupliseer"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Kon nie twee-faktor-magtiging opstel nie." msgstr "Kon nie twee-faktor-magtiging opstel nie."
@@ -1750,6 +1759,10 @@ msgstr "Langtermyn-volhoubaarheid"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Het jy toegang tot jou magtiger verloor?" msgstr "Het jy toegang tot jou magtiger verloor?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Hoof" msgstr "Hoof"
@@ -1814,6 +1827,10 @@ msgstr "Meertalig"
msgid "Name" msgid "Name"
msgstr "Naam" msgstr "Naam"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalees" msgstr "Nepalees"
@@ -1867,6 +1884,10 @@ msgstr "Geen ervaring"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Geen werksgeleenthede gevind nie. Probeer 'n ander soeknavraag." msgstr "Geen werksgeleenthede gevind nie. Probeer 'n ander soeknavraag."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Geen resultate gevind nie." msgstr "Geen resultate gevind nie."
@@ -1971,6 +1992,18 @@ msgstr "Paragraaf"
msgid "Part-time" msgid "Part-time"
msgstr "Deeltyds" msgstr "Deeltyds"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Toegangssleutels & 2FA" msgstr "Toegangssleutels & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Verwysings"
msgid "Refresh" msgid "Refresh"
msgstr "Verfris" msgstr "Verfris"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Onthou jy jou wagwoord? <0/>" msgstr "Onthou jy jou wagwoord? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russies" msgstr "Russies"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Meld aan met GitHub, Google of 'n pasgemaakte OAuth-verskaffer."
msgid "Sign up" msgid "Sign up"
msgstr "Meld aan" msgstr "Meld aan"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Ontkoppel tans jou {providerName}-rekening..."
msgid "Unlock" msgid "Unlock"
msgstr "Ontsluit" msgstr "Ontsluit"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Ongeverifieer" msgstr "Ongeverifieer"
@@ -3204,6 +3250,10 @@ msgstr "Jy kan ook jou gebruikersnaam gebruik om aan te meld."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Jy kan jou CV deel via 'n unieke publieke URL, dit met 'n wagwoord beskerm, of dit as 'n PDF aflaai om direk te deel. Die keuse is joune!" msgstr "Jy kan jou CV deel via 'n unieke publieke URL, dit met 'n wagwoord beskerm, of dit as 'n PDF aflaai om direk te deel. Die keuse is joune!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Jy het ongestoorde veranderinge wat verlore sal gaan." msgstr "Jy het ongestoorde veranderinge wat verlore sal gaan."
+50
View File
@@ -900,6 +900,7 @@ msgstr "ዲግሪ"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "ሰርዝ" msgstr "ሰርዝ"
@@ -1226,10 +1227,18 @@ msgstr "ወደ ውጪ አስመጣ"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "ሁለት-ደረጃ ማረጋገጫን ማሰናዳት አልተሳካም።" msgstr "ሁለት-ደረጃ ማረጋገጫን ማሰናዳት አልተሳካም።"
@@ -1750,6 +1759,10 @@ msgstr "ረጅም ጊዜ የሚቆይ መረጃ"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "ወደ ማረጋገጫ መተግበሪያዎ መዳረስ አጥፋችሁ?" msgstr "ወደ ማረጋገጫ መተግበሪያዎ መዳረስ አጥፋችሁ?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "ዋና" msgstr "ዋና"
@@ -1814,6 +1827,10 @@ msgstr "በብዙ ቋንቋዎች"
msgid "Name" msgid "Name"
msgstr "ስም" msgstr "ስም"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "ኔፓሊኛ" msgstr "ኔፓሊኛ"
@@ -1867,6 +1884,10 @@ msgstr ""
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "ምንም ውጤት አልተገኘም።" msgstr "ምንም ውጤት አልተገኘም።"
@@ -1971,6 +1992,18 @@ msgstr "አንቀጽ"
msgid "Part-time" msgid "Part-time"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "ፓስኪዎች እና 2FA" msgstr "ፓስኪዎች እና 2FA"
@@ -2189,6 +2222,10 @@ msgstr "ማመልከቻዎች"
msgid "Refresh" msgid "Refresh"
msgstr "ዳስ አድርግ" msgstr "ዳስ አድርግ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "የይለፍ ቃልዎን ያስታውሳሉ? <0/>" msgstr "የይለፍ ቃልዎን ያስታውሳሉ? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "ሩስኛ" msgstr "ሩስኛ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "በ GitHub፣ Google ወይም በብጁ OAuth አቅራቢ ግባ።"
msgid "Sign up" msgid "Sign up"
msgstr "መመዝገብ" msgstr "መመዝገብ"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "ከ{providerName} መለያዎን በመለያየት ላይ…"
msgid "Unlock" msgid "Unlock"
msgstr "ቆልፍ ክፈት" msgstr "ቆልፍ ክፈት"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "ያልተረጋገጠ" msgstr "ያልተረጋገጠ"
@@ -3204,6 +3250,10 @@ msgstr "በመግባትም ተጠቃሚ ስምዎን መጠቀም ትችላላ
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "የየታሪክዎን በተለየ የህዝብ አገናኝ ይካፈሉት፣ በይለፍ ቃል ይከላከሉት፣ ወይም በቀጥታ ለመካፈል እንደ PDF ያውርዱት። ምርጫው የእርስዎ ነው!" msgstr "የየታሪክዎን በተለየ የህዝብ አገናኝ ይካፈሉት፣ በይለፍ ቃል ይከላከሉት፣ ወይም በቀጥታ ለመካፈል እንደ PDF ያውርዱት። ምርጫው የእርስዎ ነው!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "ያልተቀመጡ ለውጦች አሉዎት።" msgstr "ያልተቀመጡ ለውጦች አሉዎት።"
+50
View File
@@ -900,6 +900,7 @@ msgstr "الدرجة"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "حذف" msgstr "حذف"
@@ -1226,10 +1227,18 @@ msgstr "تصدير"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "فشل في تكرار السيرة الذاتية" msgstr "فشل في تكرار السيرة الذاتية"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "فشل إعداد المصادقة الثنائية." msgstr "فشل إعداد المصادقة الثنائية."
@@ -1750,6 +1759,10 @@ msgstr "الاستدامة طويلة الأجل"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "هل فقدت إمكانية الوصول إلى تطبيق المصادقة؟" msgstr "هل فقدت إمكانية الوصول إلى تطبيق المصادقة؟"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "رئيسي" msgstr "رئيسي"
@@ -1814,6 +1827,10 @@ msgstr "متعدد اللغات"
msgid "Name" msgid "Name"
msgstr "الاسم" msgstr "الاسم"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "النيبالية" msgstr "النيبالية"
@@ -1867,6 +1884,10 @@ msgstr "لا توجد خبرة"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "لم يتم العثور على وظائف. جرّب استعلام بحث مختلف." msgstr "لم يتم العثور على وظائف. جرّب استعلام بحث مختلف."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "لم نعثر على نتائج." msgstr "لم نعثر على نتائج."
@@ -1971,6 +1992,18 @@ msgstr "فقرة"
msgid "Part-time" msgid "Part-time"
msgstr "دوام جزئي" msgstr "دوام جزئي"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "مفاتيح المرور والمصادقة الثنائية 2FA" msgstr "مفاتيح المرور والمصادقة الثنائية 2FA"
@@ -2189,6 +2222,10 @@ msgstr "المراجعون"
msgid "Refresh" msgid "Refresh"
msgstr "تحديث" msgstr "تحديث"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "تتذكر كلمة المرور؟ <0/>" msgstr "تتذكر كلمة المرور؟ <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "الروسية" msgstr "الروسية"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "سجّل الدخول باستخدام GitHub أو Google أو مزوّ
msgid "Sign up" msgid "Sign up"
msgstr "إنشاء حساب" msgstr "إنشاء حساب"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "جاري إلغاء ربط حسابك على {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "فتح القفل" msgstr "فتح القفل"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "غير مُتحقَّق" msgstr "غير مُتحقَّق"
@@ -3204,6 +3250,10 @@ msgstr "يمكنك أيضًا استخدام اسم المستخدم لتسجي
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "يمكنك مشاركة سيرتك الذاتية عبر عنوان URL عام فريد، أو حمايتها بكلمة مرور، أو تنزيلها كملف PDF لمشاركتها مباشرة. القرار لك!" msgstr "يمكنك مشاركة سيرتك الذاتية عبر عنوان URL عام فريد، أو حمايتها بكلمة مرور، أو تنزيلها كملف PDF لمشاركتها مباشرة. القرار لك!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "لديك تغييرات غير محفوظة ستُفقد." msgstr "لديك تغييرات غير محفوظة ستُفقد."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Dərəcə"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Sil" msgstr "Sil"
@@ -1226,10 +1227,18 @@ msgstr "İxrac"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Resume-ni təkrarlaya bilmədi" msgstr "Resume-ni təkrarlaya bilmədi"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "İki mərhələli autentifikasiyanı qurmaq alınmadı." msgstr "İki mərhələli autentifikasiyanı qurmaq alınmadı."
@@ -1750,6 +1759,10 @@ msgstr "Uzunmüddətli Davamlılıq"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Autentifikatorunuza çıxışınızı itirmisiniz?" msgstr "Autentifikatorunuza çıxışınızı itirmisiniz?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Əsas" msgstr "Əsas"
@@ -1814,6 +1827,10 @@ msgstr "Çoxdilli"
msgid "Name" msgid "Name"
msgstr "Ad" msgstr "Ad"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepal" msgstr "Nepal"
@@ -1867,6 +1884,10 @@ msgstr "Təcrübə yoxdur"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Heç bir iş tapılmadı. Fərqli axtarış sorğusu sınayın." msgstr "Heç bir iş tapılmadı. Fərqli axtarış sorğusu sınayın."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nəticə tapılmadı." msgstr "Nəticə tapılmadı."
@@ -1971,6 +1992,18 @@ msgstr "Paraqraf"
msgid "Part-time" msgid "Part-time"
msgstr "Yarımştat" msgstr "Yarımştat"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Keçid Açarları və 2FA" msgstr "Keçid Açarları və 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referanslar"
msgid "Refresh" msgid "Refresh"
msgstr "Yenilə" msgstr "Yenilə"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Şifrənizi xatırlayırsınız? <0/>" msgstr "Şifrənizi xatırlayırsınız? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rus" msgstr "Rus"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google və ya xüsusi OAuth provayderi ilə daxil olun."
msgid "Sign up" msgid "Sign up"
msgstr "Qeydiyyatdan keç" msgstr "Qeydiyyatdan keç"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "{providerName} hesabınızın əlaqəsi kəsilir..."
msgid "Unlock" msgid "Unlock"
msgstr "Kilidi aç" msgstr "Kilidi aç"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Təsdiqlənməyib" msgstr "Təsdiqlənməyib"
@@ -3204,6 +3250,10 @@ msgstr "Daxil olmaq üçün istifadəçi adınızdan da istifadə edə bilərsin
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Özgeçmişinizi unikal açıq URL vasitəsilə paylaşa, onu parol ilə qoruya və ya birbaşa paylaşmaq üçün PDF kimi endirə bilərsiniz. Seçim sizindir!" msgstr "Özgeçmişinizi unikal açıq URL vasitəsilə paylaşa, onu parol ilə qoruya və ya birbaşa paylaşmaq üçün PDF kimi endirə bilərsiniz. Seçim sizindir!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Saxlanılmamış dəyişiklikləriniz itiriləcək." msgstr "Saxlanılmamış dəyişiklikləriniz itiriləcək."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Степен"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Изтриване" msgstr "Изтриване"
@@ -1226,10 +1227,18 @@ msgstr "Експорт"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Неуспешно дублиране на резюмето" msgstr "Неуспешно дублиране на резюмето"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Неуспешно настройване на двуфакторно удостоверяване." msgstr "Неуспешно настройване на двуфакторно удостоверяване."
@@ -1750,6 +1759,10 @@ msgstr "Дългосрочна устойчивост"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Загубихте достъп до приложението си за удостоверяване?" msgstr "Загубихте достъп до приложението си за удостоверяване?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Основен" msgstr "Основен"
@@ -1814,6 +1827,10 @@ msgstr "Многоезично"
msgid "Name" msgid "Name"
msgstr "Име" msgstr "Име"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Непалски" msgstr "Непалски"
@@ -1867,6 +1884,10 @@ msgstr "Без опит"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Не са намерени работни места. Опитайте с друга заявка за търсене." msgstr "Не са намерени работни места. Опитайте с друга заявка за търсене."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Няма намерени резултати." msgstr "Няма намерени резултати."
@@ -1971,6 +1992,18 @@ msgstr "Параграф"
msgid "Part-time" msgid "Part-time"
msgstr "На непълно работно време" msgstr "На непълно работно време"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Ключове за достъп и 2FA" msgstr "Ключове за достъп и 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Препоръки"
msgid "Refresh" msgid "Refresh"
msgstr "Опресняване" msgstr "Опресняване"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Спомняте ли си паролата? <0/>" msgstr "Спомняте ли си паролата? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Руски" msgstr "Руски"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Влезте с GitHub, Google или собствен OAuth доста
msgid "Sign up" msgid "Sign up"
msgstr "Регистрация" msgstr "Регистрация"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Прекъсване на връзката с вашия {providerName}
msgid "Unlock" msgid "Unlock"
msgstr "Отключване" msgstr "Отключване"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Непотвърден" msgstr "Непотвърден"
@@ -3204,6 +3250,10 @@ msgstr "Можете също да използвате потребителск
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Можете да споделяте автобиографията си чрез уникален публичен URL, да я защитите с парола или да я изтеглите като PDF за директно споделяне. Изборът е ваш!" msgstr "Можете да споделяте автобиографията си чрез уникален публичен URL, да я защитите с парола или да я изтеглите като PDF за директно споделяне. Изборът е ваш!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Имате незапазени промени, които ще бъдат загубени." msgstr "Имате незапазени промени, които ще бъдат загубени."
+50
View File
@@ -900,6 +900,7 @@ msgstr "ডিগ্রি"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "মুছে ফেলুন" msgstr "মুছে ফেলুন"
@@ -1226,10 +1227,18 @@ msgstr "এক্সপোর্ট"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "রিজ্যুমের অনুলিপি তৈরি করতে ব্যর্থ হয়েছে" msgstr "রিজ্যুমের অনুলিপি তৈরি করতে ব্যর্থ হয়েছে"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "টু‑ফ্যাক্টর প্রমাণীকরণ সেটআপ করতে ব্যর্থ হয়েছে।" msgstr "টু‑ফ্যাক্টর প্রমাণীকরণ সেটআপ করতে ব্যর্থ হয়েছে।"
@@ -1750,6 +1759,10 @@ msgstr "দীর্ঘমেয়াদি স্থায়িত্ব"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "অথেনটিকেটরে প্রবেশাধিকার হারিয়েছেন?" msgstr "অথেনটিকেটরে প্রবেশাধিকার হারিয়েছেন?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "প্রধান" msgstr "প্রধান"
@@ -1814,6 +1827,10 @@ msgstr "বহুভাষিক"
msgid "Name" msgid "Name"
msgstr "নাম" msgstr "নাম"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "নেপালি" msgstr "নেপালি"
@@ -1867,6 +1884,10 @@ msgstr "কোনও অভিজ্ঞতা নেই"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "কোনও চাকরি পাওয়া যায়নি। অন্য কোনো অনুসন্ধান শব্দবিন্যাস চেষ্টা করুন।" msgstr "কোনও চাকরি পাওয়া যায়নি। অন্য কোনো অনুসন্ধান শব্দবিন্যাস চেষ্টা করুন।"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "কোন ফলাফল খুঁজে পাওয়া যায়নি।" msgstr "কোন ফলাফল খুঁজে পাওয়া যায়নি।"
@@ -1971,6 +1992,18 @@ msgstr "অনুচ্ছেদ"
msgid "Part-time" msgid "Part-time"
msgstr "অংশকালীন" msgstr "অংশকালীন"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "পাসকি ও 2FA" msgstr "পাসকি ও 2FA"
@@ -2189,6 +2222,10 @@ msgstr "রেফারেন্সসমূহ"
msgid "Refresh" msgid "Refresh"
msgstr "রিফ্রেশ" msgstr "রিফ্রেশ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "আপনার পাসওয়ার্ড মনে আছে? <0/>" msgstr "আপনার পাসওয়ার্ড মনে আছে? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "রুশ" msgstr "রুশ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google বা যেকোনো কাস্টম OAuth প্
msgid "Sign up" msgid "Sign up"
msgstr "সাইন আপ" msgstr "সাইন আপ"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "আপনার {providerName} অ্যাকাউন্টের ল
msgid "Unlock" msgid "Unlock"
msgstr "আনলক করুন" msgstr "আনলক করুন"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "যাচাই করা হয়নি" msgstr "যাচাই করা হয়নি"
@@ -3204,6 +3250,10 @@ msgstr "আপনি চাইলে ইউজারনেম দিয়েও
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "আপনি একটি আলাদা সর্বজনীন URL‑এর মাধ্যমে জীবনবৃত্তান্ত শেয়ার করতে পারেন, পাসওয়ার্ড দিয়ে সুরক্ষিত করতে পারেন, অথবা সরাসরি শেয়ার করার জন্য PDF হিসেবে ডাউনলোড করতে পারেন। সিদ্ধান্ত আপনার!" msgstr "আপনি একটি আলাদা সর্বজনীন URL‑এর মাধ্যমে জীবনবৃত্তান্ত শেয়ার করতে পারেন, পাসওয়ার্ড দিয়ে সুরক্ষিত করতে পারেন, অথবা সরাসরি শেয়ার করার জন্য PDF হিসেবে ডাউনলোড করতে পারেন। সিদ্ধান্ত আপনার!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "আপনার অসংরক্ষিত পরিবর্তন হারিয়ে যাবে।" msgstr "আপনার অসংরক্ষিত পরিবর্তন হারিয়ে যাবে।"
+50
View File
@@ -900,6 +900,7 @@ msgstr "Titulació"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Suprimeix" msgstr "Suprimeix"
@@ -1226,10 +1227,18 @@ msgstr "Exporta"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "No s'ha pogut duplicar la continuació." msgstr "No s'ha pogut duplicar la continuació."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "No sha pogut configurar lautenticació en dos passos." msgstr "No sha pogut configurar lautenticació en dos passos."
@@ -1750,6 +1759,10 @@ msgstr "Sostenibilitat a llarg termini"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Has perdut laccés a lautenticador?" msgstr "Has perdut laccés a lautenticador?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Principal" msgstr "Principal"
@@ -1814,6 +1827,10 @@ msgstr "Multilingüe"
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalès" msgstr "Nepalès"
@@ -1867,6 +1884,10 @@ msgstr "Sense experiència"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "No s'han trobat feines. Prova una altra consulta de cerca." msgstr "No s'han trobat feines. Prova una altra consulta de cerca."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "No shan trobat resultats." msgstr "No shan trobat resultats."
@@ -1971,6 +1992,18 @@ msgstr "Paràgraf"
msgid "Part-time" msgid "Part-time"
msgstr "Temps parcial" msgstr "Temps parcial"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Claus daccés i A2F" msgstr "Claus daccés i A2F"
@@ -2189,6 +2222,10 @@ msgstr "Referències"
msgid "Refresh" msgid "Refresh"
msgstr "Actualitza" msgstr "Actualitza"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Recordeu la contrasenya? <0/>" msgstr "Recordeu la contrasenya? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rus" msgstr "Rus"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Inicia sessió amb GitHub, Google o un proveïdor OAuth personalitzat."
msgid "Sign up" msgid "Sign up"
msgstr "Registrat" msgstr "Registrat"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Sestà desvinculant el compte de {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Desbloqueja" msgstr "Desbloqueja"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Sense verificar" msgstr "Sense verificar"
@@ -3204,6 +3250,10 @@ msgstr "També pots utilitzar el nom dusuari per iniciar sessió."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Pots compartir el currículum mitjançant un URL públic únic, protegir-lo amb una contrasenya o baixar-lo en PDF per compartir-lo directament. Tu tries!" msgstr "Pots compartir el currículum mitjançant un URL públic únic, protegir-lo amb una contrasenya o baixar-lo en PDF per compartir-lo directament. Tu tries!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Tens canvis no desats que es perdran." msgstr "Tens canvis no desats que es perdran."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Titul"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Odstranit" msgstr "Odstranit"
@@ -1226,10 +1227,18 @@ msgstr "Export"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Nepodařilo se duplikovat životopis" msgstr "Nepodařilo se duplikovat životopis"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Dvoufázové ověření se nepodařilo nastavit." msgstr "Dvoufázové ověření se nepodařilo nastavit."
@@ -1750,6 +1759,10 @@ msgstr "Dlouhodobá udržitelnost"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Ztratili jste přístup ke své autentizační aplikaci?" msgstr "Ztratili jste přístup ke své autentizační aplikaci?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Hlavní" msgstr "Hlavní"
@@ -1814,6 +1827,10 @@ msgstr "Vícejazyčné"
msgid "Name" msgid "Name"
msgstr "Název" msgstr "Název"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepálština" msgstr "Nepálština"
@@ -1867,6 +1884,10 @@ msgstr "Bez zkušeností"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Nebyla nalezena žádná pracovní místa. Zkuste jiný vyhledávací dotaz." msgstr "Nebyla nalezena žádná pracovní místa. Zkuste jiný vyhledávací dotaz."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nebyly nalezeny žádné výsledky." msgstr "Nebyly nalezeny žádné výsledky."
@@ -1971,6 +1992,18 @@ msgstr "Odstavec"
msgid "Part-time" msgid "Part-time"
msgstr "Na částečný úvazek" msgstr "Na částečný úvazek"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Přístupové klíče a 2FA" msgstr "Přístupové klíče a 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Reference"
msgid "Refresh" msgid "Refresh"
msgstr "Obnovit" msgstr "Obnovit"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Vzpomínáte si na heslo? <0/>" msgstr "Vzpomínáte si na heslo? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Ruština" msgstr "Ruština"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Přihlaste se pomocí GitHubu, Googlu nebo vlastního poskytovatele OAut
msgid "Sign up" msgid "Sign up"
msgstr "Zaregistrovat se" msgstr "Zaregistrovat se"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Odpájím váš účet {providerName}…"
msgid "Unlock" msgid "Unlock"
msgstr "Odemknout" msgstr "Odemknout"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Neověřeno" msgstr "Neověřeno"
@@ -3204,6 +3250,10 @@ msgstr "K přihlášení můžete také použít své uživatelské jméno."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Svůj životopis můžete sdílet pomocí jedinečné veřejné URL adresy, chránit ho heslem nebo si ho stáhnout jako PDF a sdílet přímo. Volba je na vás!" msgstr "Svůj životopis můžete sdílet pomocí jedinečné veřejné URL adresy, chránit ho heslem nebo si ho stáhnout jako PDF a sdílet přímo. Volba je na vás!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Máte neuložené změny, které budou ztraceny." msgstr "Máte neuložené změny, které budou ztraceny."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Grad"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Slet" msgstr "Slet"
@@ -1226,10 +1227,18 @@ msgstr "Eksportér"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Kunne ikke duplikere CV'et" msgstr "Kunne ikke duplikere CV'et"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Det lykkedes ikke at konfigurere to-faktor-godkendelse." msgstr "Det lykkedes ikke at konfigurere to-faktor-godkendelse."
@@ -1750,6 +1759,10 @@ msgstr "Langsigtet bæredygtighed"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Mistet adgangen til din godkendelsesapp?" msgstr "Mistet adgangen til din godkendelsesapp?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Hovedafsnit" msgstr "Hovedafsnit"
@@ -1814,6 +1827,10 @@ msgstr "Flersproget"
msgid "Name" msgid "Name"
msgstr "Navn" msgstr "Navn"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalesisk" msgstr "Nepalesisk"
@@ -1867,6 +1884,10 @@ msgstr "Ingen erfaring"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Ingen jobs fundet. Prøv en anden søgeforespørgsel." msgstr "Ingen jobs fundet. Prøv en anden søgeforespørgsel."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Ingen resultater fundet." msgstr "Ingen resultater fundet."
@@ -1971,6 +1992,18 @@ msgstr "Afsnit"
msgid "Part-time" msgid "Part-time"
msgstr "Deltid" msgstr "Deltid"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Adgangsnøgler & 2FA" msgstr "Adgangsnøgler & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referencer"
msgid "Refresh" msgid "Refresh"
msgstr "Opdater" msgstr "Opdater"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Husker du din adgangskode? <0/>" msgstr "Husker du din adgangskode? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russisk" msgstr "Russisk"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Log ind med GitHub, Google eller en brugerdefineret OAuth-udbyder."
msgid "Sign up" msgid "Sign up"
msgstr "Tilmeld dig" msgstr "Tilmeld dig"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Fjerner linket til din {providerName}-konto..."
msgid "Unlock" msgid "Unlock"
msgstr "Lås op" msgstr "Lås op"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Ikke verificeret" msgstr "Ikke verificeret"
@@ -3204,6 +3250,10 @@ msgstr "Du kan også bruge dit brugernavn til at logge ind."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Du kan dele dit CV via en unik offentlig URL, beskytte det med en adgangskode eller downloade det som PDF for at dele det direkte. Valget er dit!" msgstr "Du kan dele dit CV via en unik offentlig URL, beskytte det med en adgangskode eller downloade det som PDF for at dele det direkte. Valget er dit!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Du har ikke-gemte ændringer, der vil gå tabt." msgstr "Du har ikke-gemte ændringer, der vil gå tabt."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Abschluss"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@@ -1226,10 +1227,18 @@ msgstr "Exportieren"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Lebenslauf konnte nicht dupliziert werden" msgstr "Lebenslauf konnte nicht dupliziert werden"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Die Einrichtung der Zwei-Faktor-Authentifizierung ist fehlgeschlagen." msgstr "Die Einrichtung der Zwei-Faktor-Authentifizierung ist fehlgeschlagen."
@@ -1750,6 +1759,10 @@ msgstr "Langfristige Nachhaltigkeit"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Zugriff auf Ihren Authenticator verloren?" msgstr "Zugriff auf Ihren Authenticator verloren?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Hauptbereich" msgstr "Hauptbereich"
@@ -1814,6 +1827,10 @@ msgstr "Mehrsprachig"
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalesisch" msgstr "Nepalesisch"
@@ -1867,6 +1884,10 @@ msgstr "Keine Erfahrung"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Keine Jobs gefunden. Versuchen Sie eine andere Suchanfrage." msgstr "Keine Jobs gefunden. Versuchen Sie eine andere Suchanfrage."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Keine Ergebnisse gefunden." msgstr "Keine Ergebnisse gefunden."
@@ -1971,6 +1992,18 @@ msgstr "Absatz"
msgid "Part-time" msgid "Part-time"
msgstr "Teilzeit" msgstr "Teilzeit"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeys & 2FA" msgstr "Passkeys & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referenzen"
msgid "Refresh" msgid "Refresh"
msgstr "Aktualisieren" msgstr "Aktualisieren"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Passwort noch parat? <0/>" msgstr "Passwort noch parat? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russisch" msgstr "Russisch"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Melde dich mit GitHub, Google oder einem benutzerdefinierten OAuth-Anbie
msgid "Sign up" msgid "Sign up"
msgstr "Registrieren" msgstr "Registrieren"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Die Verknüpfung Ihres {providerName}-Kontos wird aufgehoben..."
msgid "Unlock" msgid "Unlock"
msgstr "Entsperren" msgstr "Entsperren"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Nicht verifiziert" msgstr "Nicht verifiziert"
@@ -3204,6 +3250,10 @@ msgstr "Sie können sich auch mit Ihrem Benutzernamen anmelden."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Du kannst deinen Lebenslauf über eine eindeutige öffentliche URL teilen, ihn mit einem Passwort schützen oder ihn als PDF herunterladen, um ihn direkt zu versenden. Die Wahl liegt bei dir!" msgstr "Du kannst deinen Lebenslauf über eine eindeutige öffentliche URL teilen, ihn mit einem Passwort schützen oder ihn als PDF herunterladen, um ihn direkt zu versenden. Die Wahl liegt bei dir!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Sie haben ungespeicherte Änderungen, die verworfen werden." msgstr "Sie haben ungespeicherte Änderungen, die verworfen werden."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Πτυχίο"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Διαγραφή" msgstr "Διαγραφή"
@@ -1226,10 +1227,18 @@ msgstr "Εξαγωγή"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Απέτυχε η αντιγραφή βιογραφικού σημειώματος" msgstr "Απέτυχε η αντιγραφή βιογραφικού σημειώματος"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Αποτυχία ρύθμισης ελέγχου ταυτότητας δύο παραγόντων." msgstr "Αποτυχία ρύθμισης ελέγχου ταυτότητας δύο παραγόντων."
@@ -1750,6 +1759,10 @@ msgstr "Μακροπρόθεσμη βιωσιμότητα"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Χάσατε την πρόσβαση στην εφαρμογή ελέγχου ταυτότητάς σας;" msgstr "Χάσατε την πρόσβαση στην εφαρμογή ελέγχου ταυτότητάς σας;"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Κύρια" msgstr "Κύρια"
@@ -1814,6 +1827,10 @@ msgstr "Πολυγλωσσικό"
msgid "Name" msgid "Name"
msgstr "Όνομα" msgstr "Όνομα"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Νεπάλι" msgstr "Νεπάλι"
@@ -1867,6 +1884,10 @@ msgstr "Καμία εμπειρία"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Δεν βρέθηκαν θέσεις εργασίας. Δοκιμάστε ένα διαφορετικό ερώτημα αναζήτησης." msgstr "Δεν βρέθηκαν θέσεις εργασίας. Δοκιμάστε ένα διαφορετικό ερώτημα αναζήτησης."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Δεν βρέθηκαν αποτελέσματα." msgstr "Δεν βρέθηκαν αποτελέσματα."
@@ -1971,6 +1992,18 @@ msgstr "Παράγραφος"
msgid "Part-time" msgid "Part-time"
msgstr "Μερικής απασχόλησης" msgstr "Μερικής απασχόλησης"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Κλειδιά πρόσβασης & 2FA" msgstr "Κλειδιά πρόσβασης & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Συστάσεις"
msgid "Refresh" msgid "Refresh"
msgstr "Ανανέωση" msgstr "Ανανέωση"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Θυμάστε τον κωδικό σας; <0/>" msgstr "Θυμάστε τον κωδικό σας; <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Ρωσικά" msgstr "Ρωσικά"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Συνδεθείτε με GitHub, Google ή έναν προσαρμοσ
msgid "Sign up" msgid "Sign up"
msgstr "Εγγραφείτε" msgstr "Εγγραφείτε"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Κατάργηση σύνδεσης του λογαριασμού σας
msgid "Unlock" msgid "Unlock"
msgstr "Ξεκλείδωμα" msgstr "Ξεκλείδωμα"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Μη επαληθευμένο" msgstr "Μη επαληθευμένο"
@@ -3204,6 +3250,10 @@ msgstr "Μπορείτε επίσης να χρησιμοποιήσετε το
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Μπορείτε να μοιραστείτε το βιογραφικό σας σημείωμα μέσω ενός μοναδικού δημόσιου URL, να το προστατεύσετε με κωδικό πρόσβασης ή να το κατεβάσετε ως PDF για να το μοιραστείτε απευθείας. Η επιλογή είναι δική σας!" msgstr "Μπορείτε να μοιραστείτε το βιογραφικό σας σημείωμα μέσω ενός μοναδικού δημόσιου URL, να το προστατεύσετε με κωδικό πρόσβασης ή να το κατεβάσετε ως PDF για να το μοιραστείτε απευθείας. Η επιλογή είναι δική σας!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Έχετε μη αποθηκευμένες αλλαγές που θα χαθούν." msgstr "Έχετε μη αποθηκευμένες αλλαγές που θα χαθούν."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Degree"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Delete" msgstr "Delete"
@@ -1226,10 +1227,18 @@ msgstr "Export"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Failed to duplicate resume" msgstr "Failed to duplicate resume"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Failed to setup two-factor authentication." msgstr "Failed to setup two-factor authentication."
@@ -1750,6 +1759,10 @@ msgstr "Long-term Sustainability"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Lost access to your authenticator?" msgstr "Lost access to your authenticator?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Main" msgstr "Main"
@@ -1814,6 +1827,10 @@ msgstr "Multilingual"
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepali" msgstr "Nepali"
@@ -1867,6 +1884,10 @@ msgstr "No experience"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "No jobs found. Try a different search query." msgstr "No jobs found. Try a different search query."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "No results found." msgstr "No results found."
@@ -1971,6 +1992,18 @@ msgstr "Paragraph"
msgid "Part-time" msgid "Part-time"
msgstr "Part-time" msgstr "Part-time"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeys & 2FA" msgstr "Passkeys & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "References"
msgid "Refresh" msgid "Refresh"
msgstr "Refresh" msgstr "Refresh"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Remember your password? <0/>" msgstr "Remember your password? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russian" msgstr "Russian"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Sign in with GitHub, Google or a custom OAuth provider."
msgid "Sign up" msgid "Sign up"
msgstr "Sign up" msgstr "Sign up"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Unlinking your {providerName} account..."
msgid "Unlock" msgid "Unlock"
msgstr "Unlock" msgstr "Unlock"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Unverified" msgstr "Unverified"
@@ -3204,6 +3250,10 @@ msgstr "You can also use your username to login."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgstr "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "You have unsaved changes that will be lost." msgstr "You have unsaved changes that will be lost."
+50
View File
@@ -895,6 +895,7 @@ msgstr "Degree"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Delete" msgstr "Delete"
@@ -1221,10 +1222,18 @@ msgstr "Export"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "Failed to analyze resume." msgstr "Failed to analyze resume."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr "Failed to delete passkey. Please try again."
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Failed to duplicate resume" msgstr "Failed to duplicate resume"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr "Failed to register passkey. Please try again."
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Failed to setup two-factor authentication." msgstr "Failed to setup two-factor authentication."
@@ -1745,6 +1754,10 @@ msgstr "Long-term Sustainability"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Lost access to your authenticator?" msgstr "Lost access to your authenticator?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr "MacBook Touch ID"
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Main" msgstr "Main"
@@ -1809,6 +1822,10 @@ msgstr "Multilingual"
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr "Name your passkey"
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepali" msgstr "Nepali"
@@ -1862,6 +1879,10 @@ msgstr "No experience"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "No jobs found. Try a different search query." msgstr "No jobs found. Try a different search query."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr "No passkeys registered yet."
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "No results found." msgstr "No results found."
@@ -1966,6 +1987,18 @@ msgstr "Paragraph"
msgid "Part-time" msgid "Part-time"
msgstr "Part-time" msgstr "Part-time"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr "Passkey deleted successfully."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr "Passkey registered successfully."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr "Passkeys"
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeys & 2FA" msgstr "Passkeys & 2FA"
@@ -2184,6 +2217,10 @@ msgstr "References"
msgid "Refresh" msgid "Refresh"
msgstr "Refresh" msgstr "Refresh"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr "Register New Device"
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Remember your password? <0/>" msgstr "Remember your password? <0/>"
@@ -2312,6 +2349,10 @@ msgstr "Run your first analysis to get a scorecard, strengths, and prioritized s
msgid "Russian" msgid "Russian"
msgstr "Russian" msgstr "Russian"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr "Save"
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2489,6 +2530,7 @@ msgstr "Sign in with GitHub, Google or a custom OAuth provider."
msgid "Sign up" msgid "Sign up"
msgstr "Sign up" msgstr "Sign up"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2970,6 +3012,10 @@ msgstr "Unlinking your {providerName} account..."
msgid "Unlock" msgid "Unlock"
msgstr "Unlock" msgstr "Unlock"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr "Unnamed passkey"
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Unverified" msgstr "Unverified"
@@ -3199,6 +3245,10 @@ msgstr "You can also use your username to login."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgstr "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr "You can skip this and keep the default name."
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "You have unsaved changes that will be lost." msgstr "You have unsaved changes that will be lost."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Título académico"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Eliminar" msgstr "Eliminar"
@@ -1226,10 +1227,18 @@ msgstr "Exportar"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Fallo al duplicar el currículum" msgstr "Fallo al duplicar el currículum"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "No se pudo configurar la autenticación de doble factor." msgstr "No se pudo configurar la autenticación de doble factor."
@@ -1750,6 +1759,10 @@ msgstr "Sostenibilidad a largo plazo"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "¿Has perdido el acceso a tu aplicación de autenticación?" msgstr "¿Has perdido el acceso a tu aplicación de autenticación?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Principal" msgstr "Principal"
@@ -1814,6 +1827,10 @@ msgstr "Multilingüe"
msgid "Name" msgid "Name"
msgstr "Nombre" msgstr "Nombre"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalí" msgstr "Nepalí"
@@ -1867,6 +1884,10 @@ msgstr "Sin experiencia"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "No se han encontrado empleos. Pruebe con otra consulta de búsqueda." msgstr "No se han encontrado empleos. Pruebe con otra consulta de búsqueda."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "No se han encontrado resultados." msgstr "No se han encontrado resultados."
@@ -1971,6 +1992,18 @@ msgstr "Párrafo"
msgid "Part-time" msgid "Part-time"
msgstr "A tiempo parcial" msgstr "A tiempo parcial"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Claves de acceso y 2FA" msgstr "Claves de acceso y 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referencias"
msgid "Refresh" msgid "Refresh"
msgstr "Actualizar" msgstr "Actualizar"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "¿Recuerdas tu contraseña? <0/>" msgstr "¿Recuerdas tu contraseña? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Ruso" msgstr "Ruso"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Inicia sesión con GitHub, Google o un proveedor OAuth personalizado."
msgid "Sign up" msgid "Sign up"
msgstr "Registrarse" msgstr "Registrarse"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Desvinculando tu cuenta de {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Desbloquear" msgstr "Desbloquear"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Sin verificar" msgstr "Sin verificar"
@@ -3204,6 +3250,10 @@ msgstr "También puedes usar tu nombre de usuario para iniciar sesión."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Puedes compartir tu currículum mediante una URL pública única, protegerlo con una contraseña o descargarlo como PDF para compartirlo directamente. Tú eliges." msgstr "Puedes compartir tu currículum mediante una URL pública única, protegerlo con una contraseña o descargarlo como PDF para compartirlo directamente. Tú eliges."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Tienes cambios sin guardar que se perderán." msgstr "Tienes cambios sin guardar que se perderán."
+50
View File
@@ -900,6 +900,7 @@ msgstr "مدرک"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "حذف" msgstr "حذف"
@@ -1226,10 +1227,18 @@ msgstr "خروجی گرفتن"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "در کپی‌برداری از رزومه خطا رخ داد" msgstr "در کپی‌برداری از رزومه خطا رخ داد"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "راه‌اندازی احراز هویت دو مرحله‌ای ناموفق بود." msgstr "راه‌اندازی احراز هویت دو مرحله‌ای ناموفق بود."
@@ -1750,6 +1759,10 @@ msgstr "پایداری بلندمدت"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "به اپلیکیشن احراز هویت خود دسترسی را از دست داده‌اید؟" msgstr "به اپلیکیشن احراز هویت خود دسترسی را از دست داده‌اید؟"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "اصلی" msgstr "اصلی"
@@ -1814,6 +1827,10 @@ msgstr "چندزبانه"
msgid "Name" msgid "Name"
msgstr "نام" msgstr "نام"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "نپالی" msgstr "نپالی"
@@ -1867,6 +1884,10 @@ msgstr "بدون تجربه"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "هیچ شغلی یافت نشد. عبارت جستجوی دیگری را امتحان کنید." msgstr "هیچ شغلی یافت نشد. عبارت جستجوی دیگری را امتحان کنید."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "موردی یافت نشد." msgstr "موردی یافت نشد."
@@ -1971,6 +1992,18 @@ msgstr "پاراگراف"
msgid "Part-time" msgid "Part-time"
msgstr "نیمه‌وقت" msgstr "نیمه‌وقت"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "کلیدهای عبور و 2FA" msgstr "کلیدهای عبور و 2FA"
@@ -2189,6 +2222,10 @@ msgstr "معرف‌ها"
msgid "Refresh" msgid "Refresh"
msgstr "تازه‌سازی" msgstr "تازه‌سازی"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "رمز عبور را به خاطر دارید؟ <0/>" msgstr "رمز عبور را به خاطر دارید؟ <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "روسی" msgstr "روسی"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "با GitHub، Google یا یک ارائه‌دهندهٔ OAuth سفار
msgid "Sign up" msgid "Sign up"
msgstr "عضویت" msgstr "عضویت"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "در حال قطع پیوند حساب {providerName} شما..."
msgid "Unlock" msgid "Unlock"
msgstr "باز کردن قفل" msgstr "باز کردن قفل"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "تأیید نشده" msgstr "تأیید نشده"
@@ -3204,6 +3250,10 @@ msgstr "برای ورود می‌توانید از نام کاربری خود ن
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "می‌توانید رزومه خود را از طریق یک URL عمومی منحصربه‌فرد به اشتراک بگذارید، آن را با گذرواژه محافظت کنید، یا برای اشتراک‌گذاری مستقیم آن را به صورت PDF دانلود کنید. انتخاب با شماست!" msgstr "می‌توانید رزومه خود را از طریق یک URL عمومی منحصربه‌فرد به اشتراک بگذارید، آن را با گذرواژه محافظت کنید، یا برای اشتراک‌گذاری مستقیم آن را به صورت PDF دانلود کنید. انتخاب با شماست!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "تغییرات ذخیره‌نشده‌ای دارید که از دست خواهند رفت." msgstr "تغییرات ذخیره‌نشده‌ای دارید که از دست خواهند رفت."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Tutkinto"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Poista" msgstr "Poista"
@@ -1226,10 +1227,18 @@ msgstr "Vienti"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Epäonnistui ansioluettelon kopioinnissa" msgstr "Epäonnistui ansioluettelon kopioinnissa"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Kaksivaiheisen todennuksen käyttöönotto epäonnistui." msgstr "Kaksivaiheisen todennuksen käyttöönotto epäonnistui."
@@ -1750,6 +1759,10 @@ msgstr "Pitkäaikainen kestävyys"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Etkö pääse käsiksi todennussovellukseesi?" msgstr "Etkö pääse käsiksi todennussovellukseesi?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Pääosa" msgstr "Pääosa"
@@ -1814,6 +1827,10 @@ msgstr "Monikielinen"
msgid "Name" msgid "Name"
msgstr "Nimi" msgstr "Nimi"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "nepali" msgstr "nepali"
@@ -1867,6 +1884,10 @@ msgstr "Ei kokemusta"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Työpaikkoja ei löytynyt. Kokeile eri hakukyselyä." msgstr "Työpaikkoja ei löytynyt. Kokeile eri hakukyselyä."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Tuloksia ei löytynyt." msgstr "Tuloksia ei löytynyt."
@@ -1971,6 +1992,18 @@ msgstr "Kappale"
msgid "Part-time" msgid "Part-time"
msgstr "Osa-aikainen" msgstr "Osa-aikainen"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Avaimet & 2FA" msgstr "Avaimet & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Suosittelijat"
msgid "Refresh" msgid "Refresh"
msgstr "Päivitä" msgstr "Päivitä"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Muistatko salasanasi? <0/>" msgstr "Muistatko salasanasi? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "venäjä" msgstr "venäjä"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Kirjaudu sisään GitHubilla, Googlella tai mukautetulla OAuth-palvelunt
msgid "Sign up" msgid "Sign up"
msgstr "Rekisteröidy" msgstr "Rekisteröidy"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Katkaistaan yhteys palveluun {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Avaa lukitus" msgstr "Avaa lukitus"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Vahvistamaton" msgstr "Vahvistamaton"
@@ -3204,6 +3250,10 @@ msgstr "Voit myös käyttää käyttäjätunnustasi kirjautumiseen."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Voit jakaa ansioluettelosi yksilöllisen julkisen URL-osoitteen kautta, suojata sen salasanalla tai ladata sen PDF:nä jakaaksesi sen suoraan. Valinta on sinun!" msgstr "Voit jakaa ansioluettelosi yksilöllisen julkisen URL-osoitteen kautta, suojata sen salasanalla tai ladata sen PDF:nä jakaaksesi sen suoraan. Valinta on sinun!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Sinulla on tallentamattomia muutoksia, jotka menetetään." msgstr "Sinulla on tallentamattomia muutoksia, jotka menetetään."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Diplôme"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
@@ -1226,10 +1227,18 @@ msgstr "Exporter"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Échec de la duplication du CV" msgstr "Échec de la duplication du CV"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Échec de la configuration de l'authentification à deux facteurs." msgstr "Échec de la configuration de l'authentification à deux facteurs."
@@ -1750,6 +1759,10 @@ msgstr "Durabilité à long terme"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Vous avez perdu l'accès à votre authentificateur ?" msgstr "Vous avez perdu l'accès à votre authentificateur ?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Principal" msgstr "Principal"
@@ -1814,6 +1827,10 @@ msgstr "Multilingue"
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Népalais" msgstr "Népalais"
@@ -1867,6 +1884,10 @@ msgstr "Aucune expérience"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Aucun emploi n'a été trouvé. Essayez une autre recherche." msgstr "Aucun emploi n'a été trouvé. Essayez une autre recherche."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Aucun résultat trouvé." msgstr "Aucun résultat trouvé."
@@ -1971,6 +1992,18 @@ msgstr "Paragraphe"
msgid "Part-time" msgid "Part-time"
msgstr "Temps partiel" msgstr "Temps partiel"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Clés d'accès et 2FA" msgstr "Clés d'accès et 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Références"
msgid "Refresh" msgid "Refresh"
msgstr "Actualiser" msgstr "Actualiser"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Vous vous souvenez de votre mot de passe ? <0/>" msgstr "Vous vous souvenez de votre mot de passe ? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russe" msgstr "Russe"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Connectez-vous avec GitHub, Google ou un fournisseur OAuth personnalisé
msgid "Sign up" msgid "Sign up"
msgstr "S'inscrire" msgstr "S'inscrire"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Déconnexion de votre compte {providerName} ..."
msgid "Unlock" msgid "Unlock"
msgstr "Déverrouiller" msgstr "Déverrouiller"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Non vérifié" msgstr "Non vérifié"
@@ -3204,6 +3250,10 @@ msgstr "Vous pouvez également utiliser votre nom d'utilisateur pour vous connec
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Vous pouvez partager votre CV via une URL publique unique, le protéger par un mot de passe ou le télécharger au format PDF pour le partager directement. À vous de choisir !" msgstr "Vous pouvez partager votre CV via une URL publique unique, le protéger par un mot de passe ou le télécharger au format PDF pour le partager directement. À vous de choisir !"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Vous avez des modifications non enregistrées qui seront perdues." msgstr "Vous avez des modifications non enregistrées qui seront perdues."
+50
View File
@@ -900,6 +900,7 @@ msgstr "תואר"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "מחיקה" msgstr "מחיקה"
@@ -1226,10 +1227,18 @@ msgstr "ייצוא"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "לא הצליח לשכפל את קורות החיים" msgstr "לא הצליח לשכפל את קורות החיים"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "ההגנה עם אימות דו־שלבי נכשלה." msgstr "ההגנה עם אימות דו־שלבי נכשלה."
@@ -1750,6 +1759,10 @@ msgstr "קיימות לטווח הארוך"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "איבדת גישה לאפליקציית המאמת שלך?" msgstr "איבדת גישה לאפליקציית המאמת שלך?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "ראשי" msgstr "ראשי"
@@ -1814,6 +1827,10 @@ msgstr "רב־לשוני"
msgid "Name" msgid "Name"
msgstr "שם" msgstr "שם"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "נפאלית" msgstr "נפאלית"
@@ -1867,6 +1884,10 @@ msgstr "ללא ניסיון"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "לא נמצאו משרות. נסה לשאול שאילתת חיפוש אחרת." msgstr "לא נמצאו משרות. נסה לשאול שאילתת חיפוש אחרת."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "לא נמצאו תוצאות." msgstr "לא נמצאו תוצאות."
@@ -1971,6 +1992,18 @@ msgstr "פסקה"
msgid "Part-time" msgid "Part-time"
msgstr "משרה חלקית" msgstr "משרה חלקית"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "מפתחות כניסה ואימות דו־שלבי" msgstr "מפתחות כניסה ואימות דו־שלבי"
@@ -2189,6 +2222,10 @@ msgstr "ממליצים"
msgid "Refresh" msgid "Refresh"
msgstr "רענון" msgstr "רענון"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "זוכר את הסיסמה? <0/>" msgstr "זוכר את הסיסמה? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "רוסית" msgstr "רוסית"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "התחברות עם GitHub, Google או ספק OAuth מותאם אי
msgid "Sign up" msgid "Sign up"
msgstr "הרשמה" msgstr "הרשמה"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "מנתק את חשבון {providerName} שלך..."
msgid "Unlock" msgid "Unlock"
msgstr "שחרור" msgstr "שחרור"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "לא מאומת" msgstr "לא מאומת"
@@ -3204,6 +3250,10 @@ msgstr "אפשר גם להשתמש בשם המשתמש שלך כדי להתחב
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "אפשר לשתף את קורות החיים שלך באמצעות כתובת ציבורית ייחודית, להגן עליהם בסיסמה או להוריד אותם כ־PDF לשיתוף ישיר. הבחירה בידיים שלך!" msgstr "אפשר לשתף את קורות החיים שלך באמצעות כתובת ציבורית ייחודית, להגן עליהם בסיסמה או להוריד אותם כ־PDF לשיתוף ישיר. הבחירה בידיים שלך!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "יש לך שינויים שלא נשמרו ויאבדו." msgstr "יש לך שינויים שלא נשמרו ויאבדו."
+50
View File
@@ -900,6 +900,7 @@ msgstr "डिग्री"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "हटाएँ" msgstr "हटाएँ"
@@ -1226,10 +1227,18 @@ msgstr "निर्यात"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "रिज़्यूमे की नकल करने में असफल" msgstr "रिज़्यूमे की नकल करने में असफल"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "दो‑कारक प्रमाणीकरण सेटअप करने में विफल।" msgstr "दो‑कारक प्रमाणीकरण सेटअप करने में विफल।"
@@ -1750,6 +1759,10 @@ msgstr "दीर्घकालिक स्थिरता"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "अपने ऑथेंटिकेटर तक पहुँच खो दी?" msgstr "अपने ऑथेंटिकेटर तक पहुँच खो दी?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "मुख्‍य" msgstr "मुख्‍य"
@@ -1814,6 +1827,10 @@ msgstr "बहुभाषी"
msgid "Name" msgid "Name"
msgstr "नाम" msgstr "नाम"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "नेपाली" msgstr "नेपाली"
@@ -1867,6 +1884,10 @@ msgstr "कोई अनुभव नहीं"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "कोई नौकरी नहीं मिली। एक अलग खोज क्वेरी आज़माएँ।" msgstr "कोई नौकरी नहीं मिली। एक अलग खोज क्वेरी आज़माएँ।"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "कोई परिणाम नहीं मिला।" msgstr "कोई परिणाम नहीं मिला।"
@@ -1971,6 +1992,18 @@ msgstr "अनुच्छेद"
msgid "Part-time" msgid "Part-time"
msgstr "अंशकालिक" msgstr "अंशकालिक"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "पासकीज़ और 2FA" msgstr "पासकीज़ और 2FA"
@@ -2189,6 +2222,10 @@ msgstr "रेफ़रेंस"
msgid "Refresh" msgid "Refresh"
msgstr "रिफ़्रेश" msgstr "रिफ़्रेश"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "अपना पासवर्ड याद है? <0/>" msgstr "अपना पासवर्ड याद है? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "रूसी" msgstr "रूसी"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google या किसी कस्टम OAuth प्रोव
msgid "Sign up" msgid "Sign up"
msgstr "रजिस्ट्रेशन" msgstr "रजिस्ट्रेशन"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "आपका {providerName} खाता अनलिंक किया
msgid "Unlock" msgid "Unlock"
msgstr "खोले" msgstr "खोले"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "असत्यापित" msgstr "असत्यापित"
@@ -3204,6 +3250,10 @@ msgstr "आप लॉगिन करने के लिए अपना उप
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "आप अपना रेज़्यूमे एक यूनिक सार्वजनिक URL के माध्यम से साझा कर सकते हैं, इसे पासवर्ड से सुरक्षित कर सकते हैं, या सीधे साझा करने के लिए इसे PDF के रूप में डाउनलोड कर सकते हैं। चुनाव आपका है!" msgstr "आप अपना रेज़्यूमे एक यूनिक सार्वजनिक URL के माध्यम से साझा कर सकते हैं, इसे पासवर्ड से सुरक्षित कर सकते हैं, या सीधे साझा करने के लिए इसे PDF के रूप में डाउनलोड कर सकते हैं। चुनाव आपका है!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "आपके सहेजे न गए परिवर्तन खो जाएंगे।" msgstr "आपके सहेजे न गए परिवर्तन खो जाएंगे।"
+50
View File
@@ -900,6 +900,7 @@ msgstr "Fokozat"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Törlés" msgstr "Törlés"
@@ -1226,10 +1227,18 @@ msgstr "Exportálás"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Nem sikerült duplikálni az önéletrajzot" msgstr "Nem sikerült duplikálni az önéletrajzot"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Nem sikerült beállítani a kétlépcsős hitelesítést." msgstr "Nem sikerült beállítani a kétlépcsős hitelesítést."
@@ -1750,6 +1759,10 @@ msgstr "Hosszú távú fenntarthatóság"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Elveszítetted a hozzáférést a hitelesítő alkalmazásodhoz?" msgstr "Elveszítetted a hozzáférést a hitelesítő alkalmazásodhoz?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Fő" msgstr "Fő"
@@ -1814,6 +1827,10 @@ msgstr "Többnyelvű"
msgid "Name" msgid "Name"
msgstr "Név" msgstr "Név"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "nepáli" msgstr "nepáli"
@@ -1867,6 +1884,10 @@ msgstr "Nincs tapasztalat"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Nem találtunk állást. Próbáljon meg más keresési lekérdezést." msgstr "Nem találtunk állást. Próbáljon meg más keresési lekérdezést."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nincs találat." msgstr "Nincs találat."
@@ -1971,6 +1992,18 @@ msgstr "Bekezdés"
msgid "Part-time" msgid "Part-time"
msgstr "Részmunkaidős" msgstr "Részmunkaidős"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Hozzáférési kulcsok és 2FA" msgstr "Hozzáférési kulcsok és 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referenciák"
msgid "Refresh" msgid "Refresh"
msgstr "Frissítés" msgstr "Frissítés"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Emlékszik a jelszavára? <0/>" msgstr "Emlékszik a jelszavára? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "orosz" msgstr "orosz"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Jelentkezz be GitHub, Google vagy egy egyéni OAuth szolgáltató segít
msgid "Sign up" msgid "Sign up"
msgstr "Regisztráció" msgstr "Regisztráció"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "{providerName} fiókod leválasztása..."
msgid "Unlock" msgid "Unlock"
msgstr "Feloldás" msgstr "Feloldás"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Nem hitelesített" msgstr "Nem hitelesített"
@@ -3204,6 +3250,10 @@ msgstr "Be is jelentkezhetsz a felhasználóneveddel."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Az önéletrajzodat megoszthatod egy egyedi nyilvános URLlel, jelszóval védheted, vagy PDFként letöltheted és közvetlenül megoszthatod. A döntés a tiéd!" msgstr "Az önéletrajzodat megoszthatod egy egyedi nyilvános URLlel, jelszóval védheted, vagy PDFként letöltheted és közvetlenül megoszthatod. A döntés a tiéd!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Nem mentett módosításai vannak, amelyek elvesznek." msgstr "Nem mentett módosításai vannak, amelyek elvesznek."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Gelar"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Hapus" msgstr "Hapus"
@@ -1226,10 +1227,18 @@ msgstr "Ekspor"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Gagal menduplikasi resume" msgstr "Gagal menduplikasi resume"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Gagal menyiapkan autentikasi dua faktor." msgstr "Gagal menyiapkan autentikasi dua faktor."
@@ -1750,6 +1759,10 @@ msgstr "Keberlanjutan Jangka Panjang"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Kehilangan akses ke autentikator Anda?" msgstr "Kehilangan akses ke autentikator Anda?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Utama" msgstr "Utama"
@@ -1814,6 +1827,10 @@ msgstr "Multibahasa"
msgid "Name" msgid "Name"
msgstr "Nama" msgstr "Nama"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepali" msgstr "Nepali"
@@ -1867,6 +1884,10 @@ msgstr "Tidak ada pengalaman"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Tidak ada pekerjaan yang ditemukan. Coba permintaan pencarian yang berbeda." msgstr "Tidak ada pekerjaan yang ditemukan. Coba permintaan pencarian yang berbeda."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Tidak ada hasil." msgstr "Tidak ada hasil."
@@ -1971,6 +1992,18 @@ msgstr "Paragraf"
msgid "Part-time" msgid "Part-time"
msgstr "Paruh waktu" msgstr "Paruh waktu"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkey & 2FA" msgstr "Passkey & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referensi"
msgid "Refresh" msgid "Refresh"
msgstr "Muat Ulang" msgstr "Muat Ulang"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Ingat kata sandi Anda? <0/>" msgstr "Ingat kata sandi Anda? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rusia" msgstr "Rusia"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Masuk dengan GitHub, Google atau penyedia OAuth kustom."
msgid "Sign up" msgid "Sign up"
msgstr "Daftar" msgstr "Daftar"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Memutuskan tautan akun {providerName} Anda..."
msgid "Unlock" msgid "Unlock"
msgstr "Buka Kunci" msgstr "Buka Kunci"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Belum Terverifikasi" msgstr "Belum Terverifikasi"
@@ -3204,6 +3250,10 @@ msgstr "Anda juga dapat menggunakan nama pengguna untuk masuk."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Anda dapat membagikan resume Anda melalui URL publik unik, melindunginya dengan kata sandi, atau mengunduhnya sebagai PDF untuk dibagikan langsung. Pilihan ada di tangan Anda!" msgstr "Anda dapat membagikan resume Anda melalui URL publik unik, melindunginya dengan kata sandi, atau mengunduhnya sebagai PDF untuk dibagikan langsung. Pilihan ada di tangan Anda!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Anda memiliki perubahan yang belum disimpan yang akan hilang." msgstr "Anda memiliki perubahan yang belum disimpan yang akan hilang."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Titolo di studio"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Elimina"
@@ -1226,10 +1227,18 @@ msgstr "Esporta"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Impossibile duplicare il curriculum" msgstr "Impossibile duplicare il curriculum"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Impossibile configurare l'autenticazione a due fattori." msgstr "Impossibile configurare l'autenticazione a due fattori."
@@ -1750,6 +1759,10 @@ msgstr "Sostenibilità a lungo termine"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Hai perso l'accesso alla tua app di autenticazione?" msgstr "Hai perso l'accesso alla tua app di autenticazione?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Principale" msgstr "Principale"
@@ -1814,6 +1827,10 @@ msgstr "Multilingue"
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalese" msgstr "Nepalese"
@@ -1867,6 +1884,10 @@ msgstr "Nessuna esperienza"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Non sono stati trovati lavori. Provi a effettuare un'altra ricerca." msgstr "Non sono stati trovati lavori. Provi a effettuare un'altra ricerca."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nessun risultato trovato." msgstr "Nessun risultato trovato."
@@ -1971,6 +1992,18 @@ msgstr "Paragrafo"
msgid "Part-time" msgid "Part-time"
msgstr "Part-time" msgstr "Part-time"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkey e 2FA" msgstr "Passkey e 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referenze"
msgid "Refresh" msgid "Refresh"
msgstr "Aggiorna" msgstr "Aggiorna"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Ricordi la tua password? <0/>" msgstr "Ricordi la tua password? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russo" msgstr "Russo"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Accedi con GitHub, Google o un provider OAuth personalizzato."
msgid "Sign up" msgid "Sign up"
msgstr "Registrazione" msgstr "Registrazione"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Scollegamento del tuo account {providerName} in corso..."
msgid "Unlock" msgid "Unlock"
msgstr "Sblocca" msgstr "Sblocca"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Non verificato" msgstr "Non verificato"
@@ -3204,6 +3250,10 @@ msgstr "Puoi anche usare il tuo nome utente per accedere."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Puoi condividere il tuo curriculum tramite un URL pubblico univoco, proteggerlo con una password oppure scaricarlo come PDF da condividere direttamente. La scelta è tua!" msgstr "Puoi condividere il tuo curriculum tramite un URL pubblico univoco, proteggerlo con una password oppure scaricarlo come PDF da condividere direttamente. La scelta è tua!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Hai modifiche non salvate che andranno perse." msgstr "Hai modifiche non salvate che andranno perse."
+50
View File
@@ -900,6 +900,7 @@ msgstr "学位"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "削除" msgstr "削除"
@@ -1226,10 +1227,18 @@ msgstr "エクスポート"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "レジュメの複製に失敗" msgstr "レジュメの複製に失敗"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "二要素認証の設定に失敗しました。" msgstr "二要素認証の設定に失敗しました。"
@@ -1750,6 +1759,10 @@ msgstr "長期的な持続可能性"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "認証アプリにアクセスできなくなりましたか?" msgstr "認証アプリにアクセスできなくなりましたか?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "メイン" msgstr "メイン"
@@ -1814,6 +1827,10 @@ msgstr "多言語対応"
msgid "Name" msgid "Name"
msgstr "名前" msgstr "名前"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "ネパール語" msgstr "ネパール語"
@@ -1867,6 +1884,10 @@ msgstr "未経験"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "求人が見つかりません。別の検索クエリをお試しください。" msgstr "求人が見つかりません。別の検索クエリをお試しください。"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "結果が見つかりません。" msgstr "結果が見つかりません。"
@@ -1971,6 +1992,18 @@ msgstr "段落"
msgid "Part-time" msgid "Part-time"
msgstr "パートタイム" msgstr "パートタイム"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "パスキーと 2FA" msgstr "パスキーと 2FA"
@@ -2189,6 +2222,10 @@ msgstr "推薦者"
msgid "Refresh" msgid "Refresh"
msgstr "再読み込み" msgstr "再読み込み"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "パスワードを思い出しましたか? <0/>" msgstr "パスワードを思い出しましたか? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "ロシア語" msgstr "ロシア語"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub・Google またはカスタム OAuth プロバイダーでサイ
msgid "Sign up" msgid "Sign up"
msgstr "サインアップ" msgstr "サインアップ"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "{providerName} アカウントのリンクを解除しています..."
msgid "Unlock" msgid "Unlock"
msgstr "ロック解除" msgstr "ロック解除"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "未確認" msgstr "未確認"
@@ -3204,6 +3250,10 @@ msgstr "ユーザー名を使ってログインすることもできます。"
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "履歴書は、一意の公開 URL を使って共有したり、パスワードで保護したり、PDF としてダウンロードして直接共有したりできます。お好みの方法をお選びください。" msgstr "履歴書は、一意の公開 URL を使って共有したり、パスワードで保護したり、PDF としてダウンロードして直接共有したりできます。お好みの方法をお選びください。"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "未保存の変更があります。変更内容は失われます。" msgstr "未保存の変更があります。変更内容は失われます。"
+50
View File
@@ -900,6 +900,7 @@ msgstr "សញ្ញាប័ត្រ"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "លុប" msgstr "លុប"
@@ -1226,10 +1227,18 @@ msgstr "នាំចេញ"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "បានបរាជ័យ​ក្នុងការ​រៀបចំ​ការ​ផ្ទៀងផ្ទាត់​ពីរ​ជាន់។" msgstr "បានបរាជ័យ​ក្នុងការ​រៀបចំ​ការ​ផ្ទៀងផ្ទាត់​ពីរ​ជាន់។"
@@ -1750,6 +1759,10 @@ msgstr "ធនធាន​រយៈពេល​វែង"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "បាត់បង់​សិទ្ធិ​ចូល​ដំណើរការ​កម្មវិធី​ផ្ទៀងផ្ទាត់​អត្តសញ្ញាណ​របស់​អ្នក​ឬ?" msgstr "បាត់បង់​សិទ្ធិ​ចូល​ដំណើរការ​កម្មវិធី​ផ្ទៀងផ្ទាត់​អត្តសញ្ញាណ​របស់​អ្នក​ឬ?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "មេ" msgstr "មេ"
@@ -1814,6 +1827,10 @@ msgstr "ច្រើន​ភាសា"
msgid "Name" msgid "Name"
msgstr "ឈ្មោះ" msgstr "ឈ្មោះ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepali" msgstr "Nepali"
@@ -1867,6 +1884,10 @@ msgstr ""
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "រក​មិន​ឃើញ​លទ្ធផល។" msgstr "រក​មិន​ឃើញ​លទ្ធផល។"
@@ -1971,6 +1992,18 @@ msgstr "កថាខណ្ឌ"
msgid "Part-time" msgid "Part-time"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "កូនសោ​កំណត់​អត្តសញ្ញាណ & 2FA" msgstr "កូនសោ​កំណត់​អត្តសញ្ញាណ & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "យោង"
msgid "Refresh" msgid "Refresh"
msgstr "ផ្ទៀងផ្ទាត់​ម្ដងទៀត" msgstr "ផ្ទៀងផ្ទាត់​ម្ដងទៀត"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "ចាំពាក្យសម្ងាត់របស់អ្នក? <0/>" msgstr "ចាំពាក្យសម្ងាត់របស់អ្នក? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russian" msgstr "Russian"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "ចូល​ដោយ​ប្រើ GitHub, Google ឬ​អ្នក
msgid "Sign up" msgid "Sign up"
msgstr "ចុះឈ្មោះ" msgstr "ចុះឈ្មោះ"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "កំពុង​ផ្ដាច់​គណនី {providerName} រ
msgid "Unlock" msgid "Unlock"
msgstr "ដោះ​សោ" msgstr "ដោះ​សោ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "មិន​ទាន់​ផ្ទៀងផ្ទាត់" msgstr "មិន​ទាន់​ផ្ទៀងផ្ទាត់"
@@ -3204,6 +3250,10 @@ msgstr "អ្នក​ក៏​អាច​ប្រើ​ឈ្មោះ​អ
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "អ្នក​អាច​ចែករំលែក​ប្រវត្តិរូប​របស់​អ្នក​តាមរយៈ URL សាធារណៈ​មួយ​ដែល​មាន​តែ​មួយគត់ ការពារ​ដោយ​ពាក្យសម្ងាត់ ឬ​ទាញយក​ជា PDF ដើម្បី​ចែករំលែក​ដោយ​ផ្ទាល់ក៏​បាន។ ជម្រើស​ស្ថិត​នៅ​លើ​ដៃ​អ្នក!" msgstr "អ្នក​អាច​ចែករំលែក​ប្រវត្តិរូប​របស់​អ្នក​តាមរយៈ URL សាធារណៈ​មួយ​ដែល​មាន​តែ​មួយគត់ ការពារ​ដោយ​ពាក្យសម្ងាត់ ឬ​ទាញយក​ជា PDF ដើម្បី​ចែករំលែក​ដោយ​ផ្ទាល់ក៏​បាន។ ជម្រើស​ស្ថិត​នៅ​លើ​ដៃ​អ្នក!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "អ្នកមានការផ្លាស់ប្តូរដែលមិនបានរក្សាទុកដែលនឹងបាត់បង់។" msgstr "អ្នកមានការផ្លាស់ប្តូរដែលមិនបានរក្សាទុកដែលនឹងបាត់បង់។"
+50
View File
@@ -900,6 +900,7 @@ msgstr "ಪದವಿ"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "ಅಳಿಸಿ" msgstr "ಅಳಿಸಿ"
@@ -1226,10 +1227,18 @@ msgstr "ರಫ್ತು ಮಾಡು"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಹೊಂದಿಸಲು ವಿಫಲವಾಗಿದೆ." msgstr "ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಹೊಂದಿಸಲು ವಿಫಲವಾಗಿದೆ."
@@ -1750,6 +1759,10 @@ msgstr "ದೀರ್ಘಕಾಲಿಕ ಹಿರಿತನ"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "ನಿಮ್ಮ ದೃಢೀಕರಣ ವ್ಯವಸ್ಥೆಗೆ ಪ್ರವೇಶ ಕಳೆದುಕೊಂಡಿರಾ?" msgstr "ನಿಮ್ಮ ದೃಢೀಕರಣ ವ್ಯವಸ್ಥೆಗೆ ಪ್ರವೇಶ ಕಳೆದುಕೊಂಡಿರಾ?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "ಮುಖ್ಯ" msgstr "ಮುಖ್ಯ"
@@ -1814,6 +1827,10 @@ msgstr "ಬಹುಭಾಷಿಕ"
msgid "Name" msgid "Name"
msgstr "ಹೆಸರು" msgstr "ಹೆಸರು"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "ನೇಪಾಳಿ" msgstr "ನೇಪಾಳಿ"
@@ -1867,6 +1884,10 @@ msgstr ""
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬರಲಿಲ್ಲ." msgstr "ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬರಲಿಲ್ಲ."
@@ -1971,6 +1992,18 @@ msgstr "ಪ್ಯಾರಾಗ್ರಾಫ್"
msgid "Part-time" msgid "Part-time"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "ಪಾಸ್‌ಕೀಗಳು ಹಾಗೂ 2FA" msgstr "ಪಾಸ್‌ಕೀಗಳು ಹಾಗೂ 2FA"
@@ -2189,6 +2222,10 @@ msgstr "ಪರಿಚಯಗಳು"
msgid "Refresh" msgid "Refresh"
msgstr "ರಿಫ್ರೆಶ್ ಮಾಡಿ" msgstr "ರಿಫ್ರೆಶ್ ಮಾಡಿ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ನೆನಪಿದೆಯೇ? <0/>" msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ನೆನಪಿದೆಯೇ? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "ರಷಿಯನ್" msgstr "ರಷಿಯನ್"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google ಅಥವಾ ಕಸ್ಟಮ್ OAuth ಪ್ರೊವೈ
msgid "Sign up" msgid "Sign up"
msgstr "ಖಾತೇ ರಚಿಸಿ" msgstr "ಖಾತೇ ರಚಿಸಿ"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "ನಿಮ್ಮ {providerName} ಖಾತೆಯನ್ನು ಅನಿರ
msgid "Unlock" msgid "Unlock"
msgstr "ಅನಿರ್ಬಂಧಿಸಿ" msgstr "ಅನಿರ್ಬಂಧಿಸಿ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ" msgstr "ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
@@ -3204,6 +3250,10 @@ msgstr "ಲಾಗಿನ್ ಮಾಡಲು ನೀವು ನಿಮ್ಮ ಬಳ
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "ನೀವು ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಅನನ್ಯ ಸಾರ್ವಜನಿಕ URL ಮೂಲಕ ಹಂಚಿಕೊಳ್ಳಬಹುದು, ಅದನ್ನು ಪಾಸ್‌ವರ್ಡ್‌ನೊಂದಿಗೆ ರಕ್ಷಿಸಬಹುದು, ಅಥವಾ ನೇರವಾಗಿ ಹಂಚಿಕೊಳ್ಳಲು PDF ಆಗಿ ಡೌನ್‌ಲೋಡ್ ಮಾಡಬಹುದು. ಆಯ್ಕೆ ನಿಮ್ಮದು!" msgstr "ನೀವು ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಅನನ್ಯ ಸಾರ್ವಜನಿಕ URL ಮೂಲಕ ಹಂಚಿಕೊಳ್ಳಬಹುದು, ಅದನ್ನು ಪಾಸ್‌ವರ್ಡ್‌ನೊಂದಿಗೆ ರಕ್ಷಿಸಬಹುದು, ಅಥವಾ ನೇರವಾಗಿ ಹಂಚಿಕೊಳ್ಳಲು PDF ಆಗಿ ಡೌನ್‌ಲೋಡ್ ಮಾಡಬಹುದು. ಆಯ್ಕೆ ನಿಮ್ಮದು!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "ನೀವು ಉಳಿಸದ ಬದಲಾವಣೆಗಳನ್ನು ಕಳೆದುಕೊಳ್ಳುವಿರಿ." msgstr "ನೀವು ಉಳಿಸದ ಬದಲಾವಣೆಗಳನ್ನು ಕಳೆದುಕೊಳ್ಳುವಿರಿ."
+50
View File
@@ -900,6 +900,7 @@ msgstr "학위"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "삭제" msgstr "삭제"
@@ -1226,10 +1227,18 @@ msgstr "내보내기"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "이력서 복제에 실패했습니다." msgstr "이력서 복제에 실패했습니다."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "2단계 인증 설정에 실패했습니다." msgstr "2단계 인증 설정에 실패했습니다."
@@ -1750,6 +1759,10 @@ msgstr "장기적인 지속 가능성"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "인증 앱에 접근할 수 없으신가요?" msgstr "인증 앱에 접근할 수 없으신가요?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "메인" msgstr "메인"
@@ -1814,6 +1827,10 @@ msgstr "다국어 지원"
msgid "Name" msgid "Name"
msgstr "이름" msgstr "이름"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "네팔어" msgstr "네팔어"
@@ -1867,6 +1884,10 @@ msgstr "경험 없음"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "채용 공고가 없습니다. 다른 검색어를 입력해 보세요." msgstr "채용 공고가 없습니다. 다른 검색어를 입력해 보세요."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "결과가 없습니다." msgstr "결과가 없습니다."
@@ -1971,6 +1992,18 @@ msgstr "문단"
msgid "Part-time" msgid "Part-time"
msgstr "파트타임" msgstr "파트타임"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "패스키 & 2단계 인증" msgstr "패스키 & 2단계 인증"
@@ -2189,6 +2222,10 @@ msgstr "추천인"
msgid "Refresh" msgid "Refresh"
msgstr "새로고침" msgstr "새로고침"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "비밀번호가 기억나시나요? <0/>" msgstr "비밀번호가 기억나시나요? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "러시아어" msgstr "러시아어"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google 또는 사용자 지정 OAuth 제공자를 통해 로그
msgid "Sign up" msgid "Sign up"
msgstr "가입" msgstr "가입"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "{providerName} 계정 연결을 해제하는 중입니다..."
msgid "Unlock" msgid "Unlock"
msgstr "잠금 해제" msgstr "잠금 해제"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "인증되지 않음" msgstr "인증되지 않음"
@@ -3204,6 +3250,10 @@ msgstr "사용자 이름으로도 로그인할 수 있습니다."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "고유한 공개 URL로 이력서를 공유하고, 비밀번호로 보호하거나, PDF로 다운로드해 직접 공유할 수 있습니다. 선택은 여러분에게 달려 있습니다!" msgstr "고유한 공개 URL로 이력서를 공유하고, 비밀번호로 보호하거나, PDF로 다운로드해 직접 공유할 수 있습니다. 선택은 여러분에게 달려 있습니다!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "저장되지 않은 변경 사항이 있으며, 이 내용은 사라집니다." msgstr "저장되지 않은 변경 사항이 있으며, 이 내용은 사라집니다."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Laipsnis"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Ištrinti" msgstr "Ištrinti"
@@ -1226,10 +1227,18 @@ msgstr "Eksportuoti"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Nepavyko dubliuoti gyvenimo aprašymo" msgstr "Nepavyko dubliuoti gyvenimo aprašymo"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Nepavyko nustatyti dviejų veiksnių tapatumo patvirtinimo." msgstr "Nepavyko nustatyti dviejų veiksnių tapatumo patvirtinimo."
@@ -1750,6 +1759,10 @@ msgstr "Ilgalaikis tvarumas"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Nebeturite prieigos prie autentifikavimo programos?" msgstr "Nebeturite prieigos prie autentifikavimo programos?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Pagrindinis" msgstr "Pagrindinis"
@@ -1814,6 +1827,10 @@ msgstr "Daugiakalbė"
msgid "Name" msgid "Name"
msgstr "Pavadinimas" msgstr "Pavadinimas"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalų" msgstr "Nepalų"
@@ -1867,6 +1884,10 @@ msgstr "Nėra patirties"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Darbo vietų nerasta. Išbandykite kitą paieškos užklausą." msgstr "Darbo vietų nerasta. Išbandykite kitą paieškos užklausą."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Rezultatų nerasta." msgstr "Rezultatų nerasta."
@@ -1971,6 +1992,18 @@ msgstr "Pastraipa"
msgid "Part-time" msgid "Part-time"
msgstr "Ne visą darbo dieną" msgstr "Ne visą darbo dieną"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Raktai ir 2FA" msgstr "Raktai ir 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Rekomendacijos"
msgid "Refresh" msgid "Refresh"
msgstr "Perkrauti" msgstr "Perkrauti"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Prisimenate slaptažodį? <0/>" msgstr "Prisimenate slaptažodį? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rusų" msgstr "Rusų"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Prisijunkite naudodami „GitHub“, „Google“ arba pasirinktą OAuth
msgid "Sign up" msgid "Sign up"
msgstr "Registruotis" msgstr "Registruotis"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Atsiejamas jūsų {providerName} profilis..."
msgid "Unlock" msgid "Unlock"
msgstr "Atrakinti" msgstr "Atrakinti"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Nepatikrintas" msgstr "Nepatikrintas"
@@ -3204,6 +3250,10 @@ msgstr "Prisijungti taip pat galite naudodami vartotojo vardą."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Gyvenimo aprašymu galite dalintis per unikalų viešą URL, apsaugoti jį slaptažodžiu arba atsisiųsti kaip PDF ir dalintis tiesiogiai. Pasirinkimas jūsų!" msgstr "Gyvenimo aprašymu galite dalintis per unikalų viešą URL, apsaugoti jį slaptažodžiu arba atsisiųsti kaip PDF ir dalintis tiesiogiai. Pasirinkimas jūsų!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Turite neišsaugotų pakeitimų, kurie bus prarasti." msgstr "Turite neišsaugotų pakeitimų, kurie bus prarasti."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Grāds"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Dzēst" msgstr "Dzēst"
@@ -1226,10 +1227,18 @@ msgstr "Eksports"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Neizdevās dublēt CV" msgstr "Neizdevās dublēt CV"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Neizdevās iestatīt divu faktoru autentifikāciju." msgstr "Neizdevās iestatīt divu faktoru autentifikāciju."
@@ -1750,6 +1759,10 @@ msgstr "Ilgtermiņa ilgtspēja"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Zaudējāt piekļuvi autentifikatoram?" msgstr "Zaudējāt piekļuvi autentifikatoram?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Galvenā" msgstr "Galvenā"
@@ -1814,6 +1827,10 @@ msgstr "Daudzvalodu"
msgid "Name" msgid "Name"
msgstr "Nosaukums" msgstr "Nosaukums"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepāļu" msgstr "Nepāļu"
@@ -1867,6 +1884,10 @@ msgstr "Nav pieredzes"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Darba vietas nav atrastas. Izmēģiniet citu meklēšanas vaicājumu." msgstr "Darba vietas nav atrastas. Izmēģiniet citu meklēšanas vaicājumu."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Rezultāti nav atrasti." msgstr "Rezultāti nav atrasti."
@@ -1971,6 +1992,18 @@ msgstr "Rindkopa"
msgid "Part-time" msgid "Part-time"
msgstr "Nepilna darba laika" msgstr "Nepilna darba laika"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Piekļuves atslēgas un 2FA" msgstr "Piekļuves atslēgas un 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Atsauksmes"
msgid "Refresh" msgid "Refresh"
msgstr "Atsvaidzināt" msgstr "Atsvaidzināt"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Atceraties paroli? <0/>" msgstr "Atceraties paroli? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Krievu" msgstr "Krievu"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Piesakieties ar GitHub, Google vai pielāgotu OAuth pakalpojumu sniedzē
msgid "Sign up" msgid "Sign up"
msgstr "Reģistrēties" msgstr "Reģistrēties"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Tiek atvienots jūsu {providerName} konts..."
msgid "Unlock" msgid "Unlock"
msgstr "Atbloķēt" msgstr "Atbloķēt"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Neverificēts" msgstr "Neverificēts"
@@ -3204,6 +3250,10 @@ msgstr "Pieteikšanās laikā varat izmantot arī savu lietotājvārdu."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Varat kopīgot savu CV, izmantojot unikālu publisku URL, aizsargāt to ar paroli vai lejupielādēt kā PDF un kopīgot tieši. Izvēle ir jūsu rokās!" msgstr "Varat kopīgot savu CV, izmantojot unikālu publisku URL, aizsargāt to ar paroli vai lejupielādēt kā PDF un kopīgot tieši. Izvēle ir jūsu rokās!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Jums ir nesaglabātas izmaiņas, kas tiks zaudētas." msgstr "Jums ir nesaglabātas izmaiņas, kas tiks zaudētas."
+50
View File
@@ -900,6 +900,7 @@ msgstr "ഡിഗ്രി"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "ഡിലീറ്റ് ചെയ്യുക" msgstr "ഡിലീറ്റ് ചെയ്യുക"
@@ -1226,10 +1227,18 @@ msgstr "എക്സ്പോർട്ട്"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "റെസ്യൂമെ പകർപ്പിയ്ക്കാൻ പരാജയപ്പെട്ടു" msgstr "റെസ്യൂമെ പകർപ്പിയ്ക്കാൻ പരാജയപ്പെട്ടു"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "ടു‑ഫാക്ടർ ഓത്‌ന്റിക്കേഷൻ സജ്ജീകരിക്കാൻ പരാജയപ്പെട്ടു." msgstr "ടു‑ഫാക്ടർ ഓത്‌ന്റിക്കേഷൻ സജ്ജീകരിക്കാൻ പരാജയപ്പെട്ടു."
@@ -1750,6 +1759,10 @@ msgstr "ദീർഘകാല സുസ്ഥിരത"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "നിങ്ങളുടെ ഓത്‌ന്റിക്കേറ്ററിലേക്കുള്ള ആക്‌സസ് നഷ്ടമായോ?" msgstr "നിങ്ങളുടെ ഓത്‌ന്റിക്കേറ്ററിലേക്കുള്ള ആക്‌സസ് നഷ്ടമായോ?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "മെയിൻ" msgstr "മെയിൻ"
@@ -1814,6 +1827,10 @@ msgstr "മൾടിലിംഗ്വൽ"
msgid "Name" msgid "Name"
msgstr "പേര്" msgstr "പേര്"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "നേപ്പാളി" msgstr "നേപ്പാളി"
@@ -1867,6 +1884,10 @@ msgstr "പരിചയമില്ല"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "ജോലികൾ കണ്ടെത്തിയിട്ടില്ല. മറ്റൊരു തിരയൽ പരീക്ഷിക്കുക." msgstr "ജോലികൾ കണ്ടെത്തിയിട്ടില്ല. മറ്റൊരു തിരയൽ പരീക്ഷിക്കുക."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "ഒരൊന്നുമാത്രം ഫലങ്ങളൊന്നും ലഭ്യമല്ല." msgstr "ഒരൊന്നുമാത്രം ഫലങ്ങളൊന്നും ലഭ്യമല്ല."
@@ -1971,6 +1992,18 @@ msgstr "പരഗ്രാഫ്"
msgid "Part-time" msgid "Part-time"
msgstr "പാർട്ട് ടൈം" msgstr "പാർട്ട് ടൈം"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "പാസ്‌കികളും 2FAയും" msgstr "പാസ്‌കികളും 2FAയും"
@@ -2189,6 +2222,10 @@ msgstr "റഫറൻസുകൾ"
msgid "Refresh" msgid "Refresh"
msgstr "റിഫ്രെഷ് ചെയ്യുക" msgstr "റിഫ്രെഷ് ചെയ്യുക"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "നിങ്ങളുടെ പാസ്‌വേഡ് ഓർമ്മയുണ്ടോ? <0/>" msgstr "നിങ്ങളുടെ പാസ്‌വേഡ് ഓർമ്മയുണ്ടോ? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "റഷ്യൻ" msgstr "റഷ്യൻ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google അല്ലെങ്കിൽ ഒരു കസ്റ്
msgid "Sign up" msgid "Sign up"
msgstr "സൈൻ അപ്" msgstr "സൈൻ അപ്"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "നിങ്ങളുടെ {providerName} അക്കൗണ്ട്
msgid "Unlock" msgid "Unlock"
msgstr "അൺലോക്ക് ചെയ്യുക" msgstr "അൺലോക്ക് ചെയ്യുക"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "സ്ഥിരീകരിച്ചിട്ടില്ല" msgstr "സ്ഥിരീകരിച്ചിട്ടില്ല"
@@ -3204,6 +3250,10 @@ msgstr "ലോഗിൻ ചെയ്യാൻ നിങ്ങൾക്ക് ന
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "നിങ്ങളുടെ റിസ്യൂം ഒരു സവിശേഷമായ പബ്ലിക് URL വഴി ഷെയർ ചെയ്യാം, പാസ്‌വേഡ് ഉപയോഗിച്ച് സംരക്ഷിക്കാം, അല്ലെങ്കിൽ PDF ആയി ഡൗൺലോഡ് ചെയ്ത് നേരിട്ട് ഷെയർ ചെയ്യാം. തെരഞ്ഞടുക്കുന്നത് നിങ്ങളുടെ കാര്യമാണ്!" msgstr "നിങ്ങളുടെ റിസ്യൂം ഒരു സവിശേഷമായ പബ്ലിക് URL വഴി ഷെയർ ചെയ്യാം, പാസ്‌വേഡ് ഉപയോഗിച്ച് സംരക്ഷിക്കാം, അല്ലെങ്കിൽ PDF ആയി ഡൗൺലോഡ് ചെയ്ത് നേരിട്ട് ഷെയർ ചെയ്യാം. തെരഞ്ഞടുക്കുന്നത് നിങ്ങളുടെ കാര്യമാണ്!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "സേവ് ചെയ്യാത്ത മാറ്റങ്ങൾ നഷ്ടമാകും." msgstr "സേവ് ചെയ്യാത്ത മാറ്റങ്ങൾ നഷ്ടമാകും."
+50
View File
@@ -900,6 +900,7 @@ msgstr "पदवी"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "हटवा" msgstr "हटवा"
@@ -1226,10 +1227,18 @@ msgstr "निर्यात करा"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "रिझ्युमेची प्रत तयार करण्यात अयशस्वी" msgstr "रिझ्युमेची प्रत तयार करण्यात अयशस्वी"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "दुहेरी घटक ओथेंटिकेशन सेटअप करण्यात अयशस्वी." msgstr "दुहेरी घटक ओथेंटिकेशन सेटअप करण्यात अयशस्वी."
@@ -1750,6 +1759,10 @@ msgstr "दीर्घकालीन टिकाव"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "तुम्हाला ओथेंटिकेटरवर प्रवेश नाही का?" msgstr "तुम्हाला ओथेंटिकेटरवर प्रवेश नाही का?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "मुख्य" msgstr "मुख्य"
@@ -1814,6 +1827,10 @@ msgstr "बहुभाषिक"
msgid "Name" msgid "Name"
msgstr "नाव" msgstr "नाव"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "नेपाळी" msgstr "नेपाळी"
@@ -1867,6 +1884,10 @@ msgstr "अनुभव नाही"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "काहीही नोकऱ्या सापडल्या नाहीत. वेगळा शोध क्वेरी वापरून पहा." msgstr "काहीही नोकऱ्या सापडल्या नाहीत. वेगळा शोध क्वेरी वापरून पहा."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "कोणतेही परिणाम आढळले नाहीत." msgstr "कोणतेही परिणाम आढळले नाहीत."
@@ -1971,6 +1992,18 @@ msgstr "परिच्छेद"
msgid "Part-time" msgid "Part-time"
msgstr "अंशकालीन" msgstr "अंशकालीन"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "पासकीज आणि 2FA" msgstr "पासकीज आणि 2FA"
@@ -2189,6 +2222,10 @@ msgstr "रेफरन्सेस"
msgid "Refresh" msgid "Refresh"
msgstr "ताजेतवाने करा" msgstr "ताजेतवाने करा"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "तुमचा पासवर्ड आठवतो? <0/>" msgstr "तुमचा पासवर्ड आठवतो? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "रशियन" msgstr "रशियन"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google किंवा कस्टम OAuth प्रोव्
msgid "Sign up" msgid "Sign up"
msgstr "साइन अप करा" msgstr "साइन अप करा"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "तुमचे {providerName} खाते अनलिंक केल
msgid "Unlock" msgid "Unlock"
msgstr "कुलूप उघडा" msgstr "कुलूप उघडा"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "न पडताळलेले" msgstr "न पडताळलेले"
@@ -3204,6 +3250,10 @@ msgstr "तुम्ही लॉगिन करताना तुमचे
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "तुम्ही तुमचा रेझ्युमे युनिक सार्वजनिक URL द्वारे शेअर करू शकता, पासवर्डने संरक्षित करू शकता किंवा PDF म्हणून डाउनलोड करून थेट शेअर करू शकता. निवड तुमची!" msgstr "तुम्ही तुमचा रेझ्युमे युनिक सार्वजनिक URL द्वारे शेअर करू शकता, पासवर्डने संरक्षित करू शकता किंवा PDF म्हणून डाउनलोड करून थेट शेअर करू शकता. निवड तुमची!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "तुमच्या जतन न केलेल्या बदलांचा नाश होईल." msgstr "तुमच्या जतन न केलेल्या बदलांचा नाश होईल."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Ijazah"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Padam" msgstr "Padam"
@@ -1226,10 +1227,18 @@ msgstr "Eksport"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Gagal menyalin sambungan" msgstr "Gagal menyalin sambungan"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Gagal menyediakan pengesahan dua faktor." msgstr "Gagal menyediakan pengesahan dua faktor."
@@ -1750,6 +1759,10 @@ msgstr "Kelestarian Jangka Panjang"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Kehilangan akses kepada aplikasi pengesah anda?" msgstr "Kehilangan akses kepada aplikasi pengesah anda?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Utama" msgstr "Utama"
@@ -1814,6 +1827,10 @@ msgstr "Berbilang bahasa"
msgid "Name" msgid "Name"
msgstr "Nama" msgstr "Nama"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepal" msgstr "Nepal"
@@ -1867,6 +1884,10 @@ msgstr "Tiada pengalaman"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Tiada pekerjaan ditemui. Cuba pertanyaan carian yang berbeza." msgstr "Tiada pekerjaan ditemui. Cuba pertanyaan carian yang berbeza."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Tiada keputusan dijumpai." msgstr "Tiada keputusan dijumpai."
@@ -1971,6 +1992,18 @@ msgstr "Perenggan"
msgid "Part-time" msgid "Part-time"
msgstr "Sewaktu" msgstr "Sewaktu"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Kunci Laluan & 2FA" msgstr "Kunci Laluan & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Rujukan"
msgid "Refresh" msgid "Refresh"
msgstr "Muat semula" msgstr "Muat semula"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Ingat kata laluan anda? <0/>" msgstr "Ingat kata laluan anda? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rusia" msgstr "Rusia"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Log masuk dengan GitHub, Google atau penyedia OAuth tersuai."
msgid "Sign up" msgid "Sign up"
msgstr "Daftar" msgstr "Daftar"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Menyahpaut akaun {providerName} anda..."
msgid "Unlock" msgid "Unlock"
msgstr "Buka Kunci" msgstr "Buka Kunci"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Belum disahkan" msgstr "Belum disahkan"
@@ -3204,6 +3250,10 @@ msgstr "Anda juga boleh menggunakan nama pengguna anda untuk log masuk."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Anda boleh berkongsi resume anda melalui URL awam unik, melindunginya dengan kata laluan, atau memuat turunnya sebagai PDF untuk dikongsi secara terus. Pilihan di tangan anda!" msgstr "Anda boleh berkongsi resume anda melalui URL awam unik, melindunginya dengan kata laluan, atau memuat turunnya sebagai PDF untuk dikongsi secara terus. Pilihan di tangan anda!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Anda mempunyai perubahan yang belum disimpan yang akan hilang." msgstr "Anda mempunyai perubahan yang belum disimpan yang akan hilang."
+50
View File
@@ -900,6 +900,7 @@ msgstr "डिग्री"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "मेटाउनुहोस्" msgstr "मेटाउनुहोस्"
@@ -1226,10 +1227,18 @@ msgstr "निर्यात"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "बायोडाटा प्रतिलिपि गर्न असफल" msgstr "बायोडाटा प्रतिलिपि गर्न असफल"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "दुई-कारक प्रमाणीकरण सेटअप गर्न असफल भयो।" msgstr "दुई-कारक प्रमाणीकरण सेटअप गर्न असफल भयो।"
@@ -1750,6 +1759,10 @@ msgstr "दीर्घकालीन दिगोपन (Sustainability)"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "authenticator मा पहुँच गुमाउनुभयो?" msgstr "authenticator मा पहुँच गुमाउनुभयो?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "मुख्य (Main)" msgstr "मुख्य (Main)"
@@ -1814,6 +1827,10 @@ msgstr "बहुभाषिक"
msgid "Name" msgid "Name"
msgstr "नाम" msgstr "नाम"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "नेपाली" msgstr "नेपाली"
@@ -1867,6 +1884,10 @@ msgstr "अनुभव छैन"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "कुनै पनि जागिर फेला परेन। फरक खोजी प्रश्न प्रयोग गरी हेर्नुहोस्।" msgstr "कुनै पनि जागिर फेला परेन। फरक खोजी प्रश्न प्रयोग गरी हेर्नुहोस्।"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "कुनै परिणाम फेला परेन।" msgstr "कुनै परिणाम फेला परेन।"
@@ -1971,6 +1992,18 @@ msgstr "अनुच्छेद"
msgid "Part-time" msgid "Part-time"
msgstr "आंशिक-कालीन" msgstr "आंशिक-कालीन"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "पासकी र २FA" msgstr "पासकी र २FA"
@@ -2189,6 +2222,10 @@ msgstr "सन्दर्भहरू (References)"
msgid "Refresh" msgid "Refresh"
msgstr "रिफ्रेस गर्नुहोस्" msgstr "रिफ्रेस गर्नुहोस्"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "पासवर्ड सम्झनुभयो? <0/>" msgstr "पासवर्ड सम्झनुभयो? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "रुसियन" msgstr "रुसियन"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google वा कुनै अनुकूल OAuth प्रद
msgid "Sign up" msgid "Sign up"
msgstr "साइन अप" msgstr "साइन अप"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "तपाईंको {providerName} खाता छुट्याउ
msgid "Unlock" msgid "Unlock"
msgstr "अनलक गर्नुहोस्" msgstr "अनलक गर्नुहोस्"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "यकिन नगरिएको (Unverified)" msgstr "यकिन नगरिएको (Unverified)"
@@ -3204,6 +3250,10 @@ msgstr "तपाईंले प्रयोगकर्तानाम प्
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "तपाईं आफ्नो बायोडाटा अद्वितीय सार्वजनिक URL मार्फत सेयर गर्न सक्नुहुन्छ, पासवर्डले सुरक्षा गर्न सक्नुहुन्छ, वा सिधै सेयर गर्न PDF को रूपमा डाउनलोड गर्न सक्नुहुन्छ। चुनाव तपाईंको हो!" msgstr "तपाईं आफ्नो बायोडाटा अद्वितीय सार्वजनिक URL मार्फत सेयर गर्न सक्नुहुन्छ, पासवर्डले सुरक्षा गर्न सक्नुहुन्छ, वा सिधै सेयर गर्न PDF को रूपमा डाउनलोड गर्न सक्नुहुन्छ। चुनाव तपाईंको हो!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "तपाईंका सुरक्षित नगरिएका परिवर्तनहरू हराउनेछन्।" msgstr "तपाईंका सुरक्षित नगरिएका परिवर्तनहरू हराउनेछन्।"
+50 -1
View File
@@ -900,6 +900,7 @@ msgstr "Graad"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Verwijderen" msgstr "Verwijderen"
@@ -1226,10 +1227,18 @@ msgstr "Exporteren"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "Kan cv niet analyseren." msgstr "Kan cv niet analyseren."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Duplicaat van cv mislukt" msgstr "Duplicaat van cv mislukt"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Het instellen van tweestapsverificatie is mislukt." msgstr "Het instellen van tweestapsverificatie is mislukt."
@@ -1750,6 +1759,10 @@ msgstr "Langdurige duurzaamheid"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Geen toegang meer tot uw authenticator?" msgstr "Geen toegang meer tot uw authenticator?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Algemeen" msgstr "Algemeen"
@@ -1814,6 +1827,10 @@ msgstr "Meertalig"
msgid "Name" msgid "Name"
msgstr "Naam" msgstr "Naam"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalees" msgstr "Nepalees"
@@ -1867,6 +1884,10 @@ msgstr "Geen ervaring"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Geen vacatures gevonden. Probeer een andere zoekopdracht." msgstr "Geen vacatures gevonden. Probeer een andere zoekopdracht."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Geen resultaten gevonden." msgstr "Geen resultaten gevonden."
@@ -1971,6 +1992,18 @@ msgstr "Paragraaf"
msgid "Part-time" msgid "Part-time"
msgstr "Deeltijd" msgstr "Deeltijd"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeys & 2FA" msgstr "Passkeys & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referenties"
msgid "Refresh" msgid "Refresh"
msgstr "Vernieuwen" msgstr "Vernieuwen"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Wachtwoord nog weten? <0/>" msgstr "Wachtwoord nog weten? <0/>"
@@ -2317,6 +2354,10 @@ msgstr "Voer uw eerste analyse uit om een scorekaart, sterke punten en gepriorit
msgid "Russian" msgid "Russian"
msgstr "Russisch" msgstr "Russisch"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Log in met GitHub, Google of een aangepaste OAuth-provider."
msgid "Sign up" msgid "Sign up"
msgstr "Registreren" msgstr "Registreren"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Uw {providerName}-account wordt ontkoppeld..."
msgid "Unlock" msgid "Unlock"
msgstr "Ontgrendelen" msgstr "Ontgrendelen"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Niet geverifiëerd" msgstr "Niet geverifiëerd"
@@ -3204,6 +3250,10 @@ msgstr "U kunt ook uw gebruikersnaam gebruiken om in te loggen."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "U kunt uw cv delen via een unieke openbare URL, het met een wachtwoord beveiligen of het downloaden als PDF om direct te delen. De keuze is aan u!" msgstr "U kunt uw cv delen via een unieke openbare URL, het met een wachtwoord beveiligen of het downloaden als PDF om direct te delen. De keuze is aan u!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "U hebt niet-opgeslagen wijzigingen die verloren zullen gaan." msgstr "U hebt niet-opgeslagen wijzigingen die verloren zullen gaan."
@@ -3299,4 +3349,3 @@ msgstr "Uitzoomen"
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Zulu" msgid "Zulu"
msgstr "Zulu" msgstr "Zulu"
+50
View File
@@ -900,6 +900,7 @@ msgstr "Grad"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Slett" msgstr "Slett"
@@ -1226,10 +1227,18 @@ msgstr "Eksporter"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Kunne ikke sette opp tofaktorautentisering." msgstr "Kunne ikke sette opp tofaktorautentisering."
@@ -1750,6 +1759,10 @@ msgstr "Langsiktig bærekraft"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Mistet tilgang til autentiseringsappen?" msgstr "Mistet tilgang til autentiseringsappen?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Hoved" msgstr "Hoved"
@@ -1814,6 +1827,10 @@ msgstr "Flerspråklig"
msgid "Name" msgid "Name"
msgstr "Navn" msgstr "Navn"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepali" msgstr "Nepali"
@@ -1867,6 +1884,10 @@ msgstr ""
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Ingen resultater funnet." msgstr "Ingen resultater funnet."
@@ -1971,6 +1992,18 @@ msgstr "Avsnitt"
msgid "Part-time" msgid "Part-time"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passnøkler og 2FA" msgstr "Passnøkler og 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referanser"
msgid "Refresh" msgid "Refresh"
msgstr "Oppdater" msgstr "Oppdater"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Husker du passordet ditt? <0/>" msgstr "Husker du passordet ditt? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russisk" msgstr "Russisk"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Logg inn med GitHub, Google eller en egendefinert OAuth-leverandør."
msgid "Sign up" msgid "Sign up"
msgstr "Registrer deg" msgstr "Registrer deg"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Fjerner koblingen til {providerName}-kontoen din..."
msgid "Unlock" msgid "Unlock"
msgstr "Lås opp" msgstr "Lås opp"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Ubekreftet" msgstr "Ubekreftet"
@@ -3204,6 +3250,10 @@ msgstr "Du kan også bruke brukernavnet ditt til å logge inn."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Du kan dele CV-en din via en unik offentlig URL, beskytte den med et passord eller laste den ned som PDF for å dele direkte. Valget er ditt!" msgstr "Du kan dele CV-en din via en unik offentlig URL, beskytte den med et passord eller laste den ned som PDF for å dele direkte. Valget er ditt!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Du har ulagrede endringer som vil gå tapt." msgstr "Du har ulagrede endringer som vil gå tapt."
+50
View File
@@ -900,6 +900,7 @@ msgstr "ଡିଗ୍ରୀ"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "ବିଲୋପ କରନ୍ତୁ" msgstr "ବିଲୋପ କରନ୍ତୁ"
@@ -1226,10 +1227,18 @@ msgstr "ନିର୍ଯ୍ୟାତ"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "ଦ୍ୱି-ଘଟକ ପରିଚୟ ପ୍ରମାଣିକରଣ ସେଟ୍‌ଆପ୍ କରିବାରେ ବିଫଳ ହେଲା।" msgstr "ଦ୍ୱି-ଘଟକ ପରିଚୟ ପ୍ରମାଣିକରଣ ସେଟ୍‌ଆପ୍ କରିବାରେ ବିଫଳ ହେଲା।"
@@ -1750,6 +1759,10 @@ msgstr "ଦୀର୍ଘକାଳୀନ ଟିକାଉପନ"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "ଆପଣଙ୍କ ପରିଚୟ ପ୍ରମାଣିକରଣ ଆପ୍‌ରେ ପ୍ରବେଶ ହାରାଇ ଯାଇଛି କି?" msgstr "ଆପଣଙ୍କ ପରିଚୟ ପ୍ରମାଣିକରଣ ଆପ୍‌ରେ ପ୍ରବେଶ ହାରାଇ ଯାଇଛି କି?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "ମୁଖ୍ୟ" msgstr "ମୁଖ୍ୟ"
@@ -1814,6 +1827,10 @@ msgstr "ବହୁଭାଷା"
msgid "Name" msgid "Name"
msgstr "ନାମ" msgstr "ନାମ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "ନେପାଳୀ" msgstr "ନେପାଳୀ"
@@ -1867,6 +1884,10 @@ msgstr ""
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "କୌଣସି ଫଳାଫଳ ମିଳିଲା ନାହିଁ।" msgstr "କୌଣସି ଫଳାଫଳ ମିଳିଲା ନାହିଁ।"
@@ -1971,6 +1992,18 @@ msgstr "ଅନୁଚ୍ଛେଦ"
msgid "Part-time" msgid "Part-time"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "ପାସକି ଏବଂ 2FA" msgstr "ପାସକି ଏବଂ 2FA"
@@ -2189,6 +2222,10 @@ msgstr "ସନ୍ଦର୍ଭଗୁଡିକ"
msgid "Refresh" msgid "Refresh"
msgstr "ରିଫ୍ରେଶ କରନ୍ତୁ" msgstr "ରିଫ୍ରେଶ କରନ୍ତୁ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "ଆପଣଙ୍କ ପାସୱାର୍ଡ ମନେ ଅଛି? <0/>" msgstr "ଆପଣଙ୍କ ପାସୱାର୍ଡ ମନେ ଅଛି? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "ରୁଷିଆନ୍" msgstr "ରୁଷିଆନ୍"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google କିମ୍ବା କଷ୍ଟମ୍ OAuth ପ୍ରଦ
msgid "Sign up" msgid "Sign up"
msgstr "ସାଇନ୍ ଅପ୍ କରନ୍ତୁ" msgstr "ସାଇନ୍ ଅପ୍ କରନ୍ତୁ"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "ଆପଣଙ୍କ {providerName} ଆକାଉଣ୍ଟ ଅନଲିଙ
msgid "Unlock" msgid "Unlock"
msgstr "ଅନଲକ୍ କରନ୍ତୁ" msgstr "ଅନଲକ୍ କରନ୍ତୁ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "ଅସତ୍ୟାପିତ" msgstr "ଅସତ୍ୟାପିତ"
@@ -3204,6 +3250,10 @@ msgstr "ଆପଣ ଆପଣଙ୍କ ଯୁଜରନେମ୍ ବ୍ୟବହା
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "ଆପଣ ଏକ ଅଦ୍ୱିତୀୟ ସାର୍ବଜନିକ URL ଦ୍ୱାରା ଆପଣଙ୍କ ରେଜ୍ୟୁମେକୁ ସେୟାର କରିପାରିବେ, ପାସୱାର୍ଡ ସହ ଏହାକୁ ସୁରକ୍ଷିତ କରିପାରିବେ, କିମ୍ବା ସରାସରି ସେୟାର କରିବା ପାଇଁ ଏହାକୁ PDF ଭାବରେ ଡାଉନ଴ଲୋଡ୍ କରିପାରିବେ। ପସନ୍ଦ ଆପଣଙ୍କର!" msgstr "ଆପଣ ଏକ ଅଦ୍ୱିତୀୟ ସାର୍ବଜନିକ URL ଦ୍ୱାରା ଆପଣଙ୍କ ରେଜ୍ୟୁମେକୁ ସେୟାର କରିପାରିବେ, ପାସୱାର୍ଡ ସହ ଏହାକୁ ସୁରକ୍ଷିତ କରିପାରିବେ, କିମ୍ବା ସରାସରି ସେୟାର କରିବା ପାଇଁ ଏହାକୁ PDF ଭାବରେ ଡାଉନ଴ଲୋଡ୍ କରିପାରିବେ। ପସନ୍ଦ ଆପଣଙ୍କର!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "ଆପଣଙ୍କର ସଞ୍ଚୟ ନହୋଇଥିବା ପରିବର୍ତ୍ତନ ହରାଇ ଯିବ।" msgstr "ଆପଣଙ୍କର ସଞ୍ଚୟ ନହୋଇଥିବା ପରିବର୍ତ୍ତନ ହରାଇ ଯିବ।"
+50
View File
@@ -900,6 +900,7 @@ msgstr "Stopień"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Usuń" msgstr "Usuń"
@@ -1226,10 +1227,18 @@ msgstr "Eksportuj"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Nie udało się zduplikować wznowienia" msgstr "Nie udało się zduplikować wznowienia"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Nie udało się skonfigurować uwierzytelniania dwuskładnikowego." msgstr "Nie udało się skonfigurować uwierzytelniania dwuskładnikowego."
@@ -1750,6 +1759,10 @@ msgstr "Długoterminowa trwałość"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Utraciłeś dostęp do aplikacji uwierzytelniającej?" msgstr "Utraciłeś dostęp do aplikacji uwierzytelniającej?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Główna" msgstr "Główna"
@@ -1814,6 +1827,10 @@ msgstr "Wielojęzyczna"
msgid "Name" msgid "Name"
msgstr "Nazwa" msgstr "Nazwa"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalski" msgstr "Nepalski"
@@ -1867,6 +1884,10 @@ msgstr "Brak doświadczenia"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Nie znaleziono żadnych ofert pracy. Proszę spróbować użyć innego zapytania." msgstr "Nie znaleziono żadnych ofert pracy. Proszę spróbować użyć innego zapytania."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Brak wyników." msgstr "Brak wyników."
@@ -1971,6 +1992,18 @@ msgstr "Akapit"
msgid "Part-time" msgid "Part-time"
msgstr "W niepełnym wymiarze godzin" msgstr "W niepełnym wymiarze godzin"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Klucze dostępu i 2FA" msgstr "Klucze dostępu i 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referencje"
msgid "Refresh" msgid "Refresh"
msgstr "Odśwież" msgstr "Odśwież"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Pamiętasz hasło? <0/>" msgstr "Pamiętasz hasło? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rosyjski" msgstr "Rosyjski"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Zaloguj się za pomocą GitHub, Google lub własnego dostawcy OAuth."
msgid "Sign up" msgid "Sign up"
msgstr "Zarejestruj się" msgstr "Zarejestruj się"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Odłączanie konta {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Odblokuj" msgstr "Odblokuj"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Niezweryfikowany" msgstr "Niezweryfikowany"
@@ -3204,6 +3250,10 @@ msgstr "Możesz też użyć swojej nazwy użytkownika do logowania."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Możesz udostępnić swoje CV za pomocą unikalnego publicznego adresu URL, zabezpieczyć je hasłem lub pobrać jako PDF i udostępnić bezpośrednio. Wybór należy do Ciebie!" msgstr "Możesz udostępnić swoje CV za pomocą unikalnego publicznego adresu URL, zabezpieczyć je hasłem lub pobrać jako PDF i udostępnić bezpośrednio. Wybór należy do Ciebie!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Masz niezapisane zmiany, które zostaną utracone." msgstr "Masz niezapisane zmiany, które zostaną utracone."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Grau"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Apagar" msgstr "Apagar"
@@ -1226,10 +1227,18 @@ msgstr "Exportar"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Falha ao duplicar o currículo" msgstr "Falha ao duplicar o currículo"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Falha ao configurar a autenticação de dois fatores." msgstr "Falha ao configurar a autenticação de dois fatores."
@@ -1750,6 +1759,10 @@ msgstr "Sustentabilidade em longo prazo"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Perdeu o acesso ao seu autenticador?" msgstr "Perdeu o acesso ao seu autenticador?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Principal" msgstr "Principal"
@@ -1814,6 +1827,10 @@ msgstr "Multilíngue"
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalês" msgstr "Nepalês"
@@ -1867,6 +1884,10 @@ msgstr "Sem experiência"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Não foram encontradas vagas. Tente uma consulta de pesquisa diferente." msgstr "Não foram encontradas vagas. Tente uma consulta de pesquisa diferente."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nenhum resultado encontrado." msgstr "Nenhum resultado encontrado."
@@ -1971,6 +1992,18 @@ msgstr "Parágrafo"
msgid "Part-time" msgid "Part-time"
msgstr "Meio período" msgstr "Meio período"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Chaves de acesso e 2FA" msgstr "Chaves de acesso e 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referências"
msgid "Refresh" msgid "Refresh"
msgstr "Atualizar" msgstr "Atualizar"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Lembrou sua senha? <0/>" msgstr "Lembrou sua senha? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russo" msgstr "Russo"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Entre com GitHub, Google ou um provedor OAuth personalizado."
msgid "Sign up" msgid "Sign up"
msgstr "Cadastre-se" msgstr "Cadastre-se"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Desvinculando sua conta {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Desbloquear" msgstr "Desbloquear"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Não verificado" msgstr "Não verificado"
@@ -3204,6 +3250,10 @@ msgstr "Você também pode usar seu nome de usuário para entrar."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Você pode compartilhar seu currículo por meio de um URL público exclusivo, protegê-lo com uma senha ou baixá-lo como PDF para compartilhar diretamente. A escolha é sua!" msgstr "Você pode compartilhar seu currículo por meio de um URL público exclusivo, protegê-lo com uma senha ou baixá-lo como PDF para compartilhar diretamente. A escolha é sua!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Você tem alterações não salvas que serão perdidas." msgstr "Você tem alterações não salvas que serão perdidas."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Grau"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Apagar" msgstr "Apagar"
@@ -1226,10 +1227,18 @@ msgstr "Exportar"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Falha ao duplicar o currículo" msgstr "Falha ao duplicar o currículo"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Falha ao configurar a autenticação de dois fatores." msgstr "Falha ao configurar a autenticação de dois fatores."
@@ -1750,6 +1759,10 @@ msgstr "Sustentabilidade a longo prazo"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Perdeu o acesso ao seu autenticador?" msgstr "Perdeu o acesso ao seu autenticador?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Principal" msgstr "Principal"
@@ -1814,6 +1827,10 @@ msgstr "Multilingue"
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalês" msgstr "Nepalês"
@@ -1867,6 +1884,10 @@ msgstr "Sem experiência"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Não foram encontrados empregos. Tente uma consulta de pesquisa diferente." msgstr "Não foram encontrados empregos. Tente uma consulta de pesquisa diferente."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nenhum resultado encontrado." msgstr "Nenhum resultado encontrado."
@@ -1971,6 +1992,18 @@ msgstr "Parágrafo"
msgid "Part-time" msgid "Part-time"
msgstr "A tempo parcial" msgstr "A tempo parcial"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeys e 2FA" msgstr "Passkeys e 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referências"
msgid "Refresh" msgid "Refresh"
msgstr "Recarregar" msgstr "Recarregar"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Lembra-se da sua palavra-passe? <0/>" msgstr "Lembra-se da sua palavra-passe? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Russo" msgstr "Russo"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Inicie sessão com o GitHub, Google ou um fornecedor OAuth personalizado
msgid "Sign up" msgid "Sign up"
msgstr "Registar" msgstr "Registar"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "A desassociar a sua conta de {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Desbloquear" msgstr "Desbloquear"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Não verificado" msgstr "Não verificado"
@@ -3204,6 +3250,10 @@ msgstr "Também pode utilizar o seu nome de usuário para iniciar sessão."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Pode partilhar o seu currículo através de um URL público único, protegê-lo com uma senha ou descarregá-lo em PDF para partilha direta. A escolha é sua!" msgstr "Pode partilhar o seu currículo através de um URL público único, protegê-lo com uma senha ou descarregá-lo em PDF para partilha direta. A escolha é sua!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Tem alterações não guardadas que serão perdidas." msgstr "Tem alterações não guardadas que serão perdidas."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Diplomă"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Șterge" msgstr "Șterge"
@@ -1226,10 +1227,18 @@ msgstr "Exportă"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "A eșuat duplicarea CV-ului" msgstr "A eșuat duplicarea CV-ului"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Configurarea autentificării cu doi factori a eșuat." msgstr "Configurarea autentificării cu doi factori a eșuat."
@@ -1750,6 +1759,10 @@ msgstr "Sustenabilitate pe termen lung"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Ați pierdut accesul la aplicația de autentificare?" msgstr "Ați pierdut accesul la aplicația de autentificare?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Principal" msgstr "Principal"
@@ -1814,6 +1827,10 @@ msgstr "Multilingv"
msgid "Name" msgid "Name"
msgstr "Nume" msgstr "Nume"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepaleză" msgstr "Nepaleză"
@@ -1867,6 +1884,10 @@ msgstr "Fără experiență"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Nu s-au găsit locuri de muncă. Încercați o altă interogare de căutare." msgstr "Nu s-au găsit locuri de muncă. Încercați o altă interogare de căutare."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nu s-a găsit niciun rezultat." msgstr "Nu s-a găsit niciun rezultat."
@@ -1971,6 +1992,18 @@ msgstr "Paragraf"
msgid "Part-time" msgid "Part-time"
msgstr "Part-time" msgstr "Part-time"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Chei de acces & 2FA" msgstr "Chei de acces & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referințe"
msgid "Refresh" msgid "Refresh"
msgstr "Reîncarcă" msgstr "Reîncarcă"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Îți amintești parola? <0/>" msgstr "Îți amintești parola? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rusă" msgstr "Rusă"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Autentificați-vă cu GitHub, Google sau un furnizor OAuth personalizat.
msgid "Sign up" msgid "Sign up"
msgstr "Înregistrare" msgstr "Înregistrare"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Se deconectează contul {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Deblocare" msgstr "Deblocare"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Neverificat" msgstr "Neverificat"
@@ -3204,6 +3250,10 @@ msgstr "Puteți folosi și numele de utilizator pentru a vă autentifica."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Puteți partaja CV-ul printr-un URL public unic, îl puteți proteja cu o parolă sau îl puteți descărca ca PDF pentru a-l partaja direct. Alegerea vă aparține!" msgstr "Puteți partaja CV-ul printr-un URL public unic, îl puteți proteja cu o parolă sau îl puteți descărca ca PDF pentru a-l partaja direct. Alegerea vă aparține!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Aveți modificări nesalvate care vor fi pierdute." msgstr "Aveți modificări nesalvate care vor fi pierdute."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Степень"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Удалить" msgstr "Удалить"
@@ -1226,10 +1227,18 @@ msgstr "Экспорт"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Не удалось продублировать резюме" msgstr "Не удалось продублировать резюме"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Не удалось настроить двухфакторную аутентификацию." msgstr "Не удалось настроить двухфакторную аутентификацию."
@@ -1750,6 +1759,10 @@ msgstr "Долгосрочная устойчивость"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Потеряли доступ к приложению-аутентификатору?" msgstr "Потеряли доступ к приложению-аутентификатору?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Основная" msgstr "Основная"
@@ -1814,6 +1827,10 @@ msgstr "Многоязычность"
msgid "Name" msgid "Name"
msgstr "Название" msgstr "Название"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Непальский" msgstr "Непальский"
@@ -1867,6 +1884,10 @@ msgstr "Без опыта"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Не найдено ни одной работы. Попробуйте другой поисковый запрос." msgstr "Не найдено ни одной работы. Попробуйте другой поисковый запрос."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Результатов не найдено." msgstr "Результатов не найдено."
@@ -1971,6 +1992,18 @@ msgstr "Абзац"
msgid "Part-time" msgid "Part-time"
msgstr "Неполный рабочий день" msgstr "Неполный рабочий день"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Ключи доступа и 2FA" msgstr "Ключи доступа и 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Рекомендации"
msgid "Refresh" msgid "Refresh"
msgstr "Обновить" msgstr "Обновить"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Вспомнили пароль? <0/>" msgstr "Вспомнили пароль? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Русский" msgstr "Русский"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Войдите с GitHub, Google или собственным пров
msgid "Sign up" msgid "Sign up"
msgstr "Зарегистрироваться" msgstr "Зарегистрироваться"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Отвязка учетной записи {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Разблокировать" msgstr "Разблокировать"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Не подтверждена" msgstr "Не подтверждена"
@@ -3204,6 +3250,10 @@ msgstr "Вы также можете использовать имя польз
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Вы можете поделиться резюме по уникальному публичному URL, защитить его паролем или скачать как PDF и отправить напрямую. Выбор за вами!" msgstr "Вы можете поделиться резюме по уникальному публичному URL, защитить его паролем или скачать как PDF и отправить напрямую. Выбор за вами!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "У вас есть несохранённые изменения, которые будут потеряны." msgstr "У вас есть несохранённые изменения, которые будут потеряны."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Titul"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Vymazať" msgstr "Vymazať"
@@ -1226,10 +1227,18 @@ msgstr "Export"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Nepodarilo sa duplikovať životopis" msgstr "Nepodarilo sa duplikovať životopis"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Nastavenie dvojfaktorového overenia zlyhalo." msgstr "Nastavenie dvojfaktorového overenia zlyhalo."
@@ -1750,6 +1759,10 @@ msgstr "Dlhodobá udržateľnosť"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Stratil si prístup k autentifikátoru?" msgstr "Stratil si prístup k autentifikátoru?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Hlavná" msgstr "Hlavná"
@@ -1814,6 +1827,10 @@ msgstr "Viacjazyčná"
msgid "Name" msgid "Name"
msgstr "Názov" msgstr "Názov"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepálčina" msgstr "Nepálčina"
@@ -1867,6 +1884,10 @@ msgstr "Žiadne skúsenosti"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Nenašli sa žiadne pracovné miesta. Skúste použiť inú vyhľadávaciu požiadavku." msgstr "Nenašli sa žiadne pracovné miesta. Skúste použiť inú vyhľadávaciu požiadavku."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nenašli sa žiadne výsledky." msgstr "Nenašli sa žiadne výsledky."
@@ -1971,6 +1992,18 @@ msgstr "Odstavec"
msgid "Part-time" msgid "Part-time"
msgstr "Na čiastočný úväzok" msgstr "Na čiastočný úväzok"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Prístupové kľúče a 2FA" msgstr "Prístupové kľúče a 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referencie"
msgid "Refresh" msgid "Refresh"
msgstr "Obnoviť" msgstr "Obnoviť"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Pamätáte si heslo? <0/>" msgstr "Pamätáte si heslo? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Ruština" msgstr "Ruština"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Prihlás sa cez GitHub, Google alebo vlastného OAuth poskytovateľa."
msgid "Sign up" msgid "Sign up"
msgstr "Zaregistrovať sa" msgstr "Zaregistrovať sa"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Odpájam tvoj účet {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Odomknúť" msgstr "Odomknúť"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Neoverené" msgstr "Neoverené"
@@ -3204,6 +3250,10 @@ msgstr "Na prihlásenie môžeš použiť aj svoje používateľské meno."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Svoj životopis môžeš zdieľať pomocou unikátnej verejnej URL adresy, chrániť ho heslom alebo ho stiahnuť ako PDF a zdieľať priamo. Voľba je na tebe!" msgstr "Svoj životopis môžeš zdieľať pomocou unikátnej verejnej URL adresy, chrániť ho heslom alebo ho stiahnuť ako PDF a zdieľať priamo. Voľba je na tebe!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Máte neuložené zmeny, ktoré budú stratené." msgstr "Máte neuložené zmeny, ktoré budú stratené."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Stopnja"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Izbriši" msgstr "Izbriši"
@@ -1226,10 +1227,18 @@ msgstr "Izvozi"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Ni uspelo podvojiti življenjepisa" msgstr "Ni uspelo podvojiti življenjepisa"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Ni bilo mogoče nastaviti dvostopenjskega preverjanja pristnosti." msgstr "Ni bilo mogoče nastaviti dvostopenjskega preverjanja pristnosti."
@@ -1750,6 +1759,10 @@ msgstr "Dolgoročna trajnost"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Ste izgubili dostop do vaše avtentikatorske naprave?" msgstr "Ste izgubili dostop do vaše avtentikatorske naprave?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Glavna" msgstr "Glavna"
@@ -1814,6 +1827,10 @@ msgstr "Večjezično"
msgid "Name" msgid "Name"
msgstr "Ime" msgstr "Ime"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "nepalščina" msgstr "nepalščina"
@@ -1867,6 +1884,10 @@ msgstr "Brez izkušenj"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Ni bilo najdenih delovnih mest. Poskusite z drugo iskalno poizvedbo." msgstr "Ni bilo najdenih delovnih mest. Poskusite z drugo iskalno poizvedbo."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Ni rezultatov." msgstr "Ni rezultatov."
@@ -1971,6 +1992,18 @@ msgstr "Odstavek"
msgid "Part-time" msgid "Part-time"
msgstr "Delni delovni čas" msgstr "Delni delovni čas"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Ključi za prijavo in dvofaktorska avtentikacija" msgstr "Ključi za prijavo in dvofaktorska avtentikacija"
@@ -2189,6 +2222,10 @@ msgstr "Reference"
msgid "Refresh" msgid "Refresh"
msgstr "Osveži" msgstr "Osveži"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "" msgstr ""
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "ruščina" msgstr "ruščina"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Prijavite se z GitHub, Google ali poljubnim ponudnikom OAuth."
msgid "Sign up" msgid "Sign up"
msgstr "Registracija" msgstr "Registracija"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Preklic povezave vašega računa {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Odkleni" msgstr "Odkleni"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Noverificirano" msgstr "Noverificirano"
@@ -3204,6 +3250,10 @@ msgstr "Za prijavo lahko uporabite tudi svoje uporabniško ime."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Svoj življenjepis lahko delite prek edinstvenega javnega URL-ja, ga zaščitite z geslom ali prenesete kot PDF za neposredno deljenje. Izbira je vaša!" msgstr "Svoj življenjepis lahko delite prek edinstvenega javnega URL-ja, ga zaščitite z geslom ali prenesete kot PDF za neposredno deljenje. Izbira je vaša!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Imate neshranjene spremembe, ki bodo izgubljene." msgstr "Imate neshranjene spremembe, ki bodo izgubljene."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Diploma"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Fshi" msgstr "Fshi"
@@ -1226,10 +1227,18 @@ msgstr "Exporto"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Dështoi të kopjojë vazhdimin" msgstr "Dështoi të kopjojë vazhdimin"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Dështoi konfigurimi i vërtetimit me dy faktorë." msgstr "Dështoi konfigurimi i vërtetimit me dy faktorë."
@@ -1750,6 +1759,10 @@ msgstr "Qëndrueshmëri afatgjatë"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Humbët aksesin te aplikacioni juaj i autentikimit?" msgstr "Humbët aksesin te aplikacioni juaj i autentikimit?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Kryesore" msgstr "Kryesore"
@@ -1814,6 +1827,10 @@ msgstr "Shumëgjuhësh"
msgid "Name" msgid "Name"
msgstr "Emri" msgstr "Emri"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalisht" msgstr "Nepalisht"
@@ -1867,6 +1884,10 @@ msgstr "Pa përvojë"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Nuk u gjetën vende pune. Provoni një kërkim tjetër." msgstr "Nuk u gjetën vende pune. Provoni një kërkim tjetër."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Nuk u gjetën rezultate." msgstr "Nuk u gjetën rezultate."
@@ -1971,6 +1992,18 @@ msgstr "Paragraf"
msgid "Part-time" msgid "Part-time"
msgstr "Pjesë-kohë" msgstr "Pjesë-kohë"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeys & 2FA" msgstr "Passkeys & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referenca"
msgid "Refresh" msgid "Refresh"
msgstr "Rifresko" msgstr "Rifresko"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Ju kujtohet fjalëkalimi? <0/>" msgstr "Ju kujtohet fjalëkalimi? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rusisht" msgstr "Rusisht"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Hyni me GitHub, Google ose një ofrues tjetër të personalizuar OAuth."
msgid "Sign up" msgid "Sign up"
msgstr "Regjistrohu" msgstr "Regjistrohu"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Po shkëputet llogaria juaj {providerName}..."
msgid "Unlock" msgid "Unlock"
msgstr "Shkyç" msgstr "Shkyç"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "I paverifikuar" msgstr "I paverifikuar"
@@ -3204,6 +3250,10 @@ msgstr "Ju gjithashtu mund të përdorni emrin tuaj të përdoruesit për tu
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "CV-në tuaj mund ta ndani përmes një URL-je publike unike, ta mbroni me një fjalëkalim ose ta shkarkoni si PDF për ta ndarë drejtpërdrejt. Zgjedhja është e juaja!" msgstr "CV-në tuaj mund ta ndani përmes një URL-je publike unike, ta mbroni me një fjalëkalim ose ta shkarkoni si PDF për ta ndarë drejtpërdrejt. Zgjedhja është e juaja!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Keni ndryshime të paruajtura që do të humbasin." msgstr "Keni ndryshime të paruajtura që do të humbasin."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Степен"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Обриши" msgstr "Обриши"
@@ -1226,10 +1227,18 @@ msgstr "Извоз"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Није успело да се дуплира резиме" msgstr "Није успело да се дуплира резиме"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Није успело подешавање двофакторске аутентификације." msgstr "Није успело подешавање двофакторске аутентификације."
@@ -1750,6 +1759,10 @@ msgstr "Дугорочна одрживост"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Изгубили сте приступ својој апликацији за аутентификацију?" msgstr "Изгубили сте приступ својој апликацији за аутентификацију?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Главно" msgstr "Главно"
@@ -1814,6 +1827,10 @@ msgstr "Вишејезично"
msgid "Name" msgid "Name"
msgstr "Име" msgstr "Име"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Непалски" msgstr "Непалски"
@@ -1867,6 +1884,10 @@ msgstr "Нема искуства"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Није пронађено ниједно радно место. Покушајте са другом претрагом." msgstr "Није пронађено ниједно радно место. Покушајте са другом претрагом."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Нема резултата." msgstr "Нема резултата."
@@ -1971,6 +1992,18 @@ msgstr "Пасус"
msgid "Part-time" msgid "Part-time"
msgstr "Пола радног времена" msgstr "Пола радног времена"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Приступне лозинке и 2FA" msgstr "Приступне лозинке и 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Референце"
msgid "Refresh" msgid "Refresh"
msgstr "Освежи" msgstr "Освежи"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Сећате се лозинке? <0/>" msgstr "Сећате се лозинке? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Руски" msgstr "Руски"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Пријавите се помоћу GitHub-а, Google-а или при
msgid "Sign up" msgid "Sign up"
msgstr "Региструј се" msgstr "Региструј се"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Прекид повезивања вашег {providerName} налога
msgid "Unlock" msgid "Unlock"
msgstr "Откључај" msgstr "Откључај"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Неверификовано" msgstr "Неверификовано"
@@ -3204,6 +3250,10 @@ msgstr "Такође можете користити своје кориснич
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Свој резиме можете поделити путем јединственог јавног URL-а, заштитити га лозинком или га преузети као PDF и делити директно. Избор је на вама!" msgstr "Свој резиме можете поделити путем јединственог јавног URL-а, заштитити га лозинком или га преузети као PDF и делити директно. Избор је на вама!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Имате несачуване промене које ће бити изгубљене." msgstr "Имате несачуване промене које ће бити изгубљене."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Examen"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Radera" msgstr "Radera"
@@ -1226,10 +1227,18 @@ msgstr "Exportera"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Misslyckades med att duplicera CV" msgstr "Misslyckades med att duplicera CV"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Det gick inte att ställa in tvåfaktorsautentisering." msgstr "Det gick inte att ställa in tvåfaktorsautentisering."
@@ -1750,6 +1759,10 @@ msgstr "Långsiktig hållbarhet"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Förlorat åtkomsten till din autentiserare?" msgstr "Förlorat åtkomsten till din autentiserare?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Huvud" msgstr "Huvud"
@@ -1814,6 +1827,10 @@ msgstr "Flerspråkig"
msgid "Name" msgid "Name"
msgstr "Namn" msgstr "Namn"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalesiska" msgstr "Nepalesiska"
@@ -1867,6 +1884,10 @@ msgstr "Ingen erfarenhet"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Inga jobb hittades. Försök med en annan sökfråga." msgstr "Inga jobb hittades. Försök med en annan sökfråga."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Inga resultat hittades." msgstr "Inga resultat hittades."
@@ -1971,6 +1992,18 @@ msgstr "Stycke"
msgid "Part-time" msgid "Part-time"
msgstr "Deltid" msgstr "Deltid"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passnycklar & 2FA" msgstr "Passnycklar & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referenser"
msgid "Refresh" msgid "Refresh"
msgstr "Uppdatera" msgstr "Uppdatera"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Kommer du ihåg ditt lösenord? <0/>" msgstr "Kommer du ihåg ditt lösenord? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Ryska" msgstr "Ryska"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Logga in med GitHub, Google eller en egen OAuth-leverantör."
msgid "Sign up" msgid "Sign up"
msgstr "Registrera dig" msgstr "Registrera dig"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Kopplar från ditt {providerName}-konto..."
msgid "Unlock" msgid "Unlock"
msgstr "Lås upp" msgstr "Lås upp"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Inte verifierad" msgstr "Inte verifierad"
@@ -3204,6 +3250,10 @@ msgstr "Du kan också använda ditt användarnamn för att logga in."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Du kan dela ditt CV via en unik offentlig URL, skydda det med ett lösenord eller ladda ner det som en PDF för att dela direkt. Valet är ditt!" msgstr "Du kan dela ditt CV via en unik offentlig URL, skydda det med ett lösenord eller ladda ner det som en PDF för att dela direkt. Valet är ditt!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Du har osparade ändringar som kommer att gå förlorade." msgstr "Du har osparade ändringar som kommer att gå förlorade."
+50
View File
@@ -900,6 +900,7 @@ msgstr "பட்டம்"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "நீக்கு" msgstr "நீக்கு"
@@ -1226,10 +1227,18 @@ msgstr "ஏற்றுமதி"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "வாழ்க்கை வரலாற்றை நகலெடுக்கத் தவறியது" msgstr "வாழ்க்கை வரலாற்றை நகலெடுக்கத் தவறியது"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "இரண்டு நிலை அங்கீகாரத்தை அமைப்பது தோல்வியடைந்தது." msgstr "இரண்டு நிலை அங்கீகாரத்தை அமைப்பது தோல்வியடைந்தது."
@@ -1750,6 +1759,10 @@ msgstr "நீண்டகால நிலைத்தன்மை"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "உங்கள் அங்கீகார செயலியை அணுக முடியவில்லையா?" msgstr "உங்கள் அங்கீகார செயலியை அணுக முடியவில்லையா?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "முதன்மை" msgstr "முதன்மை"
@@ -1814,6 +1827,10 @@ msgstr "பல்மொழி"
msgid "Name" msgid "Name"
msgstr "பெயர்" msgstr "பெயர்"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "நேபாளி" msgstr "நேபாளி"
@@ -1867,6 +1884,10 @@ msgstr "அனுபவம் இல்லை"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "வேலைகள் எதுவும் காணப்படவில்லை. வேறு தேடல் வினவலை முயற்சிக்கவும்." msgstr "வேலைகள் எதுவும் காணப்படவில்லை. வேறு தேடல் வினவலை முயற்சிக்கவும்."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "எந்த முடிவுகளும் கிடைக்கவில்லை." msgstr "எந்த முடிவுகளும் கிடைக்கவில்லை."
@@ -1971,6 +1992,18 @@ msgstr "பத்தியம்"
msgid "Part-time" msgid "Part-time"
msgstr "அரைநேர" msgstr "அரைநேர"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "பாஸ்கிகள் & 2FA" msgstr "பாஸ்கிகள் & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "பரிந்துரைகள்"
msgid "Refresh" msgid "Refresh"
msgstr "மீண்டும் ஏற்று" msgstr "மீண்டும் ஏற்று"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "உங்கள் கடவுச்சொல் நினைவிருக்கிறதா? <0/>" msgstr "உங்கள் கடவுச்சொல் நினைவிருக்கிறதா? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "ரஷ்யன்" msgstr "ரஷ்யன்"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google அல்லது தனிப்பயன் OAuth வ
msgid "Sign up" msgid "Sign up"
msgstr "பதிவு செய்யவும்" msgstr "பதிவு செய்யவும்"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "உங்கள் {providerName} கணக்கை இணைப்ப
msgid "Unlock" msgid "Unlock"
msgstr "பூட்டை திற" msgstr "பூட்டை திற"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "சரிபார்க்கப்படவில்லை" msgstr "சரிபார்க்கப்படவில்லை"
@@ -3204,6 +3250,10 @@ msgstr "உள்நுழைய நீங்கள் உங்கள் பய
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "உங்கள் ரெஸ்யூமியை தனித்துவமான பொது URL மூலம் பகிரலாம், அதை கடவுச்சொல்லால் பாதுகாக்கலாம், அல்லது நேரடியாக பகிர்வதற்காக PDF ஆக பதிவிறக்கலாம். விருப்பம் உங்களுடையது!" msgstr "உங்கள் ரெஸ்யூமியை தனித்துவமான பொது URL மூலம் பகிரலாம், அதை கடவுச்சொல்லால் பாதுகாக்கலாம், அல்லது நேரடியாக பகிர்வதற்காக PDF ஆக பதிவிறக்கலாம். விருப்பம் உங்களுடையது!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "சேமிக்கப்படாத மாற்றங்கள் இழக்கப்படும்." msgstr "சேமிக்கப்படாத மாற்றங்கள் இழக்கப்படும்."
+50
View File
@@ -900,6 +900,7 @@ msgstr "డిగ్రీ"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "తొలగించు" msgstr "తొలగించు"
@@ -1226,10 +1227,18 @@ msgstr "ఎగుమతి"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "రిజ్యూమ్‌ను డూప్లికేట్ చేయడంలో విఫలమైంది" msgstr "రిజ్యూమ్‌ను డూప్లికేట్ చేయడంలో విఫలమైంది"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "రెండు దశల ధృవీకరణను సెటప్ చేయడంలో విఫలమయ్యారు." msgstr "రెండు దశల ధృవీకరణను సెటప్ చేయడంలో విఫలమయ్యారు."
@@ -1750,6 +1759,10 @@ msgstr "దీర్ఘకాలిక స్థిరత్వం"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "మీరు మీ ఆథెంటికేటర్‌ను కోల్పోయారా?" msgstr "మీరు మీ ఆథెంటికేటర్‌ను కోల్పోయారా?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "ప్రధానం" msgstr "ప్రధానం"
@@ -1814,6 +1827,10 @@ msgstr "బహుభాషాక"
msgid "Name" msgid "Name"
msgstr "పేరు" msgstr "పేరు"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "నేపాళీ" msgstr "నేపాళీ"
@@ -1867,6 +1884,10 @@ msgstr "అనుభవం లేదు"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "ఉద్యోగాలు కనుగొనబడలేదు. వేరే శోధన పదాన్ని ప్రయత్నించండి." msgstr "ఉద్యోగాలు కనుగొనబడలేదు. వేరే శోధన పదాన్ని ప్రయత్నించండి."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "ఏ ఫలితాలు లభించలేదు." msgstr "ఏ ఫలితాలు లభించలేదు."
@@ -1971,6 +1992,18 @@ msgstr "పేరాగ్రాఫ్"
msgid "Part-time" msgid "Part-time"
msgstr "అరకొర" msgstr "అరకొర"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "పాస్‌కీస్ & 2FA" msgstr "పాస్‌కీస్ & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "రిఫరెన్స్లు"
msgid "Refresh" msgid "Refresh"
msgstr "రిఫ్రెష్ చేయండి" msgstr "రిఫ్రెష్ చేయండి"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "మీ పాస్‌వర్డ్ గుర్తుందా? <0/>" msgstr "మీ పాస్‌వర్డ్ గుర్తుందా? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "రష్యన్" msgstr "రష్యన్"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google లేదా కస్టమ్ OAuth ప్రొవై
msgid "Sign up" msgid "Sign up"
msgstr "సైన్ అప్ చేయండి" msgstr "సైన్ అప్ చేయండి"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "మీ {providerName} ఖాతా అన్లింక్ చేస్
msgid "Unlock" msgid "Unlock"
msgstr "అన్‌లాక్" msgstr "అన్‌లాక్"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "అన్‌వెరిఫైడ్" msgstr "అన్‌వెరిఫైడ్"
@@ -3204,6 +3250,10 @@ msgstr "మీరు మీ యూజర్‌నేమ్‌తో కూడా
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "మీ రిజ్యూమ్‌ను ప్రత్యేకమైన పబ్లిక్ URL ద్వారా షేర్ చేయవచ్చు, దానికి పాస్‌వర్డ్ రక్షణ ఇవ్వచ్చు లేదా డైరెక్టుగా షేర్ చేసేందుకు PDFగా డౌన్లోడ్ చేసుకోవచ్చు. ఎంపిక మీదే!" msgstr "మీ రిజ్యూమ్‌ను ప్రత్యేకమైన పబ్లిక్ URL ద్వారా షేర్ చేయవచ్చు, దానికి పాస్‌వర్డ్ రక్షణ ఇవ్వచ్చు లేదా డైరెక్టుగా షేర్ చేసేందుకు PDFగా డౌన్లోడ్ చేసుకోవచ్చు. ఎంపిక మీదే!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "మీ సేవ్ చేయని మార్పులు పోతాయి." msgstr "మీ సేవ్ చేయని మార్పులు పోతాయి."
+50
View File
@@ -900,6 +900,7 @@ msgstr "ปริญญา"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "ลบ" msgstr "ลบ"
@@ -1226,10 +1227,18 @@ msgstr "ส่งออก"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "ไม่สามารถทำสำเนาประวัติการทำงานได้" msgstr "ไม่สามารถทำสำเนาประวัติการทำงานได้"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "ตั้งค่าการยืนยันตัวตนสองขั้นตอนล้มเหลว" msgstr "ตั้งค่าการยืนยันตัวตนสองขั้นตอนล้มเหลว"
@@ -1750,6 +1759,10 @@ msgstr "ความยั่งยืนในระยะยาว"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "สูญเสียการเข้าถึงตัวตรวจสอบของคุณใช่ไหม?" msgstr "สูญเสียการเข้าถึงตัวตรวจสอบของคุณใช่ไหม?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "ส่วนหลัก" msgstr "ส่วนหลัก"
@@ -1814,6 +1827,10 @@ msgstr "หลายภาษา"
msgid "Name" msgid "Name"
msgstr "ชื่อ" msgstr "ชื่อ"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "เนปาลี" msgstr "เนปาลี"
@@ -1867,6 +1884,10 @@ msgstr "ไม่มีประสบการณ์"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "ไม่พบงานที่ตรงกัน กรุณาลองค้นหาด้วยคำอื่น" msgstr "ไม่พบงานที่ตรงกัน กรุณาลองค้นหาด้วยคำอื่น"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "ไม่พบผลลัพธ์" msgstr "ไม่พบผลลัพธ์"
@@ -1971,6 +1992,18 @@ msgstr "ย่อหน้า"
msgid "Part-time" msgid "Part-time"
msgstr "ทำงานไม่เต็มเวลา" msgstr "ทำงานไม่เต็มเวลา"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "พาสคีย์ & 2FA" msgstr "พาสคีย์ & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "บุคคลอ้างอิง"
msgid "Refresh" msgid "Refresh"
msgstr "รีเฟรช" msgstr "รีเฟรช"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "จำรหัสผ่านได้? <0/>" msgstr "จำรหัสผ่านได้? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "รัสเซีย" msgstr "รัสเซีย"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "ลงชื่อเข้าใช้ด้วย GitHub, Google ห
msgid "Sign up" msgid "Sign up"
msgstr "ลงทะเบียน" msgstr "ลงทะเบียน"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "กำลังยกเลิกเชื่อมบัญชี {prov
msgid "Unlock" msgid "Unlock"
msgstr "ปลดล็อก" msgstr "ปลดล็อก"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "ยังไม่ยืนยัน" msgstr "ยังไม่ยืนยัน"
@@ -3204,6 +3250,10 @@ msgstr "คุณยังสามารถใช้ชื่อผู้ใช
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "คุณสามารถแบ่งปันประวัติย่อของคุณผ่าน URL สาธารณะเฉพาะ ป้องกันด้วยรหัสผ่าน หรือดาวน์โหลดเป็น PDF เพื่อแชร์โดยตรงก็ได้ ตัวเลือกเป็นของคุณ!" msgstr "คุณสามารถแบ่งปันประวัติย่อของคุณผ่าน URL สาธารณะเฉพาะ ป้องกันด้วยรหัสผ่าน หรือดาวน์โหลดเป็น PDF เพื่อแชร์โดยตรงก็ได้ ตัวเลือกเป็นของคุณ!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกซึ่งจะสูญหาย" msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกซึ่งจะสูญหาย"
+50
View File
@@ -900,6 +900,7 @@ msgstr "Derece"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Sil" msgstr "Sil"
@@ -1226,10 +1227,18 @@ msgstr "Dışa aktar"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Özgeçmiş çoğaltılamadı" msgstr "Özgeçmiş çoğaltılamadı"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "İki faktörlü kimlik doğrulama kurulamadı." msgstr "İki faktörlü kimlik doğrulama kurulamadı."
@@ -1750,6 +1759,10 @@ msgstr "Uzun Vadeli Sürdürülebilirlik"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Kimlik doğrulayıcınıza erişiminizi mi kaybettiniz?" msgstr "Kimlik doğrulayıcınıza erişiminizi mi kaybettiniz?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Ana" msgstr "Ana"
@@ -1814,6 +1827,10 @@ msgstr "Çok Dilli"
msgid "Name" msgid "Name"
msgstr "İsim" msgstr "İsim"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepalce" msgstr "Nepalce"
@@ -1867,6 +1884,10 @@ msgstr "Deneyim yok"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "İş bulunamadı. Farklı bir arama sorgusu deneyin." msgstr "İş bulunamadı. Farklı bir arama sorgusu deneyin."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Hiçbir sonuç bulunamadı." msgstr "Hiçbir sonuç bulunamadı."
@@ -1971,6 +1992,18 @@ msgstr "Paragraf"
msgid "Part-time" msgid "Part-time"
msgstr "Yarı zamanlı" msgstr "Yarı zamanlı"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Geçiş Anahtarları & 2FA" msgstr "Geçiş Anahtarları & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Referanslar"
msgid "Refresh" msgid "Refresh"
msgstr "Yenile" msgstr "Yenile"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Şifrenizi hatırladınız mı? <0/>" msgstr "Şifrenizi hatırladınız mı? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rusça" msgstr "Rusça"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google veya özel bir OAuth sağlayıcısı ile giriş yapın."
msgid "Sign up" msgid "Sign up"
msgstr "Kayıt ol" msgstr "Kayıt ol"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "{providerName} hesabınızın bağlantısı kaldırılıyor..."
msgid "Unlock" msgid "Unlock"
msgstr "Kilidi aç" msgstr "Kilidi aç"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Doğrulanmamış" msgstr "Doğrulanmamış"
@@ -3204,6 +3250,10 @@ msgstr "Giriş yapmak için kullanıcı adınızı da kullanabilirsiniz."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Özgeçmişinizi benzersiz bir halka açık URL ile paylaşabilir, şifre ile koruyabilir veya doğrudan paylaşmak için PDF olarak indirebilirsiniz. Seçim size ait!" msgstr "Özgeçmişinizi benzersiz bir halka açık URL ile paylaşabilir, şifre ile koruyabilir veya doğrudan paylaşmak için PDF olarak indirebilirsiniz. Seçim size ait!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Kaydedilmemiş değişiklikleriniz var ve bunlar kaybolacak." msgstr "Kaydedilmemiş değişiklikleriniz var ve bunlar kaybolacak."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Ступінь"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Видалити" msgstr "Видалити"
@@ -1226,10 +1227,18 @@ msgstr "Експорт"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Не вдалося продублювати резюме" msgstr "Не вдалося продублювати резюме"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Не вдалося налаштувати двофакторну автентифікацію." msgstr "Не вдалося налаштувати двофакторну автентифікацію."
@@ -1750,6 +1759,10 @@ msgstr "Довгострокова сталість"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Втрачене доступ до вашого автентифікатора?" msgstr "Втрачене доступ до вашого автентифікатора?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Основний блок" msgstr "Основний блок"
@@ -1814,6 +1827,10 @@ msgstr "Багатомовний"
msgid "Name" msgid "Name"
msgstr "Назва" msgstr "Назва"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Непальська" msgstr "Непальська"
@@ -1867,6 +1884,10 @@ msgstr "Немає досвіду"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Вакансій не знайдено. Спробуйте інший пошуковий запит." msgstr "Вакансій не знайдено. Спробуйте інший пошуковий запит."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Результатів не знайдено." msgstr "Результатів не знайдено."
@@ -1971,6 +1992,18 @@ msgstr "Абзац"
msgid "Part-time" msgid "Part-time"
msgstr "Неповний робочий день" msgstr "Неповний робочий день"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeys і 2FA" msgstr "Passkeys і 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Рекомендації"
msgid "Refresh" msgid "Refresh"
msgstr "Оновити" msgstr "Оновити"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Пригадали пароль? <0/>" msgstr "Пригадали пароль? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Російська" msgstr "Російська"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Увійдіть через GitHub, Google або власного по
msgid "Sign up" msgid "Sign up"
msgstr "Зареєструватися" msgstr "Зареєструватися"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Від'єднання облікового запису {providerName}..
msgid "Unlock" msgid "Unlock"
msgstr "Розблокувати" msgstr "Розблокувати"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Непідтверджена" msgstr "Непідтверджена"
@@ -3204,6 +3250,10 @@ msgstr "Також ви можете використати своє ім'я к
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Ви можете поділитися резюме за унікальним публічним посиланням, захистити його паролем або завантажити у форматі PDF для прямого поширення. Вибір за вами!" msgstr "Ви можете поділитися резюме за унікальним публічним посиланням, захистити його паролем або завантажити у форматі PDF для прямого поширення. Вибір за вами!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "У вас є незбережені зміни, які буде втрачено." msgstr "У вас є незбережені зміни, які буде втрачено."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Daraja"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "O'chirish" msgstr "O'chirish"
@@ -1226,10 +1227,18 @@ msgstr "Eksport"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Rezyumeni nusxalashda xato yuz berdi" msgstr "Rezyumeni nusxalashda xato yuz berdi"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Ikki bosqichli autentifikatsiyani ornatishda xatolik yuz berdi." msgstr "Ikki bosqichli autentifikatsiyani ornatishda xatolik yuz berdi."
@@ -1750,6 +1759,10 @@ msgstr "Uzoq muddatli barqarorlik"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Autentifikatorga kirish yoʻqoldimi?" msgstr "Autentifikatorga kirish yoʻqoldimi?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Asosiy" msgstr "Asosiy"
@@ -1814,6 +1827,10 @@ msgstr "Kop tilli"
msgid "Name" msgid "Name"
msgstr "Ism" msgstr "Ism"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepal tili" msgstr "Nepal tili"
@@ -1867,6 +1884,10 @@ msgstr "Tajriba yo'q"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Ish topilmadi. Boshqa qidiruv so'rovini sinab ko'ring." msgstr "Ish topilmadi. Boshqa qidiruv so'rovini sinab ko'ring."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Hech qanday natija topilmadi." msgstr "Hech qanday natija topilmadi."
@@ -1971,6 +1992,18 @@ msgstr "Paragraf"
msgid "Part-time" msgid "Part-time"
msgstr "Yarim stavka" msgstr "Yarim stavka"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkeylar va 2FA" msgstr "Passkeylar va 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Tavsiyalar"
msgid "Refresh" msgid "Refresh"
msgstr "Yangilash" msgstr "Yangilash"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Parolingizni eslaysizmi? <0/>" msgstr "Parolingizni eslaysizmi? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Rus tili" msgstr "Rus tili"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "GitHub, Google yoki maxsus OAuth provayderi bilan kirishingiz mumkin."
msgid "Sign up" msgid "Sign up"
msgstr "Roʻyxatdan oʻtish" msgstr "Roʻyxatdan oʻtish"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "{providerName} hisobingizni ajratib qoʻyilmoqda..."
msgid "Unlock" msgid "Unlock"
msgstr "Blokdan chiqarish" msgstr "Blokdan chiqarish"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Tasdiqlanmagan" msgstr "Tasdiqlanmagan"
@@ -3204,6 +3250,10 @@ msgstr "Login uchun foydalanuvchi nomingizdan ham foydalanishingiz mumkin."
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Rezyumeni noyob ommaviy URL orqali ulashishingiz, parol bilan himoyalashingiz yoki togridan-togri ulashish uchun PDF sifatida yuklab olishingiz mumkin. Tanlov sizda!" msgstr "Rezyumeni noyob ommaviy URL orqali ulashishingiz, parol bilan himoyalashingiz yoki togridan-togri ulashish uchun PDF sifatida yuklab olishingiz mumkin. Tanlov sizda!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Saqlanmagan oʻzgarishlar yoʻqoladi." msgstr "Saqlanmagan oʻzgarishlar yoʻqoladi."
+50
View File
@@ -900,6 +900,7 @@ msgstr "Bằng cấp"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "Xóa" msgstr "Xóa"
@@ -1226,10 +1227,18 @@ msgstr "Xuất"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "Không thể sao chép sơ yếu lý lịch" msgstr "Không thể sao chép sơ yếu lý lịch"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "Thiết lập xác thực hai yếu tố thất bại." msgstr "Thiết lập xác thực hai yếu tố thất bại."
@@ -1750,6 +1759,10 @@ msgstr "Bền vững lâu dài"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "Bạn bị mất quyền truy cập vào ứng dụng xác thực?" msgstr "Bạn bị mất quyền truy cập vào ứng dụng xác thực?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "Chính" msgstr "Chính"
@@ -1814,6 +1827,10 @@ msgstr "Đa ngôn ngữ"
msgid "Name" msgid "Name"
msgstr "Tên" msgstr "Tên"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "Nepali" msgstr "Nepali"
@@ -1867,6 +1884,10 @@ msgstr "Chưa có kinh nghiệm"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "Không tìm thấy kết quả nào. Hãy thử nhập từ khóa tìm kiếm khác." msgstr "Không tìm thấy kết quả nào. Hãy thử nhập từ khóa tìm kiếm khác."
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "Không tìm thấy kết quả." msgstr "Không tìm thấy kết quả."
@@ -1971,6 +1992,18 @@ msgstr "Đoạn văn"
msgid "Part-time" msgid "Part-time"
msgstr "Bán thời gian" msgstr "Bán thời gian"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "Passkey & 2FA" msgstr "Passkey & 2FA"
@@ -2189,6 +2222,10 @@ msgstr "Người tham khảo"
msgid "Refresh" msgid "Refresh"
msgstr "Làm mới" msgstr "Làm mới"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "Nhớ mật khẩu? <0/>" msgstr "Nhớ mật khẩu? <0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "Nga" msgstr "Nga"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "Đăng nhập bằng GitHub, Google hoặc nhà cung cấp OAuth tùy ch
msgid "Sign up" msgid "Sign up"
msgstr "Đăng ký" msgstr "Đăng ký"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "Đang hủy liên kết tài khoản {providerName} của bạn..."
msgid "Unlock" msgid "Unlock"
msgstr "Mở khoá" msgstr "Mở khoá"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "Chưa xác minh" msgstr "Chưa xác minh"
@@ -3204,6 +3250,10 @@ msgstr "Bạn cũng có thể sử dụng tên người dùng của mình để
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "Bạn có thể chia sẻ resume của mình qua một URL công khai duy nhất, bảo vệ bằng mật khẩu hoặc tải về dưới dạng PDF để chia sẻ trực tiếp. Lựa chọn là của bạn!" msgstr "Bạn có thể chia sẻ resume của mình qua một URL công khai duy nhất, bảo vệ bằng mật khẩu hoặc tải về dưới dạng PDF để chia sẻ trực tiếp. Lựa chọn là của bạn!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "Bạn có thay đổi chưa lưu sẽ bị mất." msgstr "Bạn có thay đổi chưa lưu sẽ bị mất."
+50
View File
@@ -900,6 +900,7 @@ msgstr "学位"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "删除" msgstr "删除"
@@ -1226,10 +1227,18 @@ msgstr "导出"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "复制简历失败" msgstr "复制简历失败"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "设置双重身份验证失败。" msgstr "设置双重身份验证失败。"
@@ -1750,6 +1759,10 @@ msgstr "长期可持续发展"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "无法使用验证器应用?" msgstr "无法使用验证器应用?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "主界面" msgstr "主界面"
@@ -1814,6 +1827,10 @@ msgstr "多语言"
msgid "Name" msgid "Name"
msgstr "姓名" msgstr "姓名"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "尼泊尔语" msgstr "尼泊尔语"
@@ -1867,6 +1884,10 @@ msgstr "没有经验"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "未找到工作。请尝试其他搜索条件。" msgstr "未找到工作。请尝试其他搜索条件。"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "没找到结果。" msgstr "没找到结果。"
@@ -1971,6 +1992,18 @@ msgstr "段落"
msgid "Part-time" msgid "Part-time"
msgstr "兼职" msgstr "兼职"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "通行密钥与 2FA" msgstr "通行密钥与 2FA"
@@ -2189,6 +2222,10 @@ msgstr "推荐人"
msgid "Refresh" msgid "Refresh"
msgstr "刷新" msgstr "刷新"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "记得密码?<0/>" msgstr "记得密码?<0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "俄语" msgstr "俄语"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "使用 GitHub、Google 或自定义 OAuth 服务提供商登录。"
msgid "Sign up" msgid "Sign up"
msgstr "注册" msgstr "注册"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "正在取消关联你的 {providerName} 账号…"
msgid "Unlock" msgid "Unlock"
msgstr "解锁" msgstr "解锁"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "未验证" msgstr "未验证"
@@ -3204,6 +3250,10 @@ msgstr "你也可以使用用户名登录。"
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "你可以通过唯一的公共 URL 分享你的简历,用密码保护它,或者下载为 PDF 直接分享,一切由你决定!" msgstr "你可以通过唯一的公共 URL 分享你的简历,用密码保护它,或者下载为 PDF 直接分享,一切由你决定!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "你有未保存的更改,这些更改将会丢失。" msgstr "你有未保存的更改,这些更改将会丢失。"
+50
View File
@@ -900,6 +900,7 @@ msgstr "學位"
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "刪除" msgstr "刪除"
@@ -1226,10 +1227,18 @@ msgstr "導出"
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "履歷複製失敗" msgstr "履歷複製失敗"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "設定雙因子驗證失敗。" msgstr "設定雙因子驗證失敗。"
@@ -1750,6 +1759,10 @@ msgstr "長期永續發展"
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "無法使用驗證器了嗎?" msgstr "無法使用驗證器了嗎?"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "主要" msgstr "主要"
@@ -1814,6 +1827,10 @@ msgstr "多語系"
msgid "Name" msgid "Name"
msgstr "名稱" msgstr "名稱"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "尼泊爾語" msgstr "尼泊爾語"
@@ -1867,6 +1884,10 @@ msgstr "無經驗"
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "沒有找到工作。請嘗試其他搜尋查詢。" msgstr "沒有找到工作。請嘗試其他搜尋查詢。"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "找不到相符的結果。" msgstr "找不到相符的結果。"
@@ -1971,6 +1992,18 @@ msgstr "段落"
msgid "Part-time" msgid "Part-time"
msgstr "兼職" msgstr "兼職"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "通行金鑰與 2FA" msgstr "通行金鑰與 2FA"
@@ -2189,6 +2222,10 @@ msgstr "推薦人"
msgid "Refresh" msgid "Refresh"
msgstr "重新整理" msgstr "重新整理"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "記得密碼?<0/>" msgstr "記得密碼?<0/>"
@@ -2317,6 +2354,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "俄文" msgstr "俄文"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2494,6 +2535,7 @@ msgstr "使用 GitHub、Google 或自訂 OAuth 服務登入。"
msgid "Sign up" msgid "Sign up"
msgstr "註冊" msgstr "註冊"
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2975,6 +3017,10 @@ msgstr "正在取消連結您的 {providerName} 帳戶…"
msgid "Unlock" msgid "Unlock"
msgstr "解鎖" msgstr "解鎖"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "未驗證" msgstr "未驗證"
@@ -3204,6 +3250,10 @@ msgstr "您也可以使用使用者名稱登入。"
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "您可以透過唯一的公開 URL 分享履歷、以密碼加以保護,或下載成 PDF 直接分享,一切由您決定!" msgstr "您可以透過唯一的公開 URL 分享履歷、以密碼加以保護,或下載成 PDF 直接分享,一切由您決定!"
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "您有未儲存的變更,這些變更將會遺失。" msgstr "您有未儲存的變更,這些變更將會遺失。"
+50
View File
@@ -895,6 +895,7 @@ msgstr ""
#: src/routes/dashboard/resumes/-components/menus/context-menu.tsx #: src/routes/dashboard/resumes/-components/menus/context-menu.tsx
#: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx #: src/routes/dashboard/resumes/-components/menus/dropdown-menu.tsx
#: src/routes/dashboard/settings/api-keys.tsx #: src/routes/dashboard/settings/api-keys.tsx
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@@ -1221,10 +1222,18 @@ msgstr ""
msgid "Failed to analyze resume." msgid "Failed to analyze resume."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to delete passkey. Please try again."
msgstr ""
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Failed to duplicate resume" msgid "Failed to duplicate resume"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Failed to register passkey. Please try again."
msgstr ""
#: src/dialogs/auth/enable-two-factor.tsx #: src/dialogs/auth/enable-two-factor.tsx
msgid "Failed to setup two-factor authentication." msgid "Failed to setup two-factor authentication."
msgstr "" msgstr ""
@@ -1745,6 +1754,10 @@ msgstr ""
msgid "Lost access to your authenticator?" msgid "Lost access to your authenticator?"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "MacBook Touch ID"
msgstr ""
#: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx #: src/routes/builder/$resumeId/-sidebar/right/sections/layout/pages.tsx
msgid "Main" msgid "Main"
msgstr "" msgstr ""
@@ -1809,6 +1822,10 @@ msgstr ""
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Name your passkey"
msgstr ""
#: src/utils/locale.ts #: src/utils/locale.ts
msgid "Nepali" msgid "Nepali"
msgstr "" msgstr ""
@@ -1862,6 +1879,10 @@ msgstr ""
msgid "No jobs found. Try a different search query." msgid "No jobs found. Try a different search query."
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "No passkeys registered yet."
msgstr ""
#: src/components/ui/combobox.tsx #: src/components/ui/combobox.tsx
msgid "No results found." msgid "No results found."
msgstr "" msgstr ""
@@ -1966,6 +1987,18 @@ msgstr ""
msgid "Part-time" msgid "Part-time"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey deleted successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkey registered successfully."
msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Passkeys"
msgstr ""
#: src/routes/_home/-sections/features.tsx #: src/routes/_home/-sections/features.tsx
msgid "Passkeys & 2FA" msgid "Passkeys & 2FA"
msgstr "" msgstr ""
@@ -2184,6 +2217,10 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Register New Device"
msgstr ""
#: src/routes/auth/forgot-password.tsx #: src/routes/auth/forgot-password.tsx
msgid "Remember your password? <0/>" msgid "Remember your password? <0/>"
msgstr "" msgstr ""
@@ -2312,6 +2349,10 @@ msgstr ""
msgid "Russian" msgid "Russian"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Save"
msgstr ""
#. placeholder {0}: selectedSkills.size #. placeholder {0}: selectedSkills.size
#: src/routes/dashboard/job-search/-components/tailor-dialog.tsx #: src/routes/dashboard/job-search/-components/tailor-dialog.tsx
msgid "Save {0} Skills" msgid "Save {0} Skills"
@@ -2489,6 +2530,7 @@ msgstr ""
msgid "Sign up" msgid "Sign up"
msgstr "" msgstr ""
#: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/-components/social-auth.tsx #: src/routes/auth/-components/social-auth.tsx
#: src/routes/auth/login.tsx #: src/routes/auth/login.tsx
@@ -2970,6 +3012,10 @@ msgstr ""
msgid "Unlock" msgid "Unlock"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "Unnamed passkey"
msgstr ""
#: src/routes/dashboard/settings/profile.tsx #: src/routes/dashboard/settings/profile.tsx
msgid "Unverified" msgid "Unverified"
msgstr "" msgstr ""
@@ -3199,6 +3245,10 @@ msgstr ""
msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!" msgid "You can share your resume via a unique public URL, protect it with a password, or download it as a PDF to share directly. The choice is yours!"
msgstr "" msgstr ""
#: src/routes/dashboard/settings/authentication/-components/passkeys.tsx
msgid "You can skip this and keep the default name."
msgstr ""
#: src/hooks/use-form-blocker.tsx #: src/hooks/use-form-blocker.tsx
msgid "You have unsaved changes that will be lost." msgid "You have unsaved changes that will be lost."
msgstr "" msgstr ""
+26 -25
View File
@@ -1,6 +1,6 @@
{ {
"name": "reactive-resume", "name": "reactive-resume",
"version": "5.0.17", "version": "5.0.18",
"description": "Reactive Resume is a free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.", "description": "Reactive Resume is a free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
"license": "MIT", "license": "MIT",
"author": { "author": {
@@ -22,8 +22,8 @@
"db:studio": "drizzle-kit studio", "db:studio": "drizzle-kit studio",
"dev": "vp dev", "dev": "vp dev",
"docs:dev": "cd docs && npx mint dev", "docs:dev": "cd docs && npx mint dev",
"fmt": "vp fmt --check", "format": "vp fmt --check",
"fmt:fix": "vp fmt", "format:fix": "vp fmt",
"knip": "knip", "knip": "knip",
"lingui:extract": "lingui extract --clean --overwrite", "lingui:extract": "lingui extract --clean --overwrite",
"lint": "vp lint --type-aware", "lint": "vp lint --type-aware",
@@ -35,15 +35,16 @@
"typecheck": "tsgo --noEmit" "typecheck": "tsgo --noEmit"
}, },
"dependencies": { "dependencies": {
"@ai-sdk/anthropic": "^3.0.68", "@ai-sdk/anthropic": "^3.0.69",
"@ai-sdk/google": "^3.0.60", "@ai-sdk/google": "^3.0.63",
"@ai-sdk/openai": "^3.0.52", "@ai-sdk/openai": "^3.0.52",
"@aws-sdk/client-s3": "^3.1027.0", "@aws-sdk/client-s3": "^3.1030.0",
"@base-ui/react": "^1.3.0", "@base-ui/react": "^1.4.0",
"@better-auth/api-key": "^1.6.1", "@better-auth/api-key": "^1.6.2",
"@better-auth/drizzle-adapter": "^1.6.1", "@better-auth/drizzle-adapter": "^1.6.2",
"@better-auth/infra": "^0.1.14", "@better-auth/infra": "^0.2.2",
"@better-auth/oauth-provider": "^1.6.1", "@better-auth/oauth-provider": "^1.6.2",
"@better-auth/passkey": "^1.6.2",
"@dnd-kit/core": "^6.3.1", "@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0", "@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2", "@dnd-kit/utilities": "^3.2.2",
@@ -63,10 +64,10 @@
"@phosphor-icons/web": "^2.1.2", "@phosphor-icons/web": "^2.1.2",
"@sindresorhus/slugify": "^3.0.0", "@sindresorhus/slugify": "^3.0.0",
"@t3-oss/env-core": "^0.13.11", "@t3-oss/env-core": "^0.13.11",
"@tanstack/react-query": "^5.97.0", "@tanstack/react-query": "^5.99.0",
"@tanstack/react-router": "^1.168.10", "@tanstack/react-router": "^1.168.21",
"@tanstack/react-router-ssr-query": "^1.166.10", "@tanstack/react-router-ssr-query": "^1.166.11",
"@tanstack/react-start": "^1.167.16", "@tanstack/react-start": "^1.167.39",
"@tanstack/zod-adapter": "^1.166.9", "@tanstack/zod-adapter": "^1.166.9",
"@tiptap/extension-highlight": "^3.22.3", "@tiptap/extension-highlight": "^3.22.3",
"@tiptap/extension-table": "^3.22.3", "@tiptap/extension-table": "^3.22.3",
@@ -76,15 +77,15 @@
"@tiptap/starter-kit": "^3.22.3", "@tiptap/starter-kit": "^3.22.3",
"@uiw/color-convert": "^2.10.1", "@uiw/color-convert": "^2.10.1",
"@uiw/react-color-colorful": "^2.10.1", "@uiw/react-color-colorful": "^2.10.1",
"ai": "^6.0.154", "ai": "^6.0.159",
"ai-sdk-ollama": "^3.8.3", "ai-sdk-ollama": "^3.8.3",
"bcrypt": "^6.0.0", "bcrypt": "^6.0.0",
"better-auth": "^1.6.1", "better-auth": "^1.6.2",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cmdk": "^1.1.1", "cmdk": "^1.1.1",
"docx": "^9.6.1", "docx": "^9.6.1",
"dompurify": "^3.3.3", "dompurify": "^3.4.0",
"drizzle-orm": "1.0.0-beta.21", "drizzle-orm": "1.0.0-beta.21",
"drizzle-zod": "1.0.0-beta.14-a36c63d", "drizzle-zod": "1.0.0-beta.14-a36c63d",
"es-toolkit": "^1.45.1", "es-toolkit": "^1.45.1",
@@ -104,7 +105,7 @@
"react-dom": "^19.2.5", "react-dom": "^19.2.5",
"react-hook-form": "^7.72.1", "react-hook-form": "^7.72.1",
"react-hotkeys-hook": "^5.2.4", "react-hotkeys-hook": "^5.2.4",
"react-resizable-panels": "^4.9.0", "react-resizable-panels": "^4.10.0",
"react-window": "^2.2.7", "react-window": "^2.2.7",
"react-zoom-pan-pinch": "^4.0.3", "react-zoom-pan-pinch": "^4.0.3",
"shadcn": "^4.2.0", "shadcn": "^4.2.0",
@@ -128,28 +129,28 @@
"@lingui/babel-plugin-lingui-macro": "^5.9.5", "@lingui/babel-plugin-lingui-macro": "^5.9.5",
"@lingui/cli": "^5.9.5", "@lingui/cli": "^5.9.5",
"@lingui/vite-plugin": "^5.9.5", "@lingui/vite-plugin": "^5.9.5",
"@rolldown/plugin-babel": "^0.2.2", "@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.2.2", "@tailwindcss/vite": "^4.2.2",
"@testing-library/react": "^16.3.2", "@testing-library/react": "^16.3.2",
"@types/bcrypt": "^6.0.0", "@types/bcrypt": "^6.0.0",
"@types/js-cookie": "^3.0.6", "@types/js-cookie": "^3.0.6",
"@types/node": "^25.5.2", "@types/node": "^25.6.0",
"@types/nodemailer": "^8.0.0", "@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0", "@types/pg": "^8.20.0",
"@types/react": "^19.2.14", "@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260409.1", "@typescript/native-preview": "7.0.0-dev.20260414.1",
"@vitejs/plugin-react": "^6.0.1", "@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4", "@vitest/coverage-v8": "^4.1.4",
"babel-plugin-macros": "^3.1.0", "babel-plugin-macros": "^3.1.0",
"drizzle-kit": "1.0.0-beta.21", "drizzle-kit": "1.0.0-beta.21",
"happy-dom": "^20.8.9", "happy-dom": "^20.9.0",
"jose": "^6.2.2", "jose": "^6.2.2",
"knip": "^6.3.1", "knip": "^6.4.1",
"nitro": "3.0.260311-beta", "nitro": "3.0.260311-beta",
"node-addon-api": "^8.7.0", "node-addon-api": "^8.7.0",
"node-gyp": "^12.2.0", "node-gyp": "^12.2.0",
"npm-check-updates": "^20.0.0", "npm-check-updates": "^20.0.2",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.16", "vite": "npm:@voidzero-dev/vite-plus-core@^0.1.16",
"vite-plugin-pwa": "^1.2.0", "vite-plugin-pwa": "^1.2.0",
"vite-plus": "latest", "vite-plus": "latest",
+1732 -551
View File
File diff suppressed because it is too large Load Diff
+2
View File
@@ -2,6 +2,7 @@ import { apiKeyClient } from "@better-auth/api-key/client";
import { dashClient } from "@better-auth/infra/client"; import { dashClient } from "@better-auth/infra/client";
import { oauthProviderClient } from "@better-auth/oauth-provider/client"; import { oauthProviderClient } from "@better-auth/oauth-provider/client";
import { oauthProviderResourceClient } from "@better-auth/oauth-provider/resource-client"; import { oauthProviderResourceClient } from "@better-auth/oauth-provider/resource-client";
import { passkeyClient } from "@better-auth/passkey/client";
import { import {
adminClient, adminClient,
genericOAuthClient, genericOAuthClient,
@@ -19,6 +20,7 @@ const getAuthClient = () => {
dashClient(), dashClient(),
adminClient(), adminClient(),
apiKeyClient(), apiKeyClient(),
passkeyClient(),
usernameClient(), usernameClient(),
twoFactorClient({ twoFactorClient({
onTwoFactorRedirect() { onTwoFactorRedirect() {
+2
View File
@@ -4,6 +4,7 @@ import { apiKey } from "@better-auth/api-key";
import { drizzleAdapter } from "@better-auth/drizzle-adapter"; import { drizzleAdapter } from "@better-auth/drizzle-adapter";
import { dash } from "@better-auth/infra"; import { dash } from "@better-auth/infra";
import { oauthProvider } from "@better-auth/oauth-provider"; import { oauthProvider } from "@better-auth/oauth-provider";
import { passkey } from "@better-auth/passkey";
import { BetterAuthError, betterAuth } from "better-auth"; import { BetterAuthError, betterAuth } from "better-auth";
import { verifyAccessToken } from "better-auth/oauth2"; import { verifyAccessToken } from "better-auth/oauth2";
import { admin, jwt, openAPI, type GenericOAuthConfig } from "better-auth/plugins"; import { admin, jwt, openAPI, type GenericOAuthConfig } from "better-auth/plugins";
@@ -341,6 +342,7 @@ const getAuthConfig = () => {
jwt(), jwt(),
admin(), admin(),
openAPI(), openAPI(),
passkey(),
genericOAuth({ config: authConfigs }), genericOAuth({ config: authConfigs }),
twoFactor({ issuer: "Reactive Resume" }), twoFactor({ issuer: "Reactive Resume" }),
apiKey({ enableSessionForAPIKeys: true, rateLimit: { enabled: false } }), apiKey({ enableSessionForAPIKeys: true, rateLimit: { enabled: false } }),
+1 -1
View File
@@ -7,6 +7,6 @@ export type AuthSession = {
user: typeof auth.$Infer.Session.user; user: typeof auth.$Infer.Session.user;
}; };
const authProviderSchema = z.enum(["credential", "google", "github", "linkedin", "custom"]); const authProviderSchema = z.enum(["credential", "passkey", "google", "github", "linkedin", "custom"]);
export type AuthProvider = z.infer<typeof authProviderSchema>; export type AuthProvider = z.infer<typeof authProviderSchema>;
+1 -1
View File
@@ -13,7 +13,7 @@ export type ProviderList = Partial<Record<AuthProvider, string>>;
const providers = { const providers = {
list: (): ProviderList => { list: (): ProviderList => {
const providers: ProviderList = { credential: "Password" }; const providers: ProviderList = { credential: "Password", passkey: "Passkey" };
if (env.GOOGLE_CLIENT_ID && env.GOOGLE_CLIENT_SECRET) providers.google = "Google"; if (env.GOOGLE_CLIENT_ID && env.GOOGLE_CLIENT_SECRET) providers.google = "Google";
if (env.GITHUB_CLIENT_ID && env.GITHUB_CLIENT_SECRET) providers.github = "GitHub"; if (env.GITHUB_CLIENT_ID && env.GITHUB_CLIENT_SECRET) providers.github = "GitHub";
+36 -1
View File
@@ -1,8 +1,9 @@
import { t } from "@lingui/core/macro"; import { t } from "@lingui/core/macro";
import { Trans } from "@lingui/react/macro"; import { Trans } from "@lingui/react/macro";
import { GithubLogoIcon, GoogleLogoIcon, LinkedinLogoIcon, VaultIcon } from "@phosphor-icons/react"; import { FingerprintIcon, GithubLogoIcon, GoogleLogoIcon, LinkedinLogoIcon, VaultIcon } from "@phosphor-icons/react";
import { useQuery } from "@tanstack/react-query"; import { useQuery } from "@tanstack/react-query";
import { useRouter } from "@tanstack/react-router"; import { useRouter } from "@tanstack/react-router";
import { useEffect } from "react";
import { toast } from "sonner"; import { toast } from "sonner";
import type { RouterOutput } from "@/integrations/orpc/client"; import type { RouterOutput } from "@/integrations/orpc/client";
@@ -85,6 +86,31 @@ function SocialAuthButtons({ providers }: SocialAuthButtonsProps) {
await router.invalidate(); await router.invalidate();
}; };
const handlePasskeyLogin = async () => {
const toastId = toast.loading(t`Signing in...`);
const { error } = await authClient.signIn.passkey({ autoFill: false });
if (error) {
toast.error(error.message, { id: toastId });
return;
}
toast.dismiss(toastId);
await router.invalidate();
};
useEffect(() => {
if (typeof window === "undefined") return;
if (!("PublicKeyCredential" in window)) return;
if (!PublicKeyCredential.isConditionalMediationAvailable) return;
void PublicKeyCredential.isConditionalMediationAvailable().then((isAvailable) => {
if (!isAvailable) return;
void authClient.signIn.passkey({ autoFill: true });
});
}, []);
return ( return (
<div className="grid grid-cols-2 gap-4"> <div className="grid grid-cols-2 gap-4">
<Button <Button
@@ -96,6 +122,15 @@ function SocialAuthButtons({ providers }: SocialAuthButtonsProps) {
{providers.custom} {providers.custom}
</Button> </Button>
<Button
variant="secondary"
onClick={handlePasskeyLogin}
className={cn("hidden", "passkey" in providers && "inline-flex")}
>
<FingerprintIcon />
Passkey
</Button>
<Button <Button
onClick={() => handleSocialLogin("google")} onClick={() => handleSocialLogin("google")}
className={cn( className={cn(
@@ -1,7 +1,14 @@
import type { ReactNode } from "react"; import type { ReactNode } from "react";
import { t } from "@lingui/core/macro"; import { t } from "@lingui/core/macro";
import { GithubLogoIcon, GoogleLogoIcon, LinkedinLogoIcon, PasswordIcon, VaultIcon } from "@phosphor-icons/react"; import {
FingerprintIcon,
GithubLogoIcon,
GoogleLogoIcon,
LinkedinLogoIcon,
PasswordIcon,
VaultIcon,
} from "@phosphor-icons/react";
import { useQuery } from "@tanstack/react-query"; import { useQuery } from "@tanstack/react-query";
import { useCallback } from "react"; import { useCallback } from "react";
import { toast } from "sonner"; import { toast } from "sonner";
@@ -18,6 +25,7 @@ import { orpc } from "@/integrations/orpc/client";
export function getProviderName(providerId: AuthProvider): string { export function getProviderName(providerId: AuthProvider): string {
return match(providerId) return match(providerId)
.with("credential", () => "Password") .with("credential", () => "Password")
.with("passkey", () => "Passkey")
.with("google", () => "Google") .with("google", () => "Google")
.with("github", () => "GitHub") .with("github", () => "GitHub")
.with("linkedin", () => "LinkedIn") .with("linkedin", () => "LinkedIn")
@@ -31,6 +39,7 @@ export function getProviderName(providerId: AuthProvider): string {
export function getProviderIcon(providerId: AuthProvider): ReactNode { export function getProviderIcon(providerId: AuthProvider): ReactNode {
return match(providerId) return match(providerId)
.with("credential", () => <PasswordIcon />) .with("credential", () => <PasswordIcon />)
.with("passkey", () => <FingerprintIcon />)
.with("google", () => <GoogleLogoIcon />) .with("google", () => <GoogleLogoIcon />)
.with("github", () => <GithubLogoIcon />) .with("github", () => <GithubLogoIcon />)
.with("linkedin", () => <LinkedinLogoIcon />) .with("linkedin", () => <LinkedinLogoIcon />)
@@ -0,0 +1,146 @@
import { t } from "@lingui/core/macro";
import { Trans } from "@lingui/react/macro";
import { KeyIcon, PlusIcon, TrashIcon } from "@phosphor-icons/react";
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import { motion } from "motion/react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
import { Separator } from "@/components/ui/separator";
import { usePrompt } from "@/hooks/use-prompt";
import { authClient } from "@/integrations/auth/client";
export function PasskeysSection() {
const queryClient = useQueryClient();
const prompt = usePrompt();
const { data: passkeys = [] } = useQuery({
queryKey: ["auth", "passkeys"],
queryFn: () => authClient.passkey.listUserPasskeys(),
select: ({ data }) => data ?? [],
});
const registerPasskeyMutation = useMutation({
mutationFn: async () => {
return await authClient.passkey.addPasskey();
},
onSuccess: async ({ data, error }) => {
if (error) {
toast.error(error.message);
return;
}
toast.success(t`Passkey registered successfully.`);
await queryClient.invalidateQueries({ queryKey: ["auth", "passkeys"] });
const name = await prompt(t`Name your passkey`, {
description: t`You can skip this and keep the default name.`,
defaultValue: "",
confirmText: t`Save`,
inputProps: { placeholder: t`MacBook Touch ID` },
});
if (name === null) return;
const passkeyId = typeof data?.id === "string" ? data.id : null;
const passkeyName = name.trim();
if (!passkeyId || passkeyName.length === 0) return;
const { error: renameError } = await authClient.passkey.updatePasskey({ id: passkeyId, name: passkeyName });
if (renameError) {
toast.error(renameError.message);
return;
}
await queryClient.invalidateQueries({ queryKey: ["auth", "passkeys"] });
},
onError: () => {
toast.error(t`Failed to register passkey. Please try again.`);
},
});
const deletePasskeyMutation = useMutation({
mutationFn: async (id: string) => {
return await authClient.passkey.deletePasskey({ id });
},
onSuccess: async ({ error }) => {
if (error) {
toast.error(error.message);
return;
}
toast.success(t`Passkey deleted successfully.`);
await queryClient.invalidateQueries({ queryKey: ["auth", "passkeys"] });
},
onError: () => {
toast.error(t`Failed to delete passkey. Please try again.`);
},
});
const handleRegisterPasskey = () => {
if (registerPasskeyMutation.isPending) return;
registerPasskeyMutation.mutate();
};
const handleDeletePasskey = (id: string) => {
if (deletePasskeyMutation.isPending) return;
deletePasskeyMutation.mutate(id);
};
return (
<motion.div
initial={{ opacity: 0, y: -20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.2, delay: 0.3, ease: "easeOut" }}
className="will-change-[transform,opacity]"
>
<Separator />
<div className="mt-4 grid gap-3">
<div className="flex flex-wrap items-center justify-between gap-3">
<h2 className="flex items-center gap-x-3 text-base font-medium">
<KeyIcon />
<Trans>Passkeys</Trans>
</h2>
<Button variant="outline" onClick={handleRegisterPasskey} disabled={registerPasskeyMutation.isPending}>
<PlusIcon />
<Trans>Register New Device</Trans>
</Button>
</div>
{passkeys.length === 0 && (
<p className="text-sm text-muted-foreground">
<Trans>No passkeys registered yet.</Trans>
</p>
)}
{passkeys.length > 0 && (
<div className="grid gap-2">
{passkeys.map((passkey) => {
return (
<div
key={passkey.id}
className="flex flex-wrap items-center justify-between gap-2 rounded-md border bg-muted/40 px-3 py-2"
>
<p className="truncate text-sm font-medium">{passkey.name ?? t`Unnamed passkey`}</p>
<div className="flex items-center gap-2">
<Button
variant="destructive"
size="sm"
onClick={() => handleDeletePasskey(passkey.id)}
disabled={deletePasskeyMutation.isPending}
>
<TrashIcon />
<Trans>Delete</Trans>
</Button>
</div>
</div>
);
})}
</div>
)}
</div>
</motion.div>
);
}
@@ -7,6 +7,7 @@ import { Separator } from "@/components/ui/separator";
import { DashboardHeader } from "../../-components/header"; import { DashboardHeader } from "../../-components/header";
import { useEnabledProviders } from "./-components/hooks"; import { useEnabledProviders } from "./-components/hooks";
import { PasskeysSection } from "./-components/passkeys";
import { PasswordSection } from "./-components/password"; import { PasswordSection } from "./-components/password";
import { SocialProviderSection } from "./-components/social-provider"; import { SocialProviderSection } from "./-components/social-provider";
import { TwoFactorSection } from "./-components/two-factor"; import { TwoFactorSection } from "./-components/two-factor";
@@ -34,12 +35,7 @@ function RouteComponent() {
<TwoFactorSection /> <TwoFactorSection />
{/* <PasskeysSection />
Passkeys are temporarily disabled due to an upstream issue with the authentication provider.
See https://github.com/better-auth/better-auth/issues/7463 for more details.
<PasskeysSection />
*/}
{"google" in enabledProviders && <SocialProviderSection provider="google" animationDelay={0.4} />} {"google" in enabledProviders && <SocialProviderSection provider="google" animationDelay={0.4} />}
+13 -1
View File
@@ -28,7 +28,19 @@ if (!isVitest) {
plugins.push( plugins.push(
lingui(), lingui(),
tailwindcss(), tailwindcss(),
nitro({ plugins: ["plugins/1.migrate.ts"] }), nitro({
plugins: ["plugins/1.migrate.ts"],
rolldownConfig: {
treeshake: {
moduleSideEffects: (id) => {
if (id.includes("unenv/polyfill/")) return true;
if (id.includes("reflect-metadata/Reflect")) return true;
if (id.includes("node-fetch-native/polyfill")) return true;
return false;
},
},
},
}),
babel({ plugins: ["@lingui/babel-plugin-lingui-macro"] }), babel({ plugins: ["@lingui/babel-plugin-lingui-macro"] }),
VitePWA({ VitePWA({
outDir: "public", outDir: "public",