diff --git a/.eslintrc.json b/.eslintrc.json index dac8cb29..67f3211c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,6 +9,7 @@ "plugins": ["simple-import-sort", "unused-imports"], "rules": { // eslint + "no-console": "error", "no-return-await": "off", // simple-import-sort diff --git a/.github/workflows/lint-test-build.yml b/.github/workflows/lint-test-build.yml index e8850f06..4aa894a4 100644 --- a/.github/workflows/lint-test-build.yml +++ b/.github/workflows/lint-test-build.yml @@ -19,33 +19,30 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.2.2 with: fetch-depth: 2 - name: Setup pnpm - uses: pnpm/action-setup@v3.0.0 + uses: pnpm/action-setup@v4.0.0 - name: Setup Node.js - uses: actions/setup-node@v4.0.2 + uses: actions/setup-node@v4.1.0 with: cache: "pnpm" - node-version: 20.17.0 + node-version: 22 - name: Install Dependencies run: pnpm install --frozen-lockfile - name: Lint - run: pnpm lint + run: pnpm run lint - name: Format - run: pnpm format:check + run: pnpm run format:check - name: Test - run: pnpm test + run: pnpm run test - name: Build - run: pnpm build - env: - NODE_ENV: production - NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} + run: pnpm run build diff --git a/.github/workflows/publish-docker-image.yml b/.github/workflows/publish-docker-image.yml index ed61c5ca..338aba8f 100644 --- a/.github/workflows/publish-docker-image.yml +++ b/.github/workflows/publish-docker-image.yml @@ -152,7 +152,11 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - - uses: sarisia/actions-status-discord@v1.14.3 + - name: Deploy the latest image on rxresu.me + run: curl -X POST ${{ secrets.SERVICE_WEBHOOK }} + + - name: Inform about the release on Discord + uses: sarisia/actions-status-discord@v1.14.3 if: always() with: username: ReleaseBot diff --git a/.gitignore b/.gitignore index ecfccf7a..09cd1b79 100644 --- a/.gitignore +++ b/.gitignore @@ -49,4 +49,4 @@ stats.html # Lingui Compiled Messages apps/client/src/locales/_build/ -apps/client/src/locales/*/messages.mjs +apps/client/src/locales/*/messages.*js diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 6a302fe5..1b301e19 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,8 +1,3 @@ { - "recommendations": [ - "nrwl.angular-console", - "esbenp.prettier-vscode", - "dbaeumer.vscode-eslint", - "firsttris.vscode-jest-runner" - ] + "recommendations": ["nrwl.angular-console", "esbenp.prettier-vscode", "dbaeumer.vscode-eslint"] } diff --git a/README.md b/README.md index f1f22974..26621a92 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Start creating your standout resume with Reactive Resume today! - **Bring your own OpenAI API key** and unlock features such as improving your writing, fixing spelling and grammar or changing the tone of your text in one-click - Translate your resume into any language using ChatGPT and import it back for easier editing - Create single page resumes or a resume that spans multiple pages easily -- Customize the colours and layouts to add a personal touch to your resume. +- Customize the colours and layouts to add a personal touch to your resume - Customise your page layout as you like just by dragging-and-dropping sections - Create custom sections that are specific to your industry if the existing ones don't fit - Jot down personal notes specific to your resume that's only visible to you diff --git a/apps/artboard/index.html b/apps/artboard/index.html index e4b13a8d..2705af91 100644 --- a/apps/artboard/index.html +++ b/apps/artboard/index.html @@ -40,5 +40,12 @@ + + + diff --git a/apps/artboard/src/components/brand-icon.tsx b/apps/artboard/src/components/brand-icon.tsx new file mode 100644 index 00000000..abf9a5df --- /dev/null +++ b/apps/artboard/src/components/brand-icon.tsx @@ -0,0 +1,19 @@ +import { cn } from "@reactive-resume/utils"; + +type BrandIconProps = { + slug: string; +}; + +export const BrandIcon = ({ slug }: BrandIconProps) => { + if (slug === "linkedin") { + return ( + LinkedIn + ); + } + + return ; +}; diff --git a/apps/artboard/src/templates/azurill.tsx b/apps/artboard/src/templates/azurill.tsx index 0ead0536..241ed840 100644 --- a/apps/artboard/src/templates/azurill.tsx +++ b/apps/artboard/src/templates/azurill.tsx @@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl, linearTransform } from "@reactive-resume/util import get from "lodash.get"; import React, { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -247,26 +248,13 @@ const Section = ({ const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/bronzor.tsx b/apps/artboard/src/templates/bronzor.tsx index 8dff0a2f..6a6739f0 100644 --- a/apps/artboard/src/templates/bronzor.tsx +++ b/apps/artboard/src/templates/bronzor.tsx @@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -224,26 +225,13 @@ const Section = ({ const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/chikorita.tsx b/apps/artboard/src/templates/chikorita.tsx index cd30b0e4..13e3ce28 100644 --- a/apps/artboard/src/templates/chikorita.tsx +++ b/apps/artboard/src/templates/chikorita.tsx @@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -280,26 +281,13 @@ const Education = () => { const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/ditto.tsx b/apps/artboard/src/templates/ditto.tsx index c0b81da4..ec33c9ca 100644 --- a/apps/artboard/src/templates/ditto.tsx +++ b/apps/artboard/src/templates/ditto.tsx @@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -251,26 +252,13 @@ const Section = ({ const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/gengar.tsx b/apps/artboard/src/templates/gengar.tsx index 44d5eb57..c0efdfdc 100644 --- a/apps/artboard/src/templates/gengar.tsx +++ b/apps/artboard/src/templates/gengar.tsx @@ -21,6 +21,7 @@ import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -226,26 +227,13 @@ const Section = ({ const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/glalie.tsx b/apps/artboard/src/templates/glalie.tsx index ff7e61e3..43d75906 100644 --- a/apps/artboard/src/templates/glalie.tsx +++ b/apps/artboard/src/templates/glalie.tsx @@ -21,6 +21,7 @@ import { cn, hexToRgb, isEmptyString, isUrl, linearTransform } from "@reactive-r import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -287,26 +288,13 @@ const Education = () => { const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/kakuna.tsx b/apps/artboard/src/templates/kakuna.tsx index fdff6e54..27e5dc61 100644 --- a/apps/artboard/src/templates/kakuna.tsx +++ b/apps/artboard/src/templates/kakuna.tsx @@ -20,6 +20,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import React, { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -27,7 +28,6 @@ import { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); const profiles = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return (
@@ -61,7 +61,9 @@ const Header = () => {
)} + + {basics.customFields.map((item) => (
@@ -86,15 +88,7 @@ const Header = () => { url={item.url} label={item.username} className="text-sm" - icon={ - {item.network} - } + icon={} />
))} diff --git a/apps/artboard/src/templates/leafish.tsx b/apps/artboard/src/templates/leafish.tsx index c6b12f97..0c479746 100644 --- a/apps/artboard/src/templates/leafish.tsx +++ b/apps/artboard/src/templates/leafish.tsx @@ -20,6 +20,7 @@ import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import React, { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -29,7 +30,6 @@ const Header = () => { const section = useArtboardStore((state) => state.resume.sections.summary); const profiles = useArtboardStore((state) => state.resume.sections.profiles); const primaryColor = useArtboardStore((state) => state.resume.metadata.theme.primary); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return (
@@ -102,15 +102,7 @@ const Header = () => { url={item.url} label={item.username} className="text-sm" - icon={ - {item.network} - } + icon={} />
))} diff --git a/apps/artboard/src/templates/nosepass.tsx b/apps/artboard/src/templates/nosepass.tsx index 6ac30adf..ccae30a7 100644 --- a/apps/artboard/src/templates/nosepass.tsx +++ b/apps/artboard/src/templates/nosepass.tsx @@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -271,26 +272,13 @@ const Section = ({ const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/onyx.tsx b/apps/artboard/src/templates/onyx.tsx index 34bfb614..f47fe112 100644 --- a/apps/artboard/src/templates/onyx.tsx +++ b/apps/artboard/src/templates/onyx.tsx @@ -20,6 +20,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import React, { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -27,7 +28,6 @@ import { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); const profiles = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return (
@@ -91,15 +91,7 @@ const Header = () => { url={item.url} label={item.username} className="text-sm" - icon={ - {item.network} - } + icon={} />
))} diff --git a/apps/artboard/src/templates/pikachu.tsx b/apps/artboard/src/templates/pikachu.tsx index 4cbe61c3..3e685f04 100644 --- a/apps/artboard/src/templates/pikachu.tsx +++ b/apps/artboard/src/templates/pikachu.tsx @@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -257,26 +258,13 @@ const Section = ({ const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/artboard/src/templates/rhyhorn.tsx b/apps/artboard/src/templates/rhyhorn.tsx index 5c41a4c7..416b8de6 100644 --- a/apps/artboard/src/templates/rhyhorn.tsx +++ b/apps/artboard/src/templates/rhyhorn.tsx @@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; +import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; import { TemplateProps } from "../types/template"; @@ -223,26 +224,13 @@ const Section = ({ const Profiles = () => { const section = useArtboardStore((state) => state.resume.sections.profiles); - const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size); return ( section={section}> {(item) => (
{isUrl(item.url.href) ? ( - - } - /> + } /> ) : (

{item.username}

)} diff --git a/apps/client/.eslintrc.json b/apps/client/.eslintrc.json index ed14e1ac..c344dfbd 100644 --- a/apps/client/.eslintrc.json +++ b/apps/client/.eslintrc.json @@ -12,7 +12,7 @@ "tailwindcss": { "callees": ["cn", "clsx", "cva"], "config": "tailwind.config.js", - "whitelist": ["ph", "ph-"] + "whitelist": ["ph", "ph\\-.*", "si", "si\\-.*"] } }, "plugins": ["lingui"], diff --git a/apps/client/index.html b/apps/client/index.html index bdfca8c4..db5e38b6 100644 --- a/apps/client/index.html +++ b/apps/client/index.html @@ -43,5 +43,12 @@ + + + diff --git a/apps/client/public/support-logos/linkedin.svg b/apps/client/public/support-logos/linkedin.svg new file mode 100644 index 00000000..4c6ba4ee --- /dev/null +++ b/apps/client/public/support-logos/linkedin.svg @@ -0,0 +1,8 @@ + + + + LinkedIn + + diff --git a/apps/client/src/components/brand-icon.tsx b/apps/client/src/components/brand-icon.tsx new file mode 100644 index 00000000..dc336b36 --- /dev/null +++ b/apps/client/src/components/brand-icon.tsx @@ -0,0 +1,19 @@ +import { cn } from "@reactive-resume/utils"; + +type BrandIconProps = { + slug: string; +}; + +export const BrandIcon = ({ slug }: BrandIconProps) => { + if (slug === "linkedin") { + return ( + LinkedIn + ); + } + + return ; +}; diff --git a/apps/client/src/constants/llm.ts b/apps/client/src/constants/llm.ts index ee5bd027..b713400a 100644 --- a/apps/client/src/constants/llm.ts +++ b/apps/client/src/constants/llm.ts @@ -1,2 +1,2 @@ export const DEFAULT_MODEL = "gpt-3.5-turbo"; -export const DEFAULT_MAX_TOKENS = 1024 \ No newline at end of file +export const DEFAULT_MAX_TOKENS = 1024; diff --git a/apps/client/src/libs/lingui.ts b/apps/client/src/libs/lingui.ts index ccddc174..bc445292 100644 --- a/apps/client/src/libs/lingui.ts +++ b/apps/client/src/libs/lingui.ts @@ -17,7 +17,8 @@ export async function dynamicActivate(locale: string) { if (dayjsLocales[locale]) { dayjs.locale(await dayjsLocales[locale]()); } - } catch (error) { - console.error(error); + } catch { + // eslint-disable-next-line lingui/no-unlocalized-strings + throw new Error(`Failed to load messages for locale: ${locale}`); } } diff --git a/apps/client/src/locales/af-ZA/messages.po b/apps/client/src/locales/af-ZA/messages.po index 30d0b4b0..d4cea5b2 100644 --- a/apps/client/src/locales/af-ZA/messages.po +++ b/apps/client/src/locales/af-ZA/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: af\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/am-ET/messages.po b/apps/client/src/locales/am-ET/messages.po index 1d3d8b86..74f63b2e 100644 --- a/apps/client/src/locales/am-ET/messages.po +++ b/apps/client/src/locales/am-ET/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: am\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Amharic\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/ar-SA/messages.po b/apps/client/src/locales/ar-SA/messages.po index 93b79002..1add4517 100644 --- a/apps/client/src/locales/ar-SA/messages.po +++ b/apps/client/src/locales/ar-SA/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ar\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -38,7 +38,7 @@ msgstr "<0>قمت ببناء مستأنف تفاعلي في الغالب بنف msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>أنا متأكد من أن التطبيق ليس مثالياً، لكنني أود أن يكون كذلك. /0><1>إذا واجهت أي مشاكل أثناء إنشاء مستأنفتك ، أو لديها فكرة من شأنها أن تساعدك والمستخدمين الآخرين في إنشاء استئنافك بسهولة أكبر، أسقط مشكلة على المستودع أو أرسل لي رسالة بريد إلكتروني عن ذلك. /1>" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>ملاحظة: ، باستخدام API OpenAI ، فإنك تقر وتقبل شروط الاستخدام <1> و<2>سياسة الخصوصية التي أوجزها OpenAI. يرجى ملاحظة أن الاستئناف التفاعلي لا يتحمل أي مسؤولية عن أي استخدام غير سليم أو غير مأذون به للخدمة، ويقع أي انعكاسات أو التزامات ناجمة عن ذلك على عاتق المستعمل وحده." @@ -98,12 +98,12 @@ msgstr "يقبل الملفات {accept} فقط" msgid "Account" msgstr "حساب" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "أضافه حقل مخصص" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "إضافة عنصر جديد" @@ -146,7 +146,7 @@ msgstr "يمكن لأي شخص لديه الرابط عرض السيرة الذ msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "يمكن لأي شخص لديه هذا الرابط مشاهدة وتنزيل السيرة الذاتية. شاركها على ملفك الشخصي أو مع مسؤولي التوظيف." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "هل أنت متأكد من أنك تريد حذف هذا العنصر؟" @@ -205,9 +205,9 @@ msgstr "رمز النسخ الاحتياطي" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "قد تحتوي رموز النسخ الاحتياطي على أحرف أو أرقام صغيرة فقط، ويجب أن تكون بالضبط 10 أحرف." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "الرابط الأساسي" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "بنيت باستخدام" msgid "By the community, for the community." msgstr "من قبل المجتمع، من أجل المجتمع." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "تأكيد كلمة المرور الجديدة" msgid "Continue" msgstr "استمر" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "نسخ" @@ -318,7 +318,7 @@ msgstr "انسخ الرابط للسيرة الذاتية" msgid "Copy to Clipboard" msgstr "نسخ إلى الحافظة" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "إنشاء" @@ -328,7 +328,7 @@ msgstr "إنشاء" msgid "Create a new account" msgstr "إنشاء حساب جديد" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "إنشاء عنصر جديد" @@ -385,9 +385,9 @@ msgstr "التاريخ" msgid "Date or Date Range" msgstr "التاريخ أو النطاق الزمني" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "تنزيل PDF" msgid "Downloads" msgstr "التنزيلات" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "استنسخ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "استنسخ عنصرًا موجودًا" @@ -478,7 +478,7 @@ msgstr "استنسخ عنصرًا موجودًا" msgid "Duplicate an existing resume" msgstr "استنسخ سيرة ذاتية موجودة" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "عدّل" @@ -575,7 +575,7 @@ msgstr "متغير الخط" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "فعلى سبيل المثال، يمكن الإشارة هنا إلى المعلومات المتعلقة بالشركات التي أرسلتها لاستئناف العمل أو الروابط مع توصيفات الوظائف." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "نسيان" @@ -658,8 +658,8 @@ msgstr "هنا، يمكنك تحديث معلومات حسابك مثل صورة msgid "Here, you can update your profile to customize and personalize your experience." msgstr "هنا، يمكنك تحديث ملفك التعريفي لتخصيص تجربتك وإضافة طابعك الشخصي عليها." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "مخفي" @@ -690,7 +690,7 @@ msgstr "استضف سيرتك الذاتية علناً" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "أحب دائما أن أسمع من مستخدمي Reactive Resume بتعليقات أو دعم. إليك بعض الرسائل التي تلقيتها. إذا كان لديك أي ملاحظات، لا تتردد في أن ترسل لي رسالة بريد إلكتروني على <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "الأيقونة" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "الكلمات المفتاحية" @@ -809,7 +809,7 @@ msgstr "وسم" msgid "Language" msgstr "اللّغة" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "آخر تحديث {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "الموقع" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "مارس 2023 - حتى الآن" msgid "Margin" msgstr "هامش" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "الحد الأقصى للرموز" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "رخصة MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "الموديل" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "الاسم" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "الاسم" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "الشبكة" @@ -969,10 +969,6 @@ msgstr "ملاحظة: هذا سيجعل حسابك أقل أمانًا." msgid "Notes" msgstr "ملاحظات" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "كلمة السر لمرة واحدة OTP" @@ -984,7 +980,7 @@ msgstr "كلمة السر لمرة واحدة OTP" msgid "Oops, the server returned an error." msgstr "عذرًا، أرجع الخادم خطأ." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "افتح" msgid "Open Source" msgstr "مفتوح المصدر" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "لم يُرجع OpenAI أي اختيارات للنص الخاص بك." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "تكامل مع OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "الموضع" msgid "Powered by" msgstr "مدعوم من قبل" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "مدعوم من <0>أيس بسيط" @@ -1167,7 +1166,7 @@ msgstr "إعادة التفاعل تزدهر بفضل مجتمعها النشط. msgid "Redo" msgstr "إعادة" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "إزالة" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "إزالة الصفحة" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "غني بالميزات وليس بالسعر." msgid "Rounded" msgstr "مدوّر" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "حفظ التّغييرات" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "الحفظ في الجهاز (محلياً)" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "تم الحفظ" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1284,7 +1283,7 @@ msgstr "أرسل لي رسالة" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "روابط منفصلة" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1351,7 +1350,7 @@ msgstr "تسجيل الدخول" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "تسجيل الدخول عبر البريد الإلكتروني معطل حالياً من قبل المسؤول." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "الشهادات" msgid "Text Color" msgstr "لون النص" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "هذا لا يبدو وكأنه مفتاح API OpenAI صالح." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "كلمات المرور التي أدخلتها غير متطابقة." @@ -1475,7 +1466,7 @@ msgstr "السمة" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "حدث خطأ أثناء الاتصال بالمتصفح. الرجاء التأكد من أن 'chrome' يعمل ويمكن الوصول إليه." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "يمكن عكس هذا الإجراء بالنقر على زر التراجع في شريط الأدوات العائم." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "التراجع" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "فتح استئناف سيسمح لك بإجراء تغييرات علي msgid "Unverified" msgstr "لم يتم التحقق" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "تحديث عنصر موجود" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "المستخدم ليس لديه سجل 'أسرار' مرتبط به. الرجاء الإبلاغ عن هذه المشكلة في GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "اسم المستخدم" @@ -1618,7 +1609,7 @@ msgstr "Validate" msgid "Validated" msgstr "تم المصادقة" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "القيمة" @@ -1643,10 +1634,14 @@ msgstr "الإصدار 4" msgid "Views" msgstr "المشاهدات" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "مرئي" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "نحن نقوم بالتحقق من عنوان البريد الإلكتروني الخاص بك فقط للتأكد من أننا يمكن أن نرسل لك رابط إعادة تعيين كلمة المرور في حالة نسيانك كلمة المرور." @@ -1656,7 +1651,7 @@ msgstr "نحن نقوم بالتحقق من عنوان البريد الإلكت #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "الموقع" msgid "What's new in the latest version" msgstr "ما هو الجديد في أحدث إصدار" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق فصلها بفاصلة أو الضغط على إدخال." @@ -1680,11 +1675,11 @@ msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق ف msgid "You can also enter your username." msgstr "يمكنك أيضًا إدخال اسم المستخدم الخاص بك." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI لمساعدتك في إنشاء المحتوى، أو تحسين الكتابة الخاصة بك أثناء تشكيل استعادتك." @@ -1692,7 +1687,7 @@ msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI ل msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "يمكنك تتبع عدد المشاهدات التي استلمتها في الاستئناف الخاص بك، أو كم عدد الأشخاص الذين قاموا بتنزيل الاستكمال عن طريق تمكين المشاركة العامة." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "لديك خيار <0>الحصول على مفتاح API OpenAI الخاص بك . هذا المفتاح يمكّنك من استخدام API كما تراه مناسباً. بدلاً من ذلك، إذا كنت ترغب في تعطيل ميزات الذكاء الاصطناعي في الاستئناف التفاعلي تماماً، يمكنك ببساطة إزالة المفتاح من الإعدادات الخاصة بك." @@ -1709,7 +1704,7 @@ msgstr "لديك بريد!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "تم حذف حسابك وجميع بياناتك بنجاح. جيد!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "يتم تخزين مفتاح API الخاص بك بشكل آمن في التخزين المحلي للمتصفح ويتم استخدامه فقط عند تقديم طلبات إلى OpenAI عن طريق SDK الرسمية الخاصة بهم. تأكد من أن المفتاح الخاص بك لا يتم إرساله إلى أي خادم خارجي إلا عند التفاعل مع خدمات OpenAI." @@ -1732,3 +1727,4 @@ msgstr "تكبير في" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "تكبير خارج" + diff --git a/apps/client/src/locales/bg-BG/messages.po b/apps/client/src/locales/bg-BG/messages.po index c830f4ea..43d3fa4a 100644 --- a/apps/client/src/locales/bg-BG/messages.po +++ b/apps/client/src/locales/bg-BG/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bg\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Създадох Reactive Resume предимно сам през с msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Сигурен съм, че приложението не е съвършено, но бих искал да бъде.<1>Ако сте се сблъскали с някакви проблеми при създаването на автобиографията си или имате идея, която би помогнала на вас и на други потребители да създадете по-лесно автобиографията си, напишете въпрос в хранилището или ми изпратете имейл за това." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Забележка: Използвайки API на OpenAI, вие потвърждавате и приемате <1>условията за използване и <2>политиката за поверителност, описани от OpenAI. Моля, обърнете внимание, че Reactive Resume не носи отговорност за неправилно или неразрешено използване на услугата и всички произтичащи от това последствия или отговорности са единствено за сметка на потребителя." @@ -98,12 +98,12 @@ msgstr "Приема само файлове {accept}" msgid "Account" msgstr "Сметка" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Добавяне на потребителско поле" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Добавяне на нов елемент" @@ -146,7 +146,7 @@ msgstr "Всеки, който има връзка, може да преглед msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Всеки, който използва тази връзка, може да прегледа и изтегли автобиографията. Споделете я в профила си или с лица, набиращи персонал." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Сигурни ли сте, че искате да изтриете този елемент?" @@ -205,7 +205,7 @@ msgstr "Код за резервно копие" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Кодовете за архивиране могат да съдържат само малки букви или цифри и трябва да са точно 10 символа." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Изграден с" msgid "By the community, for the community." msgstr "От общността, за общността." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Потвърждаване на новата парола" msgid "Continue" msgstr "Продължи" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Копие" @@ -318,7 +318,7 @@ msgstr "Копиране на връзката към автобиография msgid "Copy to Clipboard" msgstr "Копиране в клипборда" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Създаване на" @@ -328,7 +328,7 @@ msgstr "Създаване на" msgid "Create a new account" msgstr "Създаване на нов акаунт" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Създаване на нов елемент" @@ -385,9 +385,9 @@ msgstr "Дата" msgid "Date or Date Range" msgstr "Дата или диапазон от дати" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Изтегляне на PDF" msgid "Downloads" msgstr "Изтегляне" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Дублиране на" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Дублиране на съществуващ елемент" @@ -478,7 +478,7 @@ msgstr "Дублиране на съществуващ елемент" msgid "Duplicate an existing resume" msgstr "Дублиране на съществуваща автобиография" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Редактиране на" @@ -575,7 +575,7 @@ msgstr "Варианти на шрифта" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Например тук може да се запише информация за компаниите, на които сте изпратили автобиографията, или връзки към описанията на длъжностите." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Забравете" @@ -658,8 +658,8 @@ msgstr "Тук можете да актуализирате информация msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Тук можете да актуализирате профила си, за да персонализирате работата си." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Скрит" @@ -690,7 +690,7 @@ msgstr "Публично хостване на автобиографията в msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Винаги се радвам да чуя от потребителите на Reactive Resume обратна връзка или подкрепа. Ето някои от съобщенията, които получих. Ако имате някаква обратна връзка, не се колебайте да ми изпратите имейл на адрес <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Икона" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Ключови думи" @@ -809,7 +809,7 @@ msgstr "Етикет" msgid "Language" msgstr "Език" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Последна актуализация {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Местоположение" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "март 2023 - Настояще" msgid "Margin" msgstr "Марж" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "Лиценз MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Име" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Име" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Мрежа" @@ -969,10 +969,6 @@ msgstr "Забележка: Това ще намали сигурността н msgid "Notes" msgstr "Бележки" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Еднократна парола" @@ -984,7 +980,7 @@ msgstr "Еднократна парола" msgid "Oops, the server returned an error." msgstr "Упс, сървърът върна грешка." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Отворете" msgid "Open Source" msgstr "Отворен код" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI не върна никакви варианти за вашия текст." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Интеграция на OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Позиция" msgid "Powered by" msgstr "Задвижвано от" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Осъществено от <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume процъфтява благодарение на св msgid "Redo" msgstr "Redo" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Премахване на" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Премахване на страницата" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Богат на функции, но не и на цени." msgid "Rounded" msgstr "Заоблени" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Запазване на промените" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Отзиви" msgid "Text Color" msgstr "Цвят на текста" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Това не изглежда като валиден API ключ на OpenAI." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Въведените пароли не съвпадат." @@ -1475,7 +1466,7 @@ msgstr "Тема" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Имаше грешка при свързването с браузъра. Моля, уверете се, че \"chrome\" е стартиран и достъпен." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Това действие може да бъде върнато, като щракнете върху бутона Отмяна в плаващата лента с инструменти." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Отмяна на" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Отключването на автобиографията ще ви msgid "Unverified" msgstr "Непроверен" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Актуализиране на съществуващ елемент" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Потребителят няма свързан запис \"secrets\". Моля, докладвайте този проблем в GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Потребителско име" @@ -1618,7 +1609,7 @@ msgstr "Удостоверяване на" msgid "Validated" msgstr "Утвърден" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Стойност" @@ -1643,10 +1634,14 @@ msgstr "Версия 4" msgid "Views" msgstr "Прегледи" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Видим" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Проверяваме имейл адреса ви само за да можем да ви изпратим връзка за възстановяване на паролата, в случай че сте я забравили." @@ -1656,7 +1651,7 @@ msgstr "Проверяваме имейл адреса ви само за да #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Уебсайт" msgid "What's new in the latest version" msgstr "Какво е новото в последната версия" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Можете да добавите няколко ключови думи, като ги разделите със запетая или натиснете Enter." @@ -1680,11 +1675,11 @@ msgstr "Можете да добавите няколко ключови дум msgid "You can also enter your username." msgstr "Можете да въведете и потребителското си име." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Можете да използвате приложния програмен интерфейс на OpenAI, за да генерирате съдържание, или да подобрите писането, докато съставяте автобиографията си." @@ -1692,7 +1687,7 @@ msgstr "Можете да използвате приложния програм msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Можете да проследите броя на прегледите на автобиографията си или колко души са я изтеглили, като разрешите публичното споделяне." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Имате възможност да <0>получите собствен API ключ на OpenAI. Този ключ ви дава възможност да използвате API по ваша преценка. Ако желаете да деактивирате функциите на изкуствения интелект в Reactive Resume, можете просто да премахнете ключа от настройките си." @@ -1709,7 +1704,7 @@ msgstr "Имате поща!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Вашият акаунт и всички ваши данни са изтрити успешно. Сбогом!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Вашият API ключ се съхранява по сигурен начин в локалното хранилище на браузъра и се използва само при извършване на заявки към OpenAI чрез официалния им SDK. Бъдете сигурни, че вашият ключ не се предава на външен сървър, освен при взаимодействие с услугите на OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Увеличаване на мащаба" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Увеличаване на мащаба" + diff --git a/apps/client/src/locales/bn-BD/messages.po b/apps/client/src/locales/bn-BD/messages.po index 51b2005d..ad38a5b9 100644 --- a/apps/client/src/locales/bn-BD/messages.po +++ b/apps/client/src/locales/bn-BD/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bn\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Bengali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -20,11 +20,11 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "" +msgstr "আপনি সফলভাবে দ্বি-গুণক প্রমাণীকরণ সক্ষম করেছেন৷" #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" -msgstr "" +msgstr "{templatesCount}জীবনবৃত্তান্ত টেমপ্লেট বেছে নিন" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:141 msgid "{value, plural, one {Column} other {Columns}}" @@ -32,210 +32,210 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20 msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give." -msgstr "" +msgstr "অন্যান্য মহান ওপেন-সোর্স অবদানকারীদের অনেক সাহায্যে আমি আমার অতিরিক্ত সময়ে বেশিরভাগই নিজের দ্বারা প্রতিক্রিয়াশীল জীবনবৃত্তান্ত তৈরি করেছি।<0><1>আপনি যদি অ্যাপটি পছন্দ করেন এবং এটিকে চিরতরে বিনামূল্যে রাখতে সহায়তা করতে চান, তাহলে অনুগ্রহ করে আপনি যা দিতে পারেন তা দান করুন।" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51 msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" +msgstr "<0>আমি নিশ্চিত যে অ্যাপটি নিখুঁত নয়, তবে আমি চাই এটি নিখুঁত হোক।<1>আপনার জীবনবৃত্তান্ত তৈরি করার সময় আপনি যদি কোনো সমস্যার সম্মুখীন হন, অথবা এমন কোনো ধারণা থাকে যা আপনাকে এবং অন্যান্য ব্যবহারকারীদেরকে আপনার জীবনবৃত্তান্ত তৈরি করতে আরও সহজে সাহায্য করবে, রিপোজিটরিতে একটি সমস্যা ড্রপ করুন বা এটি সম্পর্কে আমাকে একটি ইমেল পাঠান।" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" +msgstr "<0>দ্রষ্টব্য: OpenAI API ব্যবহার করে, আপনি স্বীকার করেন এবং স্বীকার করেন<1>ব্যবহারের শর্তাবলীএবং<2>গোপনীয়তা নীতিOpenAI দ্বারা রূপরেখা। অনুগ্রহ করে মনে রাখবেন যে প্রতিক্রিয়াশীল জীবনবৃত্তান্ত পরিষেবাটির কোনও অনুপযুক্ত বা অননুমোদিত ব্যবহারের জন্য কোনও দায়বদ্ধতা বহন করে না এবং এর ফলে যে কোনও প্রতিক্রিয়া বা দায় সম্পূর্ণরূপে ব্যবহারকারীর উপর নির্ভর করে।" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85 msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" +msgstr "<0>সম্প্রদায়টি প্রতিক্রিয়াশীল জীবনবৃত্তান্তের জন্য ডকুমেন্টেশন লেখার জন্য অনেক সময় ব্যয় করেছে এবং আমি নিশ্চিত যে এটি আপনাকে অ্যাপটি শুরু করতে সহায়তা করবে৷<1>আপনাকে শুরু করতে সাহায্য করার জন্য অনেক উদাহরণও রয়েছে এবং এমন বৈশিষ্ট্য রয়েছে যা আপনি জানেন না যেগুলি আপনাকে আপনার নিখুঁত জীবনবৃত্তান্ত তৈরি করতে সহায়তা করতে পারে।" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" +msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ বর্তমানে অক্ষম আছে৷আপনি আপনার অ্যাকাউন্টে একটি প্রমাণীকরণকারী অ্যাপ যোগ করে এটি সক্ষম করতে পারেন।" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" +msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ সক্ষম করা হয়েছে।প্রতিবার সাইন ইন করার সময় আপনাকে একটি কোড লিখতে বলা হবে।" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 msgid "A free and open-source resume builder" -msgstr "" +msgstr "একটি বিনামূল্যে এবং ওপেন সোর্স জীবনবৃত্তান্ত নির্মাতা" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" +msgstr "একটি বিনামূল্যের এবং ওপেন-সোর্স সারসংকলন নির্মাতা যা আপনার জীবনবৃত্তান্ত তৈরি, আপডেট এবং শেয়ার করার প্রক্রিয়াকে সহজ করে।" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 msgid "A link has been copied to your clipboard." -msgstr "" +msgstr "আপনার ক্লিপবোর্ডে একটি লিঙ্ক কপি করা হয়েছে।" #: apps/client/src/components/copyright.tsx:29 msgid "A passion project by <0>Amruth Pillai" -msgstr "" +msgstr "<0>অমরুথ পিল্লাই-এর একটি প্যাশন প্রোজেক্ট" #: apps/client/src/pages/auth/forgot-password/page.tsx:57 msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" +msgstr "একটি পাসওয়ার্ড রিসেট লিঙ্ক আপনার মেইল এ পাঠানো হয়েছে , যদি আপনার দেওয়া ইমেলের সাথে একটি অ্যাকাউন্ট বিদ্যমান থাকে।" #: apps/client/src/services/errors/translate-error.ts:43 msgid "A resume with this slug already exists, please pick a different unique identifier." -msgstr "" +msgstr "এই স্লগের সাথে একটি জীবনবৃত্তান্ত ইতিমধ্যেই বিদ্যমান, অনুগ্রহ করে একটি ভিন্ন অনন্য শনাক্তকারী চয়ন করুন৷" #: apps/client/src/services/errors/translate-error.ts:10 msgid "A user with this email address and/or username already exists." -msgstr "" +msgstr "এই ইমেল ঠিকানা এবং/অথবা ব্যবহারকারীর নাম সহ একজন ব্যবহারকারী ইতিমধ্যেই বিদ্যমান।" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 msgid "A4" -msgstr "" +msgstr "A4" #. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 msgid "Accepts only {accept} files" -msgstr "" +msgstr "শুধুমাত্র {accept} ফাইলগুলি গ্রহণ করে৷" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 msgid "Account" -msgstr "" +msgstr "খাতা " -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" -msgstr "" +msgstr "একটি কাস্টম ক্ষেত্র যোগ করুন" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" -msgstr "" +msgstr "একটি নতুন জিনিস যোগ করুন" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:90 msgid "Add a new item" -msgstr "" +msgstr "একটি নতুন জিনিস যোগ করুন" #: apps/client/src/pages/builder/sidebars/left/index.tsx:146 #: apps/client/src/pages/builder/sidebars/left/index.tsx:263 msgid "Add a new section" -msgstr "" +msgstr "একটি নতুন বিভাগ যোগ করুন" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:271 msgid "Add New Page" -msgstr "" +msgstr "নতুন পৃষ্ঠা যোগ করুন" #: apps/client/src/components/ai-actions.tsx:79 msgid "AI" -msgstr "" +msgstr "এআই" #: apps/client/src/pages/auth/register/page.tsx:71 msgid "Already have an account?" -msgstr "" +msgstr "ইতিমধ্যে একটি খাতা আছে?" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:146 msgid "An error occurred while validating the file." -msgstr "" +msgstr "ফাইলটি যাচাই করার সময় একটি ত্রুটি ঘটেছে৷" #: apps/client/src/pages/home/sections/features/index.tsx:134 msgid "and many more..." -msgstr "" +msgstr "এবং আরো অনেক..." #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 msgid "Anyone with the link can view and download the resume." -msgstr "" +msgstr "লিঙ্ক সহ যে কেউ জীবনবৃত্তান্ত দেখতে এবং ডাউনলোড করতে পারেনে৷" #: apps/client/src/pages/builder/_components/toolbar.tsx:54 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "" +msgstr "এই লিঙ্ক সহ যে কেউ জীবনবৃত্তান্ত দেখতে এবং ডাউনলোড করতে পারেন। আপনার প্রোফাইলে বা নিয়োগকারীদের সাথে শেয়ার করুন।" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" -msgstr "" +msgstr "আপনি কি এই আইটেমটি মুছে ফেলার বিষয়ে নিশ্চিত?" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:147 msgid "Are you sure you want to delete your resume?" -msgstr "" +msgstr "আপনি কি আপনার জীবনবৃত্তান্ত মুছে ফেলার বিষয়ে নিশ্চিত?" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125 msgid "Are you sure you want to disable two-factor authentication?" -msgstr "" +msgstr "আপনি কি নিশ্চিত আপনি দ্বি-গুণক প্রমাণীকরণ নিষ্ক্রিয় করতে চান?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 msgid "Are you sure you want to lock this resume?" -msgstr "" +msgstr "আপনি কি নিশ্চিত আপনি এই জীবনবৃত্তান্ত লক করতে চান?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 msgid "Are you sure you want to unlock this resume?" -msgstr "" +msgstr "আপনি কি নিশ্চিত আপনি এই জীবনবৃত্তান্ত আনলক করতে চান?" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Are you sure?" -msgstr "" +msgstr "আপনি কি নিশ্চিত?" #. For example, Computer Science or Business Administration #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 msgid "Area of Study" -msgstr "" +msgstr "অধ্যয়নের এলাকা" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:85 msgid "Aspect Ratio" -msgstr "" +msgstr "আকৃতির অনুপাত" #: apps/client/src/pages/home/sections/features/index.tsx:51 msgid "Available in {languagesCount} languages" -msgstr "" +msgstr "{languagesCount} ভাষায় উপলব্ধ৷" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 msgid "Awarder" -msgstr "" +msgstr "পুরস্কারদাতা" #: apps/client/src/pages/auth/backup-otp/page.tsx:98 #: apps/client/src/pages/auth/forgot-password/page.tsx:100 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243 msgid "Back" -msgstr "" +msgstr "ব্যাক" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 msgid "Background Color" -msgstr "" +msgstr "পটভূমির রঙ" #: apps/client/src/pages/auth/backup-otp/page.tsx:75 msgid "Backup Code" -msgstr "" +msgstr "ব্যাকআপ কোড" #: apps/client/src/pages/auth/backup-otp/page.tsx:80 msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" +msgstr "ব্যাকআপ কোডে শুধুমাত্র ছোট হাতের অক্ষর বা সংখ্যা থাকতে পারে এবং অবশ্যই 10টি অক্ষর হতে হবে।" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." msgid "Basics" -msgstr "" +msgstr "বেসিক" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 msgid "Basics" -msgstr "" +msgstr "বেসিক" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:197 msgid "Border" -msgstr "" +msgstr "বর্ডার" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:130 msgid "Border Radius" -msgstr "" +msgstr "সীমানা ব্যাসার্ধ" #: apps/client/src/pages/public/page.tsx:92 msgid "Built with" -msgstr "" +msgstr "দিয়ে নির্মিত" #: apps/client/src/components/copyright.tsx:27 #: apps/client/src/pages/home/sections/contributors/index.tsx:20 msgid "By the community, for the community." -msgstr "" +msgstr "সম্প্রদায়ের দ্বারা, সম্প্রদায়ের জন্য।" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -245,7 +245,7 @@ msgstr "বাতিল করুন" #: apps/client/src/components/ai-actions.tsx:103 #: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" -msgstr "" +msgstr "নৈমিত্তিক" #: apps/client/src/pages/builder/_components/toolbar.tsx:112 msgid "Center Artboard" @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "সম্পাদন" @@ -575,7 +575,7 @@ msgstr "বিকল্প ফন্ট" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "উদাহরণস্বরূপ, আপনি কোন কোম্পানিতে এই জীবনবৃত্তান্ত পাঠিয়েছেন বা কাজের বিবরণের লিঙ্কগুলি এখানে উল্লেখ করা যেতে পারে" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "ভুলে যান" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "গোপন করা" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "আইকন" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "মার্চ ২০২৩ - বর্তমান" msgid "Margin" msgstr "মার্জিন" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "এমআইটি লাইসেন্স" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "নাম" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "নাম" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "নেটওয়ার্ক" @@ -969,10 +969,6 @@ msgstr "দ্রষ্টব্য: এটি আপনার অ্যাক msgid "Notes" msgstr "দ্রষ্টব্য:" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "ওয়ান-টাইম পাসওয়ার্ড" @@ -984,7 +980,7 @@ msgstr "ওয়ান-টাইম পাসওয়ার্ড" msgid "Oops, the server returned an error." msgstr "সার্ভারে একটি ত্রুটি দেখাচ্ছে ৷" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "খুলুন" msgid "Open Source" msgstr "মুক্ত উৎস" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI ইন্টিগ্রেশন" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "অবস্থান" msgid "Powered by" msgstr "দ্বারা চালিত" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "<0>সাধারণ আইকন দ্বারা চালিত" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/ca-ES/messages.po b/apps/client/src/locales/ca-ES/messages.po index 2d14f4af..20fd42ef 100644 --- a/apps/client/src/locales/ca-ES/messages.po +++ b/apps/client/src/locales/ca-ES/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ca\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -20,15 +20,15 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "" +msgstr "Has habilitat l'autenticació en dos factors amb èxit." #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" -msgstr "" +msgstr "{templatesCount} plantilles de currículum per triar" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:141 msgid "{value, plural, one {Column} other {Columns}}" -msgstr "" +msgstr "{value, plural, one {Columna} other {Columnes}}" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20 msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give." @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -67,7 +67,7 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 msgid "A link has been copied to your clipboard." -msgstr "" +msgstr "S'ha desat l'enllaç al porta-retalls." #: apps/client/src/components/copyright.tsx:29 msgid "A passion project by <0>Amruth Pillai" @@ -87,7 +87,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43 msgid "A4" -msgstr "" +msgstr "A4" #. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 @@ -96,38 +96,38 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 msgid "Account" -msgstr "" +msgstr "Compte" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" -msgstr "" +msgstr "Afegir un camp personalitzat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" -msgstr "" +msgstr "Afegiu un nou element" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:90 msgid "Add a new item" -msgstr "" +msgstr "Afegiu un nou element" #: apps/client/src/pages/builder/sidebars/left/index.tsx:146 #: apps/client/src/pages/builder/sidebars/left/index.tsx:263 msgid "Add a new section" -msgstr "" +msgstr "Afegir una nova secció" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:271 msgid "Add New Page" -msgstr "" +msgstr "Afegeix una nova pàgina" #: apps/client/src/components/ai-actions.tsx:79 msgid "AI" -msgstr "" +msgstr "IA" #: apps/client/src/pages/auth/register/page.tsx:71 msgid "Already have an account?" -msgstr "" +msgstr "Ja tens un compte?" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:146 msgid "An error occurred while validating the file." @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -195,7 +195,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 msgid "Background Color" -msgstr "" +msgstr "Color de fons" #: apps/client/src/pages/auth/backup-otp/page.tsx:75 msgid "Backup Code" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -270,15 +270,15 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:150 msgid "Circle" -msgstr "" +msgstr "Cercle" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 msgid "Close" -msgstr "" +msgstr "Tancar" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:201 msgid "Code" -msgstr "" +msgstr "Codi" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:52 msgid "Code must be exactly 6 digits long." @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,19 +318,19 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" -msgstr "" +msgstr "Crear" #: apps/client/src/pages/auth/register/page.tsx:64 #: apps/client/src/pages/auth/register/page.tsx:69 msgid "Create a new account" -msgstr "" +msgstr "Crea un nou compte" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" -msgstr "" +msgstr "Crea un element nou" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:176 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:28 @@ -365,17 +365,17 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 msgid "Danger Zone" -msgstr "" +msgstr "Zona de perill" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:87 msgid "Dark" -msgstr "" +msgstr "Fosc" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 msgid "Date" -msgstr "" +msgstr "Data" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:86 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,13 +478,13 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:175 msgid "Effects" -msgstr "" +msgstr "Efectes" #: apps/client/src/pages/auth/forgot-password/page.tsx:82 #: apps/client/src/pages/auth/login/page.tsx:90 @@ -492,7 +492,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180 msgid "Email" -msgstr "" +msgstr "Correu electrònic" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169 msgid "Enable 2FA" @@ -549,11 +549,11 @@ msgstr "" #: apps/client/src/pages/home/sections/hero/index.tsx:38 msgid "Finally," -msgstr "" +msgstr "Finalment," #: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" -msgstr "" +msgstr "Corregir ortografia i gramàtica" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:93 msgid "Font Family" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -607,7 +607,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 msgid "Full Name" -msgstr "" +msgstr "Nom complet" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 msgid "Generate a random title for your resume" @@ -619,7 +619,7 @@ msgstr "" #: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" -msgstr "" +msgstr "GitHub" #: apps/client/src/pages/home/sections/statistics/index.tsx:12 msgid "GitHub Stars" @@ -636,7 +636,7 @@ msgstr "" #: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" -msgstr "" +msgstr "Google" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:208 msgid "Grayscale" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,15 +914,15 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" -msgstr "" +msgstr "Llicència MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,17 +934,17 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" -msgstr "" +msgstr "Nom" #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 msgctxt "Name of the Certification" msgid "Name" -msgstr "" +msgstr "Nom" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1037,7 +1036,7 @@ msgstr "" #: apps/client/src/pages/auth/reset-password/page.tsx:83 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 msgid "Password" -msgstr "" +msgstr "Contrasenya" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 msgid "PDF" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1322,7 +1321,7 @@ msgstr "" #: apps/client/src/pages/auth/login/page.tsx:122 #: apps/client/src/pages/auth/verify-otp/page.tsx:92 msgid "Sign in" -msgstr "" +msgstr "Iniciar sessió" #: apps/client/src/pages/auth/register/page.tsx:74 msgid "Sign in now" @@ -1359,7 +1358,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:71 msgid "Size (in px)" -msgstr "" +msgstr "Mida (en px)" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:226 msgid "Slug" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1612,13 +1603,13 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 msgid "Validate" -msgstr "" +msgstr "Validar" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 msgid "Validated" -msgstr "" +msgstr "Validat" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1637,16 +1628,20 @@ msgstr "" #: apps/client/src/pages/home/sections/hero/index.tsx:26 msgid "Version 4" -msgstr "" +msgstr "Versió 4" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1727,8 +1722,9 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:94 msgid "Zoom In" -msgstr "" +msgstr "Amplia" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" -msgstr "" +msgstr "Allunya" + diff --git a/apps/client/src/locales/cs-CZ/messages.po b/apps/client/src/locales/cs-CZ/messages.po index f3e12f90..2f46813e 100644 --- a/apps/client/src/locales/cs-CZ/messages.po +++ b/apps/client/src/locales/cs-CZ/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: cs\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Czech\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -38,7 +38,7 @@ msgstr "<0>Reactive Resume jsem vytvořil převážně sám ve svém volném ča msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Jsem si jistý, že aplikace není dokonalá, ale rád bych, aby byla.<1>Pokud jste se při tvorbě životopisu setkali s nějakými problémy nebo máte nápad, který by vám i ostatním uživatelům pomohl při snadnější tvorbě životopisu, napište o tom do úložiště nebo mi pošlete e-mail." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Poznámka : Používáním rozhraní API OpenAI berete na vědomí a souhlasíte s podmínkami <1>používání a <2>zásadami ochrany osobních údajů uvedenými společností OpenAI. Vezměte prosím na vědomí, že Reactive Resume nenese žádnou odpovědnost za nesprávné nebo neoprávněné použití služby a veškeré následky nebo závazky z toho plynoucí nese výhradně uživatel." @@ -98,12 +98,12 @@ msgstr "Přijímá pouze soubory {accept}" msgid "Account" msgstr "Účet" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Přidání vlastního pole" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Přidat novou položku" @@ -146,7 +146,7 @@ msgstr "Každý, kdo má k dispozici odkaz, si může životopis prohlédnout a msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Každý, kdo má k dispozici tento odkaz, si může životopis prohlédnout a stáhnout. Sdílejte jej na svém profilu nebo s náborovými pracovníky." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Opravdu chcete tuto položku odstranit?" @@ -205,7 +205,7 @@ msgstr "Záložní kód" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Záložní kódy mohou obsahovat pouze malá písmena nebo číslice a musí mít přesně 10 znaků." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Vytvořeno s" msgid "By the community, for the community." msgstr "Vytvořeno komunitou pro komunitu." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Potvrďte nové heslo" msgid "Continue" msgstr "Pokračovat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopírovat" @@ -318,7 +318,7 @@ msgstr "Kopírovat odkaz na životopis" msgid "Copy to Clipboard" msgstr "Zkopírovat do schránky" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Vytořit" @@ -328,7 +328,7 @@ msgstr "Vytořit" msgid "Create a new account" msgstr "Vytvořit nový účet" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Vytvořit novou položku" @@ -385,9 +385,9 @@ msgstr "Datum:" msgid "Date or Date Range" msgstr "Časový rozsah" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Stáhnout PDF" msgid "Downloads" msgstr "Stažení" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplikovat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplikovat existující položku" @@ -478,7 +478,7 @@ msgstr "Duplikovat existující položku" msgid "Duplicate an existing resume" msgstr "Duplikujte existující životopis" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Upravit" @@ -575,7 +575,7 @@ msgstr "Font Variants" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Například informace o tom, které společnosti, které jste zaslali tento životopis, nebo odkazy na popisy práce, lze zaznamenat zde." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Zapomenout" @@ -658,8 +658,8 @@ msgstr "Zde můžete aktualizovat informace o Vašem účtu, jako je profilový msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Zde můžete aktualizovat svůj profil, abyste si mohli přizpůsobit a přizpůsobit svůj zážitek." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Hidden" @@ -690,7 +690,7 @@ msgstr "Hostujte váš obnovený účet veřejně" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Vždy rád slyším od uživatelů Reactive Resume se zpětnou vazbou nebo podporou. Zde jsou některé zprávy, které jsem obdržel. Pokud máte nějakou zpětnou vazbu, neváhejte mi napsat e-mail na <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikona" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Klíčová slova" @@ -809,7 +809,7 @@ msgstr "Popisek" msgid "Language" msgstr "Jazyk" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Naposledy aktualizováno {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Poloha" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "březen 2023 - Současný" msgid "Margin" msgstr "Okraj" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT licence" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Název" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Název" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Síť" @@ -969,10 +969,6 @@ msgstr "Poznámka: Váš účet bude méně bezpečný." msgid "Notes" msgstr "Poznámky" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Jednorázové heslo" @@ -984,7 +980,7 @@ msgstr "Jednorázové heslo" msgid "Oops, the server returned an error." msgstr "Jejda, server vrátil chybu." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Otevřít" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI nevrátil žádné volby pro tvůj text." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI integrace" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Pozice" msgid "Powered by" msgstr "Běží na" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Běží o <0>Jednoduchý Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume vzkvétá díky jeho živé komunitě. Tento projekt vd msgid "Redo" msgstr "Znovu" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Odebrat" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Odstranit stránku" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Bohaté funkce, ne v cenách." msgid "Rounded" msgstr "Zaobleno" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Uložit změny" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Referenční údaje" msgid "Text Color" msgstr "Barva textu" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "To nevypadá jako platný OpenAI API klíč." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Zadaná hesla se neshodují." @@ -1475,7 +1466,7 @@ msgstr "Téma" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Došlo k chybě při připojování k prohlížeči. Ujistěte se, že 'chrome' je spuštěn a dosažitelný." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Tuto akci lze vrátit kliknutím na tlačítko zpět v plovoucím panelu nástrojů." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Zpět" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Odemknutí obnovení vám umožní znovu provést změny." msgid "Unverified" msgstr "Neověřeno" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Aktualizovat existující položku" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Uživatel nemá přidružený \"tajný záznam\". Prosím nahlaste tento problém na GitHubu." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Uživatelské jméno" @@ -1618,7 +1609,7 @@ msgstr "Validate" msgid "Validated" msgstr "Potvrzeno" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Hodnota" @@ -1643,10 +1634,14 @@ msgstr "Verze 4" msgid "Views" msgstr "Zobrazení" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Viditelné" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Ověřujeme vaši e-mailovou adresu pouze proto, abychom se ujistili, že vám můžeme zaslat odkaz pro obnovení hesla, pokud zapomenete své heslo." @@ -1656,7 +1651,7 @@ msgstr "Ověřujeme vaši e-mailovou adresu pouze proto, abychom se ujistili, ž #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Webová stránka" msgid "What's new in the latest version" msgstr "Co je nového v nejnovější verzi" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisknutím klávesy enter." @@ -1680,11 +1675,11 @@ msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisk msgid "You can also enter your username." msgstr "Můžete také zadat své uživatelské jméno." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Můžete využít OpenAI API, abyste vám pomohli vygenerovat obsah nebo vylepšit psaní při psaní vašeho obnovení." @@ -1692,7 +1687,7 @@ msgstr "Můžete využít OpenAI API, abyste vám pomohli vygenerovat obsah nebo msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Můžete sledovat počet zobrazení, která jste obnovili, nebo kolik lidí si stáhlo obnovení povolením veřejného sdílení." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Máte možnost <0>získat vlastní OpenAI API klíč. Tento klíč vás zmocňuje k pákovému API tak, jak to považujete za vhodné. Alternativně pokud chcete úplně zakázat AI funkce v reaktivním obnovení, můžete jednoduše odstranit klíč z nastavení." @@ -1709,7 +1704,7 @@ msgstr "Máš email!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Váš účet a všechna data byla úspěšně odstraněna. Sboheme!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Váš API klíč je bezpečně uložen v místním úložišti prohlížeče a používá se pouze při podávání žádostí OpenAI prostřednictvím jejich oficiálního SDK. Buďte ujištěni, že váš klíč není přenášen na žádný externí server, kromě interakce se službami OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Přiblížit" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Oddálit" + diff --git a/apps/client/src/locales/da-DK/messages.po b/apps/client/src/locales/da-DK/messages.po index 0198f176..a9568e87 100644 --- a/apps/client/src/locales/da-DK/messages.po +++ b/apps/client/src/locales/da-DK/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: da\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Jeg byggede Reactive Resume for det meste af mig selv i min fritid, m msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Jeg er sikker på, at appen ikke er perfekt, men det er mit mål. <1>Hvis du stødte på problemer, mens du oprettede dit CV, eller har en idé, der ville hjælpe dig og andre brugere med at oprette dit CV lettere, så skriv et problem på github-repo eller send mig en e-mail om det." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Bemærk: Ved at bruge OpenAI API'en anerkender og accepterer du <1>brugsbetingelserne og <2>privatlivspolitik skitseret af OpenAI. Bemærk venligst at Reactive Resume ikke bærer noget ansvar for ukorrekt eller uautoriseret brug af tjenesten, og eventuelle følgevirkninger eller ansvar påhviler udelukkende brugeren." @@ -98,12 +98,12 @@ msgstr "Accepterer kun {accept} filer" msgid "Account" msgstr "Konto" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Tilføj et brugerdefineret felt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Tilføj et nyt element" @@ -146,7 +146,7 @@ msgstr "Alle med linket kan se og downloade CV'et." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Alle med dette link kan se og downloade CV'et. Del det på din profil eller med rekrutterere." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Er du sikker på, at du vil slette dette element?" @@ -205,7 +205,7 @@ msgstr "Backup kode" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Backup-koder må kun indeholde små bogstaver eller tal og skal bestå af nøjagtigt 10 tegn." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Lavet med" msgid "By the community, for the community." msgstr "Af fællesskabet, for fællesskabet." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Bekræft ny adgangskode" msgid "Continue" msgstr "Forsæt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopiér" @@ -318,7 +318,7 @@ msgstr "Kopiér link til CV" msgid "Copy to Clipboard" msgstr "Kopiér til Udklipsholder" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Opret" @@ -328,7 +328,7 @@ msgstr "Opret" msgid "Create a new account" msgstr "Opret en ny konto" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Opret et nyt emne" @@ -385,9 +385,9 @@ msgstr "Dato" msgid "Date or Date Range" msgstr "Dato eller datointerval" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Download PDF" msgid "Downloads" msgstr "Downloads" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplikér" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplikér et eksisterende element" @@ -478,7 +478,7 @@ msgstr "Duplikér et eksisterende element" msgid "Duplicate an existing resume" msgstr "Duplikér et eksisterende CV" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Rediger" @@ -575,7 +575,7 @@ msgstr "Skrifttype-varianter" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "For eksempel kan oplysninger om hvilke virksomheder du har sendt dette CV til eller links til jobbeskrivelserne noteres her." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Glem" @@ -658,8 +658,8 @@ msgstr "Her kan du opdatere dine kontooplysninger såsom dit profilbillede, navn msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Her kan du opdatere din profil for at tilpasse og personliggøre din oplevelse." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Skjult" @@ -690,7 +690,7 @@ msgstr "Gør dit CV offentligt tilgængeligt" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Jeg elsker altid at høre fra brugerne af Reactive Resume med feedback eller support. Her er nogle af de beskeder, jeg har modtaget. Hvis du har noget feedback, er du velkommen til at sende mig en e-mail på <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikon" @@ -793,9 +793,9 @@ msgstr "anders.andersen@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Nøgleord" @@ -809,7 +809,7 @@ msgstr "Label" msgid "Language" msgstr "Sprog" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Sidst opdateret {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Beliggenhed" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "Marts 2023 - nutid" msgid "Margin" msgstr "Margen" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT-licens" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Navn" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Navn" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Netværk" @@ -969,10 +969,6 @@ msgstr "Bemærk: Dette vil gøre din konto mindre sikker." msgid "Notes" msgstr "Noter" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Engangskodeord" @@ -984,7 +980,7 @@ msgstr "Engangskodeord" msgid "Oops, the server returned an error." msgstr "Ups, serveren returnerede en fejl." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Åben" msgid "Open Source" msgstr "Åben kilde" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI returnerede ikke nogen valgmuligheder for din tekst." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI-integration" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Stilling" msgid "Powered by" msgstr "Drevet af" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Drevet af <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume trives takket være sit livlige fællesskab. Dette proje msgid "Redo" msgstr "Gentag" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Fjern" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Fjern side" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Rig på funktioner, ikke på priser." msgid "Rounded" msgstr "Afrundet" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Gem ændringer" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Udtalelser" msgid "Text Color" msgstr "Tekstfarve" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Det ligner ikke en gyldig OpenAI API-nøgle." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "De indtastede adgangskoder matcher ikke." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Der opstod en fejl ved forbindelsen til browseren. Sørg for, at 'chrome' kører og er tilgængelig." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Denne handling kan annulleres ved at klikke på fortryd-knappen i den flydende værktøjslinje." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Fortryd" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Hvis du låser et CV op, kan du ændre det igen." msgid "Unverified" msgstr "Ikke verificeret" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Opdater et eksisterende element" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Brugeren har ikke en tilknyttet 'secrets'-post. Rapporter venligst dette problem på GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Brugernavn" @@ -1618,7 +1609,7 @@ msgstr "Valider" msgid "Validated" msgstr "Valideret" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Værdi" @@ -1643,10 +1634,14 @@ msgstr "Version 4" msgid "Views" msgstr "Visninger" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Synlig" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Vi bekræfter kun din e-mailadresse for at sikre, at vi kan sende dig et link til nulstilling af adgangskoden, hvis du glemmer din adgangskode." @@ -1656,7 +1651,7 @@ msgstr "Vi bekræfter kun din e-mailadresse for at sikre, at vi kan sende dig et #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Hjemmeside" msgid "What's new in the latest version" msgstr "Hvad er nyt i den seneste version" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter." @@ -1680,11 +1675,11 @@ msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller tr msgid "You can also enter your username." msgstr "Du kan også indtaste dit brugernavn." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Du kan gøre brug af OpenAI API til at hjælpe dig med at generere indhold eller forbedre din skrivning, mens du skriver dit CV." @@ -1692,7 +1687,7 @@ msgstr "Du kan gøre brug af OpenAI API til at hjælpe dig med at generere indho msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Du kan spore antallet af visninger, dit CV har fået, eller hvor mange der har downloadet CV'et ved at aktivere offentlig deling." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Du har mulighed for at <0>få din egen OpenAI API-nøgle. Denne nøgle giver dig mulighed for at udnytte API'en, som det passer dig. Alternativt, hvis du ønsker at deaktivere AI-funktionerne i Reactive Resume helt, kan du blot fjerne nøglen fra dine indstillinger." @@ -1709,7 +1704,7 @@ msgstr "Du har post!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Din konto og alle dine data er blevet slettet. Vi siger farvel!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Din API-nøgle gemmes sikkert i browserens lokale lager og bruges kun, når du sender anmodninger til OpenAI via deres officielle SDK. Du kan være sikker på, at din nøgle ikke overføres til nogen ekstern server, undtagen når du interagerer med OpenAI's tjenester." @@ -1732,3 +1727,4 @@ msgstr "Zoom ind" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Zoom ud" + diff --git a/apps/client/src/locales/de-DE/messages.po b/apps/client/src/locales/de-DE/messages.po index b11921a8..318cda9b 100644 --- a/apps/client/src/locales/de-DE/messages.po +++ b/apps/client/src/locales/de-DE/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: de\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Ich habe Reactive Resume größtenteils in meiner Freizeit fast allei msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Ich bin mir sicher, dass die App nicht perfekt ist, aber ich wünsche mir, dass sie es wird.<1>Du hast beim Erstellen Deines Lebenslaufs ein Problem gefunden oder eine Idee, die Dir und anderen Nutzern dabei helfen würde? Dann erstelle ein Ticket auf GitHub oder schicke mir eine E-Mail." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Hinweis: Wenn du die OpenAI API nutzt, erkennst du die <1>Nutzungsbedingungen und die <2>Datenschutzrichtlinie von OpenAI an und akzeptierst diese. Bitte beachte, dass Reactive Resume keine Verantwortung für eine unsachgemäße oder unbefugte Nutzung des Dienstes übernimmt und eventuelle Folgen oder Haftungsansprüche ausschließlich beim Nutzer liegen." @@ -98,12 +98,12 @@ msgstr "Akzeptiert nur {accept}-Dateien" msgid "Account" msgstr "Konto" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Benutzerdefiniertes Feld hinzufügen" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Eintrag hinzufügen" @@ -146,7 +146,7 @@ msgstr "Jeder, der den Link hat, kann den Lebenslauf ansehen und herunterladen." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Jeder, der den Link hat, kann den Lebenslauf ansehen und herunterladen. Teile ihn auf deinem Profil oder sende ihn an Recruiter." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Sicher, dass Du diesen Eintrag löschen möchtest?" @@ -205,9 +205,9 @@ msgstr "Backup-Code" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Backup-Codes dürfen nur Kleinbuchstaben oder Zahlen enthalten und müssen aus genau 10 Zeichen bestehen." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Basis URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Gebaut mit" msgid "By the community, for the community." msgstr "Von der Gemeinschaft, für die Gemeinschaft." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Neues Passwort bestätigen" msgid "Continue" msgstr "Weiter" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopieren" @@ -318,7 +318,7 @@ msgstr "Link zum Lebenslauf kopieren" msgid "Copy to Clipboard" msgstr "In die Zwischenablage kopieren" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Erstellen" @@ -328,7 +328,7 @@ msgstr "Erstellen" msgid "Create a new account" msgstr "Neues Konto erstellen" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Neuen Eintrag erstellen" @@ -383,11 +383,11 @@ msgstr "Zeitraum" #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 msgid "Date or Date Range" -msgstr "Darum oder Zeitraum" +msgstr "Datum oder Zeitraum" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "PDF herunterladen" msgid "Downloads" msgstr "Downloads" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplizieren" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Vorhandenen Eintrag duplizieren" @@ -478,7 +478,7 @@ msgstr "Vorhandenen Eintrag duplizieren" msgid "Duplicate an existing resume" msgstr "Vorhandenen Lebenslauf duplizieren" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Bearbeiten" @@ -575,7 +575,7 @@ msgstr "Schriftvariante" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Zum Beispiel kannst Du hier notieren, an welche Unternehmen Du diesen Lebenslauf geschickt hast. Oder die Links zu den Stellenbeschreibungen." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Löschen" @@ -658,8 +658,8 @@ msgstr "Hier kannst du deine Kontoinformationen aktualisieren, wie zum Beispiel msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Hier kannst du dein Profil aktualisieren, um deine Erfahrung individuell anzupassen und zu personalisieren." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Ausgeblendet" @@ -690,7 +690,7 @@ msgstr "Hoste Deinen Lebenslauf öffentlich" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Ich freue mich über jedes Feedback oder Unterstützung der Benutzer von Reactive Resume. Hier sind einige der Nachrichten, die ich erhalten habe. Wenn Du mir Feedback geben möchtest, schick mir gerne eine E-Mail an <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Symbol" @@ -793,9 +793,9 @@ msgstr "max.mustermann@beispiel.de" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Schlüsselwörter" @@ -809,7 +809,7 @@ msgstr "Beschriftung" msgid "Language" msgstr "Sprache" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Letzte Aktualisierung: {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Ort" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "März 2023 – Heute" msgid "Margin" msgstr "Außenabstand" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Max Tokens" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "MIT Lizenz" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Model" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Name" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Name" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Netzwerk" @@ -969,10 +969,6 @@ msgstr "Achtung: Dadurch wird dein Konto weniger sicher sein." msgid "Notes" msgstr "Notizen" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Einmalpasswort" @@ -984,7 +980,7 @@ msgstr "Einmalpasswort" msgid "Oops, the server returned an error." msgstr "Hoppla, der Server hat einen Fehler zurückgegeben." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Öffnen" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI hat keine Auswahl für deinen Text zurückgegeben." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI Integration" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Position" msgid "Powered by" msgstr "Powered by" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Powered by <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume blüht dank seiner lebendigen Gemeinschaft auf. Dieses P msgid "Redo" msgstr "Wiederherstellen" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Entfernen" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Seite entfernen" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Nur die Anzahl der Funktionen ist hoch, nicht der Preis." msgid "Rounded" msgstr "Abgerundet" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Änderungen speichern" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Lokal speichern" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Gespeichert" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1449,14 +1448,6 @@ msgstr "Erfahrungsberichte" msgid "Text Color" msgstr "Schriftfarbe" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Das sieht nicht wie ein gültiger OpenAI API-Schlüssel aus." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Die eingegebenen Passwörter stimmen nicht überein." @@ -1475,7 +1466,7 @@ msgstr "Design" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Beim Herstellen der Verbindung zum Browser ist ein Fehler aufgetreten. Bitte stelle sicher, dass 'chrome' läuft wird und erreichbar ist." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Du kannst diese Aktion rückgängig machen, indem Du auf Knopf \"Rückgängig\" in der Symbolleiste unten klickst." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Rückgängig machen" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Wenn Du Deinen Lebenslauf entsperrst, kannst Du wieder Änderungen daran msgid "Unverified" msgstr "Noch nicht verifiziert" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Vorhandenen Eintrag verändern" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Das Benutzerkonto hat keinen Eintrag für 'secrets'. Bitte melde dieses Problem auf GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Benutzername" @@ -1618,7 +1609,7 @@ msgstr "Überprüfen" msgid "Validated" msgstr "Überprüft" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Wert" @@ -1643,10 +1634,14 @@ msgstr "Version 4" msgid "Views" msgstr "Aufrufe" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Sichtbar" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir dir einen Link zum Zurücksetzen deines Passworts senden können, falls du es vergisst." @@ -1656,7 +1651,7 @@ msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Webseite" msgid "What's new in the latest version" msgstr "Was ist neu in der aktuellsten Version" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst." @@ -1680,11 +1675,11 @@ msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie msgid "You can also enter your username." msgstr "Du kannst alternativ auch deinen Benutzernamen eingeben." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Du kannst die OpenAI API nutzen, um Inhalte zu generieren oder deine Schreibfähigkeiten beim Verfassen deines Lebenslaufs zu verbessern." @@ -1692,7 +1687,7 @@ msgstr "Du kannst die OpenAI API nutzen, um Inhalte zu generieren oder deine Sch msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Hier siehst Du die Aufrufe und Downloads dieses Lebenslaufs, wenn Du ihn öffentlich teilst." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Du hast die Möglichkeit, <0>deinen eigenen OpenAI API-Schlüssel zu bekommen. Mit diesem Schlüssel kannst du die API nach Belieben nutzen. Wenn du die KI-Funktionen in Reactive Resume komplett deaktivieren möchtest, entferne einfach den Schlüssel in deinen Einstellungen." @@ -1709,7 +1704,7 @@ msgstr "Du hast Post!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Dein Konto und alle deine Daten wurden erfolgreich gelöscht. Bis bald!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Dein API-Schlüssel wird sicher im lokalen Speicher deines Browsers gespeichert und kommt nur zum Einsatz, wenn du mit OpenAI's Diensten über deren offizielles SDK Kontakt aufnimmst. Keine Sorge, dein Schlüssel wird nur an OpenAI gesendet und sonst an keinen anderen Server." @@ -1732,3 +1727,4 @@ msgstr "Hineinzoomen" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Herauszoomen" + diff --git a/apps/client/src/locales/el-GR/messages.po b/apps/client/src/locales/el-GR/messages.po index 90760aaa..d47514ec 100644 --- a/apps/client/src/locales/el-GR/messages.po +++ b/apps/client/src/locales/el-GR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: el\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Κατασκεύασα το Reactive Resume κυρίως μόνος msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Είμαι βέβαιος ότι η εφαρμογή δεν είναι τέλεια, αλλά θα ήθελα να είναι. <1>Αν αντιμετωπίσατε προβλήματα κατά τη δημιουργία του βιογραφικού σας, ή έχετε κάποια ιδέα που μπορεί να βοηθήσει εσάς ή άλλους για να δημιουργήσετε το βιογραφικό πιο εύκολα, στείλτε μου ένα email σχετικά με αυτό. " -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Σημείωση: Χρησιμοποιώντας το API του OpenAI, αναγνωρίζετε και αποδέχεστε τους <1>όρους χρήσης και την <2>πολιτική απορρήτου που περιγράφονται από το OpenAI. Σημειώστε ότι η Reactive Resume δεν φέρει καμία ευθύνη για οποιαδήποτε ακατάλληλη ή μη εξουσιοδοτημένη χρήση της υπηρεσίας, και οποιεσδήποτε επακόλουθες επιπτώσεις ή ευθύνες βαρύνουν αποκλειστικά τον χρήστη." @@ -98,12 +98,12 @@ msgstr "Δέχεται μόνο αρχεία {accept}" msgid "Account" msgstr "Λογαριασμός χρήστη" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Προσθέστε ένα προσαρμοσμένο πεδίο" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Προσθήκη νέου αντικείμενου" @@ -146,7 +146,7 @@ msgstr "Οποιοσδήποτε διαθέτει τον σύνδεσμο μπο msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Οποιοσδήποτε με αυτόν τον σύνδεσμο μπορεί να δει και να κατεβάσει το βιογραφικό σημείωμα. Μοιραστείτε το στο προφίλ σας ή με τους υπεύθυνους προσλήψεων." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το στοιχείο;" @@ -205,9 +205,9 @@ msgstr "Εφεδρικός κωδικός" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Οι κωδικοί αντιγράφων ασφαλείας μπορούν να περιέχουν μόνο πεζά γράμματα ή αριθμούς και πρέπει να είναι ακριβώς 10 χαρακτήρες." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "https://rxresu.me/builder/cm23wdob830tdmtv5iyuvprzz" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Δημιουργημένο με:" msgid "By the community, for the community." msgstr "Από την κοινότητα, για την κοινότητα." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Επιβεβαιώστε τον νέο κωδικό πρόσβασης" msgid "Continue" msgstr "Συνέχεια" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Αντιγραφή" @@ -318,7 +318,7 @@ msgstr "Αντιγραφή συνδέσμου στο βιογραφικό σημ msgid "Copy to Clipboard" msgstr "Αντιγραφή στο Πρόχειρο" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Δημιουργία" @@ -328,7 +328,7 @@ msgstr "Δημιουργία" msgid "Create a new account" msgstr "Δημιουργία νέου λογαριασμού" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Δημιουργία νέου στοιχείου" @@ -385,9 +385,9 @@ msgstr "Ημερομηνία" msgid "Date or Date Range" msgstr "Ημερομηνία ή εύρος ημερομηνιών" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Λήψη PDF" msgid "Downloads" msgstr "Λήψεις" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Αντίγραφο" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Αντιγραφή ενός υπάρχοντος στοιχείου" @@ -478,7 +478,7 @@ msgstr "Αντιγραφή ενός υπάρχοντος στοιχείου" msgid "Duplicate an existing resume" msgstr "Αντιγραφή ενός υπάρχοντος βιογραφικού σημειώματος" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Τροποποίηση" @@ -575,7 +575,7 @@ msgstr "Παραλλαγές γραμματοσειράς" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Για παράδειγμα, πληροφορίες σχετικά με τις εταιρείες στις οποίες στείλατε το βιογραφικό σας ή τους συνδέσμους προς τις περιγραφές θέσεων εργασίας μπορούν να σημειωθούν εδώ." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Ξεχάστε το" @@ -658,8 +658,8 @@ msgstr "Εδώ, μπορείτε να ενημερώσετε τις πληροφ msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Εδώ, μπορείτε να ενημερώσετε το προφίλ σας για να προσαρμόσετε και να εξατομικεύσετε την εμπειρία σας." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Hidden" @@ -690,7 +690,7 @@ msgstr "Φιλοξενήστε το βιογραφικό σας δημόσια" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Πάντα μου αρέσει να ακούω από τους χρήστες του Reactive Βιογραφικού με ανατροφοδότηση ή υποστήριξη. Εδώ είναι μερικά από τα μηνύματα που έχω λάβει. Αν έχετε κάποια σχόλια, μη διστάσετε να μου στείλετε ένα email στο <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Εικονίδιο" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Λέξεις-κλειδιά" @@ -809,7 +809,7 @@ msgstr "Ετικέτα" msgid "Language" msgstr "Γλώσσα" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Τελευταία ενημέρωση {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Τοποθεσία" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "Μάρτιος 2023 - Παρόν" msgid "Margin" msgstr "Περιθώρια" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT License" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Ονομα" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Ονομα" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Τύπος δικτύου" @@ -969,10 +969,6 @@ msgstr "Σημείωση: Αυτό θα καταστήσει το λογαρια msgid "Notes" msgstr "Σημειώσεις" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Κωδικός πρόσβασης μίας χρήσης" @@ -984,7 +980,7 @@ msgstr "Κωδικός πρόσβασης μίας χρήσης" msgid "Oops, the server returned an error." msgstr "Ουπς, ο διακομιστής επέστρεψε σφάλμα." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Άνοιγμα" msgid "Open Source" msgstr "Ανοικτού Κώδικα" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "Το OpenAI δεν επέστρεψε καμία επιλογή για το κείμενό σας." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Ενσωμάτωση OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Θέση" msgid "Powered by" msgstr "Υποστηρίζεται από" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Powered by <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Το Reactive Resume ευδοκιμεί χάρη στη ζωντανή msgid "Redo" msgstr "Επανάληψη" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Αφαιρεση" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Αφαίρεση σελίδας" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Πλούσιο σε χαρακτηριστικά, όχι σε τιμές msgid "Rounded" msgstr "Στρογγυλεμένο" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Αποθήκευση Αλλαγών;" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Αναφορές πελατών" msgid "Text Color" msgstr "Χρώματα κειμένου" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Αυτό δεν μοιάζει με έγκυρο κλειδί API του OpenAI." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Οι κωδικοί πρόσβασης που εισάγατε δεν ταιριάζουν" @@ -1475,7 +1466,7 @@ msgstr "Θέμα" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Υπήρξε σφάλμα σύνδεσης με το πρόγραμμα περιήγησης. Παρακαλούμε βεβαιωθείτε ότι το 'chrome' λειτουργεί και είναι προσβάσιμο." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Αυτή η ενέργεια μπορεί να ανακληθεί κάνοντας κλικ στο κουμπί αναίρεσης στην κυμαινόμενη γραμμή εργαλείων." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Αναίρεση" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Το ξεκλείδωμα ενός βιογραφικού σημειώμ msgid "Unverified" msgstr "Μη επαληθευμένο" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Ενημέρωση ενός υπάρχοντος στοιχείου" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Ο χρήστης δεν έχει συσχετισμένη εγγραφή \"secrets\". Αναφέρετε αυτό το ζήτημα στο GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Όνομα Χρήστη" @@ -1618,7 +1609,7 @@ msgstr "Επικύρωση" msgid "Validated" msgstr "Επιβεβαιωμένο" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Αξία" @@ -1643,10 +1634,14 @@ msgstr "Έκδοση 4" msgid "Views" msgstr "Προβολές" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Ορατό" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Επαληθεύουμε τη διεύθυνση email σας μόνο για να διασφαλίσουμε ότι μπορούμε να σας στείλουμε έναν σύνδεσμο επαναφοράς κωδικού πρόσβασης σε περίπτωση που ξεχάσετε τον κωδικό πρόσβασής σας." @@ -1656,7 +1651,7 @@ msgstr "Επαληθεύουμε τη διεύθυνση email σας μόνο #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Ιστοσελίδα" msgid "What's new in the latest version" msgstr "Τι νέο υπάρχει στην τελευταία έκδοση" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξεις-κλειδιά διαχωρίζοντάς τες με κόμμα ή πατώντας enter." @@ -1680,11 +1675,11 @@ msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξει msgid "You can also enter your username." msgstr "Μπορείτε επίσης να εισάγετε το όνομα χρήστη σας." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Μπορείτε να χρησιμοποιήσετε το OpenAI API για να σας βοηθήσει να δημιουργήσετε περιεχόμενο, ή να βελτιώσετε το γράψιμό σας, ενώ συνθέτετε το βιογραφικό σας." @@ -1692,7 +1687,7 @@ msgstr "Μπορείτε να χρησιμοποιήσετε το OpenAI API γ msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Μπορείτε να παρακολουθείτε τον αριθμό των προβολών που έχει λάβει το βιογραφικό σας, ή πόσοι άνθρωποι έχουν κατεβάσει το βιογραφικό ενεργοποιώντας την κοινή χρήση του κοινού." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Έχετε την επιλογή <0>αποκτήστε το δικό σας κλειδί OpenAI API. Αυτό το κλειδί σας δίνει τη δυνατότητα να αξιοποιήσετε το API όπως σας φαίνεται κατάλληλο. Εναλλακτικά, αν θέλετε να απενεργοποιήσετε τις λειτουργίες τεχνητής νοημοσύνης στο Reume ενεργό συνολικά, μπορείτε απλά να αφαιρέσετε το κλειδί από τις ρυθμίσεις σας." @@ -1709,7 +1704,7 @@ msgstr "Έχετε email!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Ο λογαριασμός σας και όλα τα δεδομένα σας έχουν διαγραφεί επιτυχώς. Goodbye!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Το κλειδί API σας αποθηκεύεται με ασφάλεια στον τοπικό αποθηκευτικό χώρο του προγράμματος περιήγησης και χρησιμοποιείται μόνο όταν κάνει αιτήσεις στο OpenAI μέσω του επίσημου SDK. Να είστε βέβαιοι ότι το κλειδί σας δεν μεταδίδεται σε κανέναν εξωτερικό διακομιστή εκτός όταν αλληλεπιδρά με τις υπηρεσίες του OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Μεγέθυνση" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Σμίκρυνση" + diff --git a/apps/client/src/locales/en-US/messages.po b/apps/client/src/locales/en-US/messages.po index 217e1e9e..c5a90352 100644 --- a/apps/client/src/locales/en-US/messages.po +++ b/apps/client/src/locales/en-US/messages.po @@ -38,7 +38,7 @@ msgstr "<0>I built Reactive Resume mostly by myself during my spare time, with a msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." @@ -98,12 +98,12 @@ msgstr "Accepts only {accept} files" msgid "Account" msgstr "Account" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Add a custom field" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Add a new item" @@ -146,7 +146,7 @@ msgstr "Anyone with the link can view and download the resume." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Are you sure you want to delete this item?" @@ -205,7 +205,7 @@ msgstr "Backup Code" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "Base URL" @@ -235,7 +235,7 @@ msgstr "Built with" msgid "By the community, for the community." msgstr "By the community, for the community." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Confirm New Password" msgid "Continue" msgstr "Continue" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Copy" @@ -318,7 +318,7 @@ msgstr "Copy Link to Resume" msgid "Copy to Clipboard" msgstr "Copy to Clipboard" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Create" @@ -328,7 +328,7 @@ msgstr "Create" msgid "Create a new account" msgstr "Create a new account" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Create a new item" @@ -385,9 +385,9 @@ msgstr "Date" msgid "Date or Date Range" msgstr "Date or Date Range" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Download PDF" msgid "Downloads" msgstr "Downloads" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplicate" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplicate an existing item" @@ -478,7 +478,7 @@ msgstr "Duplicate an existing item" msgid "Duplicate an existing resume" msgstr "Duplicate an existing resume" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Edit" @@ -575,7 +575,7 @@ msgstr "Font Variants" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Forget" @@ -658,8 +658,8 @@ msgstr "Here, you can update your account information such as your profile pictu msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Here, you can update your profile to customize and personalize your experience." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Hidden" @@ -690,7 +690,7 @@ msgstr "Host your resume publicly" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Icon" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Keywords" @@ -809,7 +809,7 @@ msgstr "Label" msgid "Language" msgstr "Language" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Last updated {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Location" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "March 2023 - Present" msgid "Margin" msgstr "Margin" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "Max Tokens" @@ -922,7 +922,7 @@ msgstr "Max Tokens" msgid "MIT License" msgstr "MIT License" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "Model" @@ -934,7 +934,7 @@ msgstr "Model" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Name" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Name" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Network" @@ -969,10 +969,6 @@ msgstr "Note: This will make your account less secure." msgid "Notes" msgstr "Notes" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "Ollama Integration" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "One-Time Password" @@ -984,7 +980,7 @@ msgstr "One-Time Password" msgid "Oops, the server returned an error." msgstr "Oops, the server returned an error." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Open" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "OpenAI / Ollama API Key" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI did not return any choices for your text." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI Integration" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "OpenAI/Ollama API Key" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "OpenAI/Ollama Integration" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Position" msgid "Powered by" msgstr "Powered by" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Powered by <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume thrives thanks to its vibrant community. This project ow msgid "Redo" msgstr "Redo" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Remove" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Remove Page" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Rich in features, not in pricing." msgid "Rounded" msgstr "Rounded" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Save Changes" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "Save Locally" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "Saved" @@ -1449,14 +1448,6 @@ msgstr "Testimonials" msgid "Text Color" msgstr "Text Color" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "That doesn't look like a valid OpenAI API key." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "That doesn't look like a valid URL" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "The passwords you entered do not match." @@ -1475,7 +1466,7 @@ msgstr "Theme" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "This action can be reverted by clicking on the undo button in the floating toolbar." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Undo" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Unlocking a resume will allow you to make changes to it again." msgid "Unverified" msgstr "Unverified" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Update an existing item" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "User does not have an associated 'secrets' record. Please report this issue on GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Username" @@ -1618,7 +1609,7 @@ msgstr "Validate" msgid "Validated" msgstr "Validated" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Value" @@ -1643,10 +1634,14 @@ msgstr "Version 4" msgid "Views" msgstr "Views" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Visible" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "Visit <0>Phosphor Icons for a list of available icons" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." @@ -1656,7 +1651,7 @@ msgstr "We verify your email address only to ensure that we can send you a passw #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Website" msgid "What's new in the latest version" msgstr "What's new in the latest version" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "You can add multiple keywords by separating them with a comma or pressing enter." @@ -1680,11 +1675,11 @@ msgstr "You can add multiple keywords by separating them with a comma or pressin msgid "You can also enter your username." msgstr "You can also enter your username." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." -msgstr "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." +msgstr "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." @@ -1692,7 +1687,7 @@ msgstr "You can make use of the OpenAI API to help you generate content, or impr msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." @@ -1709,7 +1704,7 @@ msgstr "You've got mail!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Your account and all your data has been deleted successfully. Goodbye!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." diff --git a/apps/client/src/locales/es-ES/messages.po b/apps/client/src/locales/es-ES/messages.po index bc3bb322..1d24fb86 100644 --- a/apps/client/src/locales/es-ES/messages.po +++ b/apps/client/src/locales/es-ES/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Construí Reactive Resume principalmente en mi tiempo libre, junto a msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Estoy seguro de que la app no es perfecta, pero me gustaría lograrlo.<1>Si has encontrado algún problema creando un currículum o tienes alguna idea que mejore cualquier parte del producto, abre una incidencia en el repositorio o envíame un email." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Nota: Al utilizar la API de OpenAI, reconoces y aceptas los <1>términos de uso y la <2>política de privacidad descritos por OpenAI. Ten en cuenta que Reactive Resume no asume ninguna responsabilidad por cualquier uso inadecuado o no autorizado del servicio, y cualquier repercusión o responsabilidad resultante recae únicamente en el usuario." @@ -98,12 +98,12 @@ msgstr "Acepta solo archivos {accept}" msgid "Account" msgstr "Cuenta" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Añadir campo personalizado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Añadir un nuevo elemento" @@ -146,7 +146,7 @@ msgstr "Cualquier persona con el enlace puede ver y descargar el currículum." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Cualquier persona que tenga este enlace puede ver y descargar el currículum. Compártelo en tu perfil o con los reclutadores." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "¿Seguro que deseas eliminar este elemento?" @@ -205,9 +205,9 @@ msgstr "Código de respaldo" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Los códigos de respaldo solo pueden contener letras minúsculas o números y deben tener exactamente 10 caracteres." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "URL base" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Creado con" msgid "By the community, for the community." msgstr "Por la comunidad, para la comunidad." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Confirmar nueva contraseña" msgid "Continue" msgstr "Continuar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Copiar" @@ -318,7 +318,7 @@ msgstr "Copiar enlace al currículum" msgid "Copy to Clipboard" msgstr "Copiar al portapapeles" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Crear" @@ -328,7 +328,7 @@ msgstr "Crear" msgid "Create a new account" msgstr "Crear una nueva cuenta" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Crear un elemento nuevo" @@ -385,9 +385,9 @@ msgstr "Fecha" msgid "Date or Date Range" msgstr "Fecha o rango de fechas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Descargar PDF" msgid "Downloads" msgstr "Descargas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplicar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplicar un elemento existente" @@ -478,7 +478,7 @@ msgstr "Duplicar un elemento existente" msgid "Duplicate an existing resume" msgstr "Duplicar un currículum existente" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Editar" @@ -575,7 +575,7 @@ msgstr "Variante de fuente" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Por ejemplo, aquí puedes anotar información sobre a qué empresas enviaste este currículum o los enlaces a las descripciones de puestos." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Olvidar" @@ -658,8 +658,8 @@ msgstr "Aquí puedes actualizar la información de tu cuenta, como tu foto de pe msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Aquí puedes actualizar tu perfil para modificar y personalizar tu experiencia." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Oculto" @@ -690,7 +690,7 @@ msgstr "Aloja tu currículum públicamente" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Siempre me encanta recibir comentarios o apoyo de los usuarios de Reactive Resume. Estos son algunos de los mensajes que he recibido. Si tienes algún comentario, no dudes en enviarme un correo electrónico a <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Icono" @@ -793,9 +793,9 @@ msgstr "juan.nadie@ejemplo.es" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Palabras clave" @@ -809,7 +809,7 @@ msgstr "Etiqueta" msgid "Language" msgstr "Idioma" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Última actualización: {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Ubicación" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "Marzo 2023 - Presente" msgid "Margin" msgstr "Margen" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Máximo de tokens" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Licencia MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Modelo" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nombre" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nombre" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Red" @@ -969,10 +969,6 @@ msgstr "Nota: Esto hará que tu cuenta sea menos segura." msgid "Notes" msgstr "Notas" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Contraseña de un solo uso (OTP)" @@ -984,7 +980,7 @@ msgstr "Contraseña de un solo uso (OTP)" msgid "Oops, the server returned an error." msgstr "Vaya, el servidor devolvió un error." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Abrir" msgid "Open Source" msgstr "Código Abierto" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI no devolvió ninguna opción para tu texto." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integración con OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Posición" msgid "Powered by" msgstr "Impulsado por" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Impulsado por <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume prospera gracias a su vibrante comunidad. Este proyecto msgid "Redo" msgstr "Rehacer" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Eliminar" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Eliminar página" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Rico en funciones, no en precios." msgid "Rounded" msgstr "Redondeado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Guardar cambios" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Guardar localmente" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Guardado" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1449,14 +1448,6 @@ msgstr "Testimonios" msgid "Text Color" msgstr "Color del texto" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Eso no parece una clave de API de OpenAI válida." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Las contraseñas ingresadas no coinciden." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Se ha producido un error al conectar con el navegador. Por favor, asegúrate de que 'chrome' se está ejecutando y es accesible." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Esta acción puede revertirse pulsando el botón deshacer de la barra de herramientas flotante." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Deshacer" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Desbloquear un currículum te permitirá realizar cambios en él nuevame msgid "Unverified" msgstr "Sin verificar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Actualizar un elemento existente" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "El usuario no tiene un registro 'secretos' asociado. Por favor, informe de este problema en GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Usuario" @@ -1618,7 +1609,7 @@ msgstr "Validar" msgid "Validated" msgstr "Validado" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Valor" @@ -1643,10 +1634,14 @@ msgstr "Versión 4" msgid "Views" msgstr "Visualizaciones" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Visible" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Verificamos tu dirección de correo electrónico sólo para asegurarnos de que podemos enviarte un enlace de restablecimiento de contraseña en caso de que olvides tu contraseña." @@ -1656,7 +1651,7 @@ msgstr "Verificamos tu dirección de correo electrónico sólo para asegurarnos #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Sitio Web" msgid "What's new in the latest version" msgstr "Novedades en la última versión" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter." @@ -1680,11 +1675,11 @@ msgstr "Puedes agregar varias palabras clave separándolas con una coma o presio msgid "You can also enter your username." msgstr "También puedes ingresar tu nombre de usuario." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Puedes utilizar la API de OpenAI para ayudarte a generar contenido o mejorar tu escritura mientras redactas tu currículum." @@ -1692,9 +1687,9 @@ msgstr "Puedes utilizar la API de OpenAI para ayudarte a generar contenido o mej msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Puedes hacer un seguimiento del número de visitas que ha recibido tu currículum o de cuántas personas han descargado el currículum habilitando el uso compartido público." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "Tiene la opción de <0>obtener su propia clave de la API de OpenAI. Esta clave le permite aprovechar la API como mejor le parezca. Alternativamente, si desea desactivar por completo las funciones de IA en la Reanudación Reactiva, puede simplemente eliminar la clave de su configuración." +msgstr "Tiene la opción de <0>obtener su propia clave API de OpenAI. Esta clave le permite aprovechar la API como mejor le convenga. Alternativamente, si desea desactivar por completo las funciones de IA en Reactive Resume, puede simplemente eliminar la clave de su configuración." #: apps/client/src/pages/auth/verify-email/page.tsx:50 msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." @@ -1709,9 +1704,9 @@ msgstr "¡Tienes mensajes!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Tu cuenta y todos tus datos han sido eliminados con éxito. ¡Adiós!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "Su clave de API se almacena de manera segura en el almacenamiento local del navegador y solo se utiliza al realizar peticiones a OpenAI a través de su SDK oficial. Tenga la seguridad de que su clave no se transmite a ningún servidor externo a excepción de los servicios de OpenAI." +msgstr "Su clave API se almacena de manera segura en el almacenamiento local del navegador y solo se utiliza al realizar peticiones a OpenAI a través de su SDK oficial. Tenga la seguridad de que su clave no se transmite a ningún servidor externo a excepción de los servicios de OpenAI." #: apps/client/src/pages/auth/verify-email/page.tsx:28 msgid "Your email address has been verified successfully." @@ -1719,7 +1714,7 @@ msgstr "Tu dirección de correo electrónico se ha verificado con éxito." #: apps/client/src/services/openai/client.ts:11 msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "Tu clave de API OpenAI aún no ha sido configurada. Por favor, ve a la configuración de tu cuenta para habilitar la integración de OpenAI." +msgstr "Su clave API de OpenAI aún no ha sido configurada. Por favor, vaya a la configuración de su cuenta para habilitar la integración de OpenAI." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 msgid "Your password has been updated successfully." @@ -1732,3 +1727,4 @@ msgstr "Aumentar" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Disminuir" + diff --git a/apps/client/src/locales/fa-IR/messages.po b/apps/client/src/locales/fa-IR/messages.po index 39e423f8..14613689 100644 --- a/apps/client/src/locales/fa-IR/messages.po +++ b/apps/client/src/locales/fa-IR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fa\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Persian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>من Reactive Resume را بیشتر در اوقات فراغت خو msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>مطمئنم که برنامه بی‌نقص نیست، اما دوست دارم که باشد. <1>اگر موقع ایجاد رزومه خودتان با مشکلی مواجه شدید یا ایده‌ای دارید که به شما و سایر کاربران در ساختن راحت‌تر رزومه کمک می‌کند، در گیت‌هاب پروژه یک issue ایجاد کنید یا به من ایمیل بفرستید." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>توجه: با استفاده از امکانات OpenAI API، <1>شرایط استفاده را تایید می‌کنید و می‌پذیرید و <2>خط مشی رازداری را که توسط OpenAI مشخص شده است. لطفاً توجه داشته باشید که Reactive Resume هیچ مسئولیتی در قبال هرگونه استفاده نادرست یا غیرمجاز از سرویس ندارد و هرگونه عواقب یا تعهدات ناشی از آن صرفاً بر عهده کاربر است." @@ -98,12 +98,12 @@ msgstr "فقط فایل های {accept} را می پذیرد" msgid "Account" msgstr "حساب" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "افزودن فیلد دلخواه" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "افزودن مورد جدید" @@ -146,7 +146,7 @@ msgstr "هر کسی که لینک را داشته باشد می تواند رز msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "از این پیوند همه می توانند رزومه را مشاهده و دانلود کنند. آن را در نمایه خود یا با استخدام کنندگان به اشتراک بگذارید." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "از حذف این مورد مطمئن هستید؟" @@ -205,7 +205,7 @@ msgstr "کد پشتیبان" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "کدهای پشتیبان فقط باید شامل حروف کوچک یا اعداد و دقیقاً 10 کاراکتر باشند." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "ساخته شده با" msgid "By the community, for the community." msgstr "توسط جامعه، برای جامعه." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "تایید گذرواژه جدید" msgid "Continue" msgstr "ادامه" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "کپی" @@ -318,7 +318,7 @@ msgstr "کپی لینک به رزومه" msgid "Copy to Clipboard" msgstr "کپی به کلیپ‌بورد" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "ایجاد" @@ -328,7 +328,7 @@ msgstr "ایجاد" msgid "Create a new account" msgstr "ایجاد یک حساب جدید" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "ساخت آیتم جدید" @@ -385,9 +385,9 @@ msgstr "تاریخ" msgid "Date or Date Range" msgstr "تاریخ دقیق یا محدوده تاریخ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "دربافت پی‌دی‌اف" msgid "Downloads" msgstr "دانلود" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "کپی کردن" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "کپی یک مورد موجود" @@ -478,7 +478,7 @@ msgstr "کپی یک مورد موجود" msgid "Duplicate an existing resume" msgstr "کپی یک رزومه موجود" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "ویرایش" @@ -575,7 +575,7 @@ msgstr "انواع فونت" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "برای مثال، اطلاعات مربوط به شرکت‌هایی که این رزومه را به آن‌ها ارسال کرده‌اید یا لینک‌هایی به توضیحات شغلی می‌توانند در اینجا یادداشت شوند." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "فراموش کردن" @@ -658,8 +658,8 @@ msgstr "امکان ویرایش اطلاعات حساب کاربری خود ما msgid "Here, you can update your profile to customize and personalize your experience." msgstr "در اینجا می‌توانید پروفایل خود را به‌روزرسانی کنید تا تجربه‌ی خود را شخصی‌سازی کنید." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "پنهان" @@ -690,7 +690,7 @@ msgstr "رزومه خود را به صورت عمومی منتشر کنید" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "همیشه دوست دارم از کاربران Reactive Resume با بازخورد یا پشتیبانی بشنوم. اینجا بعضی از پیام هایی که دریافت کردم هستند. اگر بازخوردی دارید، می‌توانید یک ایمیل به من بزنید به <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "آیکون" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "کلید واژه‌ها" @@ -809,7 +809,7 @@ msgstr "عنوان" msgid "Language" msgstr "زبان" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "آخرین بروزرسانی {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "موقعیت مکانی" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "مارس 2023 - حال حاضر" msgid "Margin" msgstr "حاشیه" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "مجور MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "نام" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "نام" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "شبکه" @@ -969,10 +969,6 @@ msgstr "توجه: این باعث کاهش امنیت حساب کاربری شم msgid "Notes" msgstr "یادداشت‌ها" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "پسورد یکبار مصرف" @@ -984,7 +980,7 @@ msgstr "پسورد یکبار مصرف" msgid "Oops, the server returned an error." msgstr "اوه ، مشکلی در سرور پدید امد." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "باز کردن" msgid "Open Source" msgstr "اوپن سورس" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI نتوانست هیچ پیشنهادی برای متن شما ارائه دهد." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "ادغام با OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "موقعیت شغلی" msgid "Powered by" msgstr "ساخته شده توسط" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "ساخته شده توسط <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume به دست جامعه پرانرژی خود زنده م msgid "Redo" msgstr "Redo" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "حذف" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "حذف صفحه" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "پر از امکانات، بدون قیمت بالا" msgid "Rounded" msgstr "گردشده" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "ذخیرهٔ تغییرات" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "رضایت ها" msgid "Text Color" msgstr "رنگ متن" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "این API OpenAI معتبر به نظر نمی رسد." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "رمز عبورهایی که وارد کرده‌اید مطابقت ندارند." @@ -1475,7 +1466,7 @@ msgstr "تم" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "خطا در اتصال به مرورگر رخ داد. لطفاً مطمئن شوید که 'chrome' در حال اجرا و قابل دسترس است." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "این عملیات می تواند با کلیک بر روی دکمه بازگردانی در نوار ابزار شناور بازگشت پیدا کند." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "بازگردانی" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "باز کردن قفل یک رزومه به شما امکان تغییر msgid "Unverified" msgstr "تأیید نشده" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "به روزرسانی یک مورد موجود" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "کاربر دارای رکورد 'رمزها' مرتبط نیست. لطفاً این مشکل را در گیت‌هاب گزارش دهید." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "نام کاربری" @@ -1618,7 +1609,7 @@ msgstr "تأیید" msgid "Validated" msgstr "تأییدشده" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "مقدار" @@ -1643,10 +1634,14 @@ msgstr "نسخه ۴" msgid "Views" msgstr "تعداد بازدید ها" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "قابل مشاهده" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "ما آدرس ایمیل شما را تأیید می کنیم تا فقط مطمئن شویم که می توانیم لینک بازنشانی رمز عبور را به شما ارسال کنیم در صورتی که رمز عبور خود را فراموش کنید." @@ -1656,7 +1651,7 @@ msgstr "ما آدرس ایمیل شما را تأیید می کنیم تا فق #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "وب‎سایت" msgid "What's new in the latest version" msgstr "چه خبر در آخرین نسخه" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "شما می‌توانید کلمات متعددی را با جداکردن آن‌ها با یک کاما یا فشردن کلید اینتر اضافه کنید." @@ -1680,11 +1675,11 @@ msgstr "شما می‌توانید کلمات متعددی را با جداکر msgid "You can also enter your username." msgstr "شما همچنین می‌توانید نام کاربری خود را وارد کنید." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "شما می توانید از API OpenAI استفاده کنید تا به شما در تولید محتوا کمک کند یا نوشتن شما را بهتر کند در حالی که رزومه خود را تنظیم می کنید." @@ -1692,7 +1687,7 @@ msgstr "شما می توانید از API OpenAI استفاده کنید تا ب msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "شما می‌توانید تعداد بازدید‌های رزومه خود را یا تعداد افرادی که رزومه را با فعال کردن اشتراک عمومی دانلود کرده‌اند، بررسی کنید." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "شما قادر به <0>دریافت کلید API اختصاصی OpenAI خودتان هستید. این کلید به شما این امکان را می دهد که از API به دلخواه خود استفاده کنید. به عنوان یک گزینه دیگر، اگر می خواهید قابلیت های هوش مصنوعی در Reactive Resume را کاملاً غیرفعال کنید، می توانید به سادگی این کلید را از تنظیمات خود حذف کنید." @@ -1709,7 +1704,7 @@ msgstr "شما ایمیل دریافت کردید" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "حساب شما و تمام داده‌های شما با موفقیت حذف شد. خدانگهدار!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "کلید API شما به صورت ایمن در حافظه مرورگر دستگاه ذخیره می شود و تنها هنگام ارسال درخواست به OpenAI از طریق SDK رسمی آنها استفاده می شود. اطمینان حاصل کنید که کلید شما به هیچ سرور خارجی انتقال داده نمی شود مگر اینکه برای تعامل با خدمات OpenAI استفاده شود." @@ -1732,3 +1727,4 @@ msgstr "بزرگ‌نمایی" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "کوچک‌نمایی" + diff --git a/apps/client/src/locales/fi-FI/messages.po b/apps/client/src/locales/fi-FI/messages.po index 86f1814f..33403256 100644 --- a/apps/client/src/locales/fi-FI/messages.po +++ b/apps/client/src/locales/fi-FI/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fi\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Rakensin Reaktiivisen ansioluettelon pääasiassa itse vapaa-ajallani msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Olen varma, että sovellus ei ole täydellinen, mutta haluaisin sen olevan.<1>Jos kohtaat ongelmia luodessasi ansioluetteloasi tai sinulla on idea, joka auttaisi sinua ja muita käyttäjiä luomaan ansioluetteloasi helpommin, ilmoita ongelmasta repositoriossa tai lähetä minulle sähköpostia asiasta." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Huom: Hyödyntämällä OpenAI API:a, tunnustat ja hyväksyt OpenAI:n määrittelemät <1>käyttöehdot ja <2>tietosuojakäytännöt. Huomaa, että Reaktiivinen ansioluettelo ei ota vastuuta palvelun epäasianmukaisesta tai luvattomasta käytöstä aiheutuvista seurauksista tai vastuista, jotka lankeavat yksinomaan käyttäjälle." @@ -98,12 +98,12 @@ msgstr "Hyväksyy vain {accept} tiedostot" msgid "Account" msgstr "Tili" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Lisää mukautettu kenttä" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Lisää uusi kohde" @@ -146,7 +146,7 @@ msgstr "Kuka tahansa linkin avulla voi tarkastella ja ladata ansioluettelon." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Kuka tahansa tämän linkin avulla voi tarkastella ja ladata ansioluettelon. Jaa se profiilissasi tai rekrytoijien kanssa." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Haluatko varmasti poistaa tämän kohteen?" @@ -205,7 +205,7 @@ msgstr "Varmuuskoodi" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Varmuuskoodit voivat sisältää vain pieniä kirjaimia tai numeroita, ja niiden on oltava tarkalleen 10 merkkiä." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Rakennettu" msgid "By the community, for the community." msgstr "Yhteisön tekemä, yhteisölle." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Vahvista uusi salasana" msgid "Continue" msgstr "Jatka" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopioi" @@ -318,7 +318,7 @@ msgstr "Kopioi linkki ansioluetteloon" msgid "Copy to Clipboard" msgstr "Kopioi leikepöydälle" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Luo" @@ -328,7 +328,7 @@ msgstr "Luo" msgid "Create a new account" msgstr "Luo uusi tili" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Luo uusi tuote" @@ -385,9 +385,9 @@ msgstr "Päivämäärä" msgid "Date or Date Range" msgstr "Päivämäärä tai Päivämääräväli" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Lataa PDF" msgid "Downloads" msgstr "Lataukset" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Kaksoiskappale" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Tee kaksoiskappale olemassa olevasta kohteesta" @@ -478,7 +478,7 @@ msgstr "Tee kaksoiskappale olemassa olevasta kohteesta" msgid "Duplicate an existing resume" msgstr "Tee kaksoiskappale olemassa olevasta ansioluettelosta" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Muokkaa" @@ -575,7 +575,7 @@ msgstr "Fonttivariantit" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Esimerkiksi tietoja siitä, mihin yrityksiin lähetit tämän ansioluettelon tai linkit työpaikkailmoituksiin, voidaan kirjata tänne." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Unohda" @@ -658,8 +658,8 @@ msgstr "Täällä voit päivittää tilisi tietoja, kuten profiilikuvasi, nimesi msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Täällä voit päivittää profiilisi mukauttaaksesi ja personoidaksesi kokemustasi." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Piilotettu" @@ -690,7 +690,7 @@ msgstr "Julkaise ansioluettelosi julkisesti" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Rakastan aina kuulla Reactive Resume -sovelluksen käyttäjiltä palautetta tai tukea. Tässä on joitakin viestejä, jotka olen saanut. Jos sinulla on palautetta, voit vapaasti lähettää minulle sähköpostia osoitteeseen <0>{sähköposti}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Kuvake" @@ -793,9 +793,9 @@ msgstr "matti.meikäläinen@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Avainsanat" @@ -809,7 +809,7 @@ msgstr "Tunniste" msgid "Language" msgstr "Kieli" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Päivitetty viimeksi {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Sijainti" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "Maaliskuu 2023 - Tähän asti" msgid "Margin" msgstr "Marginaali" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT-lisenssi" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nimi" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nimi" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Verkko" @@ -969,10 +969,6 @@ msgstr "Huom: Tämä tekee tilisi vähemmän turvalliseksi." msgid "Notes" msgstr "Muistiinpanot" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Yksittäinen salasana" @@ -984,7 +980,7 @@ msgstr "Yksittäinen salasana" msgid "Oops, the server returned an error." msgstr "Voi ei, palvelin palautti virheen." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Avaa" msgid "Open Source" msgstr "Avoin lähdekoodi" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI ei palauttanut mitään valintoja tekstillesi." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI-integrointi" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Asema" msgid "Powered by" msgstr "Voimanlähteenä" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Powered by <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reaktiivinen ansioluettelo kukoistaa sen elinvoimaisen yhteisön ansiost msgid "Redo" msgstr "Tee uudelleen" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Poista" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Poista sivu" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Monipuolinen ominaisuuksiltaan, ei hinnoiltaan." msgid "Rounded" msgstr "Pyöristetty" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Tallenna muutokset" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Asiakaspalautteet" msgid "Text Color" msgstr "Tekstin väri" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Tuo ei näytä kelvolliselta OpenAI API -avaimelta." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Syöttämäsi salasanat eivät täsmää." @@ -1475,7 +1466,7 @@ msgstr "Teema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Virhe yhdistettäessä selaimeen. Varmista, että 'chrome' on käynnissä ja tavoitettavissa." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Tämä toiminto voidaan peruuttaa napsauttamalla kumo-painiketta kelluvassa työkalurivissä." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Kumoa" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Ansioluettelon avaaminen mahdollistaa muutosten tekemisen siihen uudelle msgid "Unverified" msgstr "Vahvistamaton" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Päivitä olemassa oleva kohde" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Käyttäjällä ei ole liitettyä 'salaisuuksia' -tietuetta. Ilmoita tästä ongelmasta GitHubissa." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Käyttäjänimi" @@ -1618,7 +1609,7 @@ msgstr "Validoi" msgid "Validated" msgstr "Validoitu" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Arvo" @@ -1643,10 +1634,14 @@ msgstr "Versio 4" msgid "Views" msgstr "Näkymät" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Näkyvä" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Me varmistamme sähköpostiosoitteesi vain varmistaaksemme, että voimme lähettää sinulle salasanan palautuslinkin, jos unohdat salasanasi." @@ -1656,7 +1651,7 @@ msgstr "Me varmistamme sähköpostiosoitteesi vain varmistaaksemme, että voimme #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Verkkosivusto" msgid "What's new in the latest version" msgstr "Mitä uutta viimeisimmässä versiossa" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamalla enter." @@ -1680,11 +1675,11 @@ msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamall msgid "You can also enter your username." msgstr "Voit myös syöttää käyttäjänimesi." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Voit käyttää OpenAI API:a auttamaan sinua sisällön luomisessa tai parantamaan kirjoittamistasi laatimalla ansioluettelosi." @@ -1692,7 +1687,7 @@ msgstr "Voit käyttää OpenAI API:a auttamaan sinua sisällön luomisessa tai p msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Voit seurata, kuinka monta katselukertaa ansioluettelosi on saanut tai kuinka monta henkilöä on ladannut ansioluettelosi mahdollistamalla julkisen jakamisen." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Sinulla on mahdollisuus <0>hankkia oma OpenAI API-avain. Tämä avain antaa sinulle mahdollisuuden hyödyntää API:a haluamallasi tavalla. Vaihtoehtoisesti, jos haluat poistaa tekoälyominaisuudet kokonaan Reactive Resumesta, voit yksinkertaisesti poistaa avaimen asetuksistasi." @@ -1709,7 +1704,7 @@ msgstr "Sinulle on tullut postia!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Tilisi ja kaikki tietosi on poistettu onnistuneesti. Hyvästi!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "API-avaimesi säilytetään turvallisesti selaimen paikallisessa tallennustilassa ja sitä käytetään vain tehdessäsi pyyntöjä OpenAI:lle heidän virallisen SDK:n kautta. Ole huoleti, että avaintasi ei lähetetä ulkoiselle palvelimelle, paitsi kun vuorovaikutuksessa OpenAI-palveluiden kanssa." @@ -1732,3 +1727,4 @@ msgstr "Lähennä" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Loitonna" + diff --git a/apps/client/src/locales/fr-FR/messages.po b/apps/client/src/locales/fr-FR/messages.po index 1130170f..8f4d1742 100644 --- a/apps/client/src/locales/fr-FR/messages.po +++ b/apps/client/src/locales/fr-FR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>J'ai construit Reactive Resume principalement par moi-même pendant m msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Je suis sûre que l'application n'est pas parfaite, mais j'aimerais qu'elle le soit.<1>Si vous avez rencontré n'importe quel problème en créant votre CV, ou si vous avez une idée qui pourrait aider, vous ou les autres, à créer leurs Cv plus facilement, faite remonter l'idée sur le repository, ou envoyez moi un email." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Remarque : En utilisant l'API OpenAI, vous reconnaissez et acceptez les <1>conditions d'utilisation et <2>politique de confidentialité décrit par OpenAI. Veuillez noter que Reactive Resume n'assume aucune responsabilité pour toute utilisation inappropriée ou non autorisée du service, et toutes les répercussions ou responsabilités qui en résultent incombent uniquement à l'utilisateur." @@ -98,12 +98,12 @@ msgstr "Accepte uniquement les fichiers {accept}" msgid "Account" msgstr "Compte" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Ajouter un champ personnalisé" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Ajouter un nouvel élément" @@ -146,7 +146,7 @@ msgstr "Toute personne avec ce lien peut voir et télécharger le CV." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Toute personne avec ce lien peut voir et télécharger le CV. Partagez le sur votre profil ou avec les recruteurs." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Êtes-vous sûr de vouloir supprimer cet élément?" @@ -205,9 +205,9 @@ msgstr "Code de récupération" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Les codes de sauvegarde ne peuvent contenir que des lettres minuscules ou des chiffres et doivent comporter exactement 10 caractères." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "URL de base" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Construit avec" msgid "By the community, for the community." msgstr "Par la communauté, pour la communauté." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Confirmez le nouveau mot de passe" msgid "Continue" msgstr "Continuer" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Copier" @@ -318,7 +318,7 @@ msgstr "Copier le lien vers le CV" msgid "Copy to Clipboard" msgstr "Copier dans le Presse-Papier" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Créer" @@ -328,7 +328,7 @@ msgstr "Créer" msgid "Create a new account" msgstr "Créer un nouveau compte" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Créer un nouvel élément" @@ -385,9 +385,9 @@ msgstr "Date" msgid "Date or Date Range" msgstr "Période ou date" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Télécharger au format PDF" msgid "Downloads" msgstr "Télécharger" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Dupliquer" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Dupliquer un élément existant" @@ -478,7 +478,7 @@ msgstr "Dupliquer un élément existant" msgid "Duplicate an existing resume" msgstr "Dupliquer un CV existant" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Editer" @@ -508,7 +508,7 @@ msgstr "Saisissez l'un des 10 codes de sauvegarde que vous avez enregistrés lor #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Entrer le nom d'une icône Phosphor" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -575,7 +575,7 @@ msgstr "Variantes de polices" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Par exemple, des informations sur les entreprises auxquelles vous avez envoyé ce CV ou les liens vers les descriptions de poste peuvent être notées ici." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Oublier" @@ -658,8 +658,8 @@ msgstr "Ici, vous pouvez mettre à jour les informations de votre compte telles msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Ici, vous pouvez mettre à jour votre profil pour personnaliser et personnaliser votre expérience." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Masqué" @@ -690,7 +690,7 @@ msgstr "Hébergez votre CV publiquement" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "J'apprécie toujours que les utilisateurs de Reactive Resume me fassent part de leurs commentaires ou de leur soutien. Voici quelques-uns des messages que j'ai reçus. Si vous avez des commentaires, n'hésitez pas à m'envoyer un e-mail à l'adresse suivante <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Icône" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Mots-clés" @@ -809,7 +809,7 @@ msgstr "Étiquette" msgid "Language" msgstr "Langue" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Dernière mise à jour {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Emplacement" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "Mars 2023 - Aujourd'hui" msgid "Margin" msgstr "Marge" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Token maximum" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Licence MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Modèle" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nom" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nom" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Réseau" @@ -969,10 +969,6 @@ msgstr "Remarque : Cela rendra votre compte moins sécurisé." msgid "Notes" msgstr "Notes" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Mot de passe à usage unique" @@ -984,7 +980,7 @@ msgstr "Mot de passe à usage unique" msgid "Oops, the server returned an error." msgstr "Oups, le serveur a renvoyé une erreur." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Ouvrir" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI n'a renvoyé aucun choix pour votre texte." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Intégration OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Poste" msgid "Powered by" msgstr "Propulsé par" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Réalisé par <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume prospère grâce à sa communauté dynamique. Ce projet msgid "Redo" msgstr "Rétablir" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Supprimer" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Supprimer la Page" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Riche en fonctionnalités, pas en prix." msgid "Rounded" msgstr "Arrondi" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Enregistrer les modifications" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Enregistrer Localement" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Enregistré" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1449,14 +1448,6 @@ msgstr "Témoignages" msgid "Text Color" msgstr "Couleur du texte" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Cela ne ressemble pas à une clé API OpenAI valide." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Les mots de passe saisis ne correspondent pas." @@ -1475,7 +1466,7 @@ msgstr "Thème" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Une erreur s'est produite lors de la connexion au navigateur. Veuillez vous assurer que 'chrome' fonctionne et est accessible." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Cette action peut être annulée en cliquant sur le bouton Annuler dans la barre d'outils flottante." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Annuler" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Le déverrouillage d'un CV vous permettra de le modifier à nouveau." msgid "Unverified" msgstr "Non vérifié" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Mettre à jour un élément existant" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "L'utilisateur n'a pas d'enregistrement de « secrets » associé. Veuillez signaler ce problème sur GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nom d’utilisateur" @@ -1618,7 +1609,7 @@ msgstr "Valider" msgid "Validated" msgstr "Validé" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Valeur" @@ -1643,10 +1634,14 @@ msgstr "Version 4" msgid "Views" msgstr "Vues" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Visible" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer que nous pouvons vous envoyer un lien de réinitialisation du mot de passe au cas où vous l'oublieriez." @@ -1656,7 +1651,7 @@ msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Site Web" msgid "What's new in the latest version" msgstr "Quoi de neuf dans la dernière version" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgule ou en appuyant sur la touche Entrée." @@ -1680,11 +1675,11 @@ msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgul msgid "You can also enter your username." msgstr "Vous pouvez également saisir votre nom d'utilisateur." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Vous pouvez utiliser l'API OpenAI pour vous aider à générer du contenu, ou améliorer votre écriture lors de la rédaction de votre CV." @@ -1692,7 +1687,7 @@ msgstr "Vous pouvez utiliser l'API OpenAI pour vous aider à générer du conten msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Vous pouvez suivre le nombre de vues que votre CV a reçues ou le nombre de personnes qui ont téléchargé le CV en activant le partage public." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Vous avez la possibilité d'<0>obtenir votre propre clé API OpenAI . Cette clé vous permet d’exploiter l’API comme bon vous semble. Alternativement, si vous souhaitez désactiver complètement les fonctionnalités d'IA dans Reactive Resume, vous pouvez simplement supprimer la clé de vos paramètres." @@ -1709,7 +1704,7 @@ msgstr "Vous avez un message !" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Votre compte et toutes vos données ont été supprimés avec succès. Au revoir!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Votre clé API est stockée en toute sécurité dans le stockage local du navigateur et n'est utilisée que lors des demandes adressées à OpenAI via leur SDK officiel. Soyez assuré que votre clé n'est transmise à aucun serveur externe sauf lors de l'interaction avec les services d'OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Zoomer" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Dézoomer" + diff --git a/apps/client/src/locales/he-IL/messages.po b/apps/client/src/locales/he-IL/messages.po index b5217f65..53085d2c 100644 --- a/apps/client/src/locales/he-IL/messages.po +++ b/apps/client/src/locales/he-IL/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: he\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" @@ -38,7 +38,7 @@ msgstr "<0>בניתי את Reactive Resume בעיקר בעצמי בזמן הפנ msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>אין לי ספק שהיישום רחוק מלהיות מושלם אבל אני חותר לכך שיהיה כזה.<1>אם נתקלת בבעיות במהלך יצירת קורות החיים שלך או שיש לך רעיון שיכול לסייע לך ולמשתמשים אחרים ביצירת קורות חיים יותר בקלות, אפשר לדוח על הצעה/תקלה במאגר הקוד או לשלוח לי הודעה על כך בדוא״ל." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>לתשומת ליבך: עצם השימוש ב־API של OpenAI מהווה הכרה והסכמה ל<1>תנאי השימוש ול<2>מדיניות הפרטיות שנקבעו על ידי OpenAI. נא לשים לב ש־Reactive Resume אינו אחראי במקרים של שימוש לא הולם או לא מורשה בשירות, לרבות השלכות נגזרות או התחייבויות שחלות באופן בלעדי על המשתמש." @@ -98,12 +98,12 @@ msgstr "מקבל רק קובצי {accept}" msgid "Account" msgstr "חשבון" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "הוספת שדה מותאם אישית" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "הוספת פריט חדש" @@ -146,7 +146,7 @@ msgstr "לכל מי שיש את הקישור יש אפשרות להוריד את msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "כל מי שמחזיק בקישור הזה יכול לצפות ולהוריד את קורות החיים. אפשר לשתף אותם בפרופיל שלך או עם מגייסים ומגייסות." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "למחוק את הפריט הזה?" @@ -205,7 +205,7 @@ msgstr "קוד גיבוי" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "קודים למטרות גיבוי יכולים להכיל רק אותיות לטיניות קטנות או מספרים והם חייבים להיות באורך של 10 תווים בדיוק." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "נבנה עם" msgid "By the community, for the community." msgstr "על ידי הקהילה ועבורה." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "אישור הסיסמה החדשה" msgid "Continue" msgstr "המשך" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "העתקה" @@ -318,7 +318,7 @@ msgstr "העתקת הקישור לקורות החיים" msgid "Copy to Clipboard" msgstr "העתקה ללוח הגזירים" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "יצירה" @@ -328,7 +328,7 @@ msgstr "יצירה" msgid "Create a new account" msgstr "יצירת חשבון חדש" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "יצירת פריט חדש" @@ -385,9 +385,9 @@ msgstr "תאריך" msgid "Date or Date Range" msgstr "תאריך או טווח תאריכים" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "הורדת PDF" msgid "Downloads" msgstr "הורדות" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "שכפול" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "שכפול פריט קיים" @@ -478,7 +478,7 @@ msgstr "שכפול פריט קיים" msgid "Duplicate an existing resume" msgstr "שכפול קורות חיים קיימים" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "עריכה" @@ -575,7 +575,7 @@ msgstr "הגווני גופן" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "למשל, מידע לגבי לאילו חברות שלחת את קורות החיים האלה או את תיאורי התפקיד אפשר לתעד כאן." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "לשכוח" @@ -658,8 +658,8 @@ msgstr "כאן אפשר לעדכן את פרטי החשבון שלך כגון ת msgid "Here, you can update your profile to customize and personalize your experience." msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "מוסתר" @@ -690,7 +690,7 @@ msgstr "אחסון ציבורי של קורות החיים שלך" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "תמיד מעניין אותי לשמוע ממשתמשי Reactive Resume בנוגע למשוב שלהם. הנה חלק מההודעות שקיבלתי. אם יש לך משוב, אשמח לקבל ממך הודעה בדוא״ל אל <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "סמל" @@ -793,9 +793,9 @@ msgstr "israel.israeli@israel.gov.il" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "מילות מפתח" @@ -809,7 +809,7 @@ msgstr "תווית" msgid "Language" msgstr "שפה" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "העדכון האחרון היה ב־{lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "מקום" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "מרץ 2023 - כרגע" msgid "Margin" msgstr "מרווח" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "רישיון MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "שם" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "שם" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "רשת" @@ -969,10 +969,6 @@ msgstr "לתשומת ליבך: זה ישפר את ההגנה על החשבון msgid "Notes" msgstr "הערות" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "סיסמה חד־פעמית" @@ -984,7 +980,7 @@ msgstr "סיסמה חד־פעמית" msgid "Oops, the server returned an error." msgstr "אופס, השרת החזיר שגיאה." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "פתיחה" msgid "Open Source" msgstr "קוד פתוח" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI לא החזיר אפשרויות לטקסט שלך." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "שילוב מול OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "תפקיד" msgid "Powered by" msgstr "מופעל על גבי" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "נעזר ב־<0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "מיזם Reactive Resume משגשג בזכות הקהילה התוססת msgid "Redo" msgstr "ביצוע מחדש" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "הסרה" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "הסרת עמוד" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "עשיר ביכולות, לא בממון." msgid "Rounded" msgstr "מעוגל" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "שמירת שינויים" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "המלצות" msgid "Text Color" msgstr "צבע כתב" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "זה לא נראה כמו מפתח API תקף של OpenAI." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "הסיסמאות שמילאת לא זהות." @@ -1475,7 +1466,7 @@ msgstr "ערכת עיצוב" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "קרתה תקלה בחיבור לדפדפן. נא לוודא ש־‚chrome’ פעיל ונגיש." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "אפשר לחזור אחורה מהפעולה הזאת על ידי לחיצה על כפתור ההחזרה בסרגל הכלים המרחף." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "החזרה" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "שחרור קורות חיים יאפשר לערוך בו שינויים msgid "Unverified" msgstr "לא מאומת" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "עדכון פריט קיים" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "למשתמש אין רשומת ‚סודות’ (secrets) משויכת אליו. נא לדווח על התקלה הזאת ב־GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "שם משתמש" @@ -1618,7 +1609,7 @@ msgstr "תיקוף" msgid "Validated" msgstr "תקף" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "ערך" @@ -1643,10 +1634,14 @@ msgstr "גרסה 4" msgid "Views" msgstr "צפיות" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "גלוי" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לוודא שאפשר לשלוח לך קישור לאיפוס סיסמה למקרה ששכחת אותה." @@ -1656,7 +1651,7 @@ msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לו #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "אתר אינטרנט" msgid "What's new in the latest version" msgstr "מה חדש בגרסה העדכנית" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter." @@ -1680,11 +1675,11 @@ msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרד msgid "You can also enter your username." msgstr "אפשר גם למלא את שם המשתמש שלך." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "אפשר להשתמש ב־API של OpenAI כדי לסייע לך לייצא תוכן, או לשפר את הכתיבה שלך בעת כתיבת קורות החיים שלך." @@ -1692,7 +1687,7 @@ msgstr "אפשר להשתמש ב־API של OpenAI כדי לסייע לך ליי msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "אפשר לעקוב אחר מספר הצפיות או אחר ההורדות של קורות החיים על ידי הפעלת שיתוף ציבורי." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "יש לך אפשרות <0>לקבל מפתח API משלך ל־OpenAI. המפתח הזה מאפשר לך למנף את ה־API כפי שנראה לך לנכון. לחלופין, כדי להשבית את אפשרויות הבינה המלאכותית לחלוטין ב־Reactive Resume, אפשר פשוט להסיר את המפתח מההגדרות שלך." @@ -1709,7 +1704,7 @@ msgstr "קיבלת הודעה!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "החשבון וכל הנתונים שלך נמחקו בהצלחה. להתראות ובהצלחה!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "מפתח ה־API שלך מאוחסן בדפדפן מקומית ונעשה בו שימוש רק בעת שליחת בקשות ל־OpenAI דרך ה־SDK הרשמי שלהם. אנו מתחייבים שהמפתח שלך לא מועבר לשרת חיצוני מלבד למטרות תפעול השירותים של OpenAI." @@ -1732,3 +1727,4 @@ msgstr "התקרבות" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "התרחקות" + diff --git a/apps/client/src/locales/hi-IN/messages.po b/apps/client/src/locales/hi-IN/messages.po index 51025065..3b7a0b68 100644 --- a/apps/client/src/locales/hi-IN/messages.po +++ b/apps/client/src/locales/hi-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hi\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>मैंने अपने खाली समय के दौर msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>मुझे यकीन है कि ऐप पूर्ण नहीं है, लेकिन मैं चाहूंगा कि ऐसा हो। <1>यदि आपको अपना बायोडाटा बनाते समय किसी समस्या का सामना करना पड़ा है, या आपके पास कोई विचार है जो आपको और अन्य उपयोगकर्ताओं को अपना बायोडाटा अधिक आसानी से बनाने में मदद करेगा, तो रिपोजिटरी पर समस्या छोड़ें या इसके बारे में मुझे एक ईमेल भेजें।" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>ध्यान दें: OpenAI API का उपयोग करके, आप <1>उपयोग की शर्तों को स्वीकार करते हैं और <2>गोपनीयता नीति OpenAI द्वारा उल्लिखित। कृपया ध्यान दें कि रिएक्टिव रेज़्यूमे सेवा के किसी भी अनुचित या अनधिकृत उपयोग के लिए कोई ज़िम्मेदारी नहीं लेता है, और इसके परिणामस्वरूप होने वाले किसी भी परिणाम या देनदारियां पूरी तरह से उपयोगकर्ता पर निर्भर करती हैं।" @@ -98,12 +98,12 @@ msgstr "केवल {accept} फ़ाइलें स्वीकार कर msgid "Account" msgstr "खाता" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "नया कस्टम फ़ील्ड जोड़ें" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "एक नया आइटम जोड़ें" @@ -146,7 +146,7 @@ msgstr "लिंक वाला कोई भी व्यक्ति बा msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "इस लिंक वाला कोई भी व्यक्ति बायोडाटा देख और डाउनलोड कर सकता है। इसे अपनी प्रोफ़ाइल पर या भर्तीकर्ताओं के साथ साझा करें।" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "क्या आप बाकई यह आइटम डिलीट करना चाहते हैं?" @@ -205,7 +205,7 @@ msgstr "बैकअप कोड" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "बैकअप कोड में केवल छोटे अक्षर या संख्याएँ हो सकती हैं, और बिल्कुल 10 अक्षर होने चाहिए।" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "के साथ निर्मित" msgid "By the community, for the community." msgstr "समुदाय द्वारा, समुदाय के लिए." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "नए पासवर्ड की पुष्टि करें" msgid "Continue" msgstr "जारी रखें" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "कॉपी करें" @@ -318,7 +318,7 @@ msgstr "फिर से शुरू करने के लिए लिंक msgid "Copy to Clipboard" msgstr "क्लिपबोर्ड पर कॉपी करें" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "बनाएँ" @@ -328,7 +328,7 @@ msgstr "बनाएँ" msgid "Create a new account" msgstr "एक नया खाता बनाएँ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "एक नया आइटम बनाएं" @@ -385,9 +385,9 @@ msgstr "दिनांक" msgid "Date or Date Range" msgstr "तारीख या तारीख सीमा" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "डाउनलोड PDF" msgid "Downloads" msgstr "डाउनलोड" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "प्रतिरूप" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" @@ -478,7 +478,7 @@ msgstr "किसी मौजूदा आइटम का नक़ल बन msgid "Duplicate an existing resume" msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "एडिट करें" @@ -575,7 +575,7 @@ msgstr "फ़ॉन्ट प्रकार" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "उदाहरण के लिए, आपने किन कंपनियों को यह बायोडाटा भेजा है, इसकी जानकारी या नौकरी विवरण के लिंक यहां नोट किए जा सकते हैं।" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "हटाएं" @@ -658,8 +658,8 @@ msgstr "यहां, आप अपने खाते की जानकार msgid "Here, you can update your profile to customize and personalize your experience." msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "छुपा हुआ" @@ -690,7 +690,7 @@ msgstr "अपना बायोडाटा सार्वजनिक रू msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "मुझे हमेशा रिएक्टिव रेज़्यूमे के उपयोगकर्ताओं से प्रतिक्रिया या समर्थन सुनना अच्छा लगता है। यहां कुछ संदेश हैं जो मुझे प्राप्त हुए हैं। यदि आपके पास कोई प्रतिक्रिया है, तो बेझिझक मुझे <0>{email} पर एक ईमेल भेजें." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "आइकॉन" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "जेसन" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "खोजशब्द:" @@ -809,7 +809,7 @@ msgstr "लेबल" msgid "Language" msgstr "भाषा" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "अंतिम अद्यतन {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "स्थान" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "मार्च 2023 - वर्तमान" msgid "Margin" msgstr "अंतर" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "मआईटी लाईसन्स" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "नाम" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "नाम" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "नेटवर्क" @@ -969,10 +969,6 @@ msgstr "नोट: इससे आपका खाता कम सुरक् msgid "Notes" msgstr "टिप्पणियाँ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "एक बारी पासवर्ड" @@ -984,7 +980,7 @@ msgstr "एक बारी पासवर्ड" msgid "Oops, the server returned an error." msgstr "ओह, सर्वर ने एक त्रुटि लौटा दी।" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "खोलें" msgid "Open Source" msgstr "खुला स्त्रोत" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI ने आपके टेक्स्ट के लिए कोई विकल्प नहीं लौटाया।" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI एकीकरण" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "स्थान" msgid "Powered by" msgstr "द्वारा संचालित" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "<0>सिंपल आइकॉन द्वारा संचालित" @@ -1167,7 +1166,7 @@ msgstr "रिएक्टिव रेज़्यूमे अपने जी msgid "Redo" msgstr "पुनः करें" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "हटाएं" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "हटाएँ पेज" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "सुविधाओं से भरपूर, कीमत से न msgid "Rounded" msgstr "गोल" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "परिवर्तन सेव करें" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "प्रशंसापत्र" msgid "Text Color" msgstr "अक्षरों का रंग" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "यह वैध OpenAI API कुंजी की तरह नहीं दिखता है।" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "आपके द्वारा दर्ज किया गया पासवर्ड मेल नहीं खाता है।" @@ -1475,7 +1466,7 @@ msgstr "थीम" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "ब्राउज़र से कनेक्ट करने में त्रुटि हुई. कृपया सुनिश्चित करें कि 'क्रोम' चल रहा है और पहुंच योग्य है।" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "फ़्लोटिंग टूलबार में पूर्ववत करें बटन पर क्लिक करके इस क्रिया को पूर्ववत किया जा सकता है।" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "वापस लाएं" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "बायोडाटा को अनलॉक करने से आ msgid "Unverified" msgstr "असत्यापित" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "उपयोगकर्ता के पास कोई संबद्ध 'रहस्य' रिकॉर्ड नहीं है. कृपया इस समस्या की रिपोर्ट GitHub पर करें।" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "उपयोगकर्ता नाम" @@ -1618,7 +1609,7 @@ msgstr "वैधीकृत करें" msgid "Validated" msgstr "वैधीकृत करें" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "मूल्य" @@ -1643,10 +1634,14 @@ msgstr "संस्करण 4" msgid "Views" msgstr "दृश्य" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "दर्शनीय" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "हम आपके ईमेल पते को केवल यह सुनिश्चित करने के लिए सत्यापित करते हैं कि यदि आप अपना पासवर्ड भूल जाते हैं तो हम आपको पासवर्ड रीसेट लिंक भेज सकते हैं।" @@ -1656,7 +1651,7 @@ msgstr "हम आपके ईमेल पते को केवल यह #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "वेबसाइट" msgid "What's new in the latest version" msgstr "नवीनतम संस्करण में नया क्या है" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।" @@ -1680,11 +1675,11 @@ msgstr "आप एकाधिक कीवर्ड को अल्पवि msgid "You can also enter your username." msgstr "आप अपना उपयोगकर्ता नाम भी दर्ज कर सकते हैं." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "आप सामग्री तैयार करने में मदद के लिए या अपना बायोडाटा बनाते समय अपने लेखन को बेहतर बनाने के लिए OpenAI API का उपयोग कर सकते हैं।" @@ -1692,7 +1687,7 @@ msgstr "आप सामग्री तैयार करने में म msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "आप सार्वजनिक साझाकरण को सक्षम करके यह ट्रैक कर सकते हैं कि आपके बायोडाटा को कितने बार देखा गया है, या कितने लोगों ने बायोडाटा डाउनलोड किया है।" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "आपके पास <0>अपनी स्वयं की OpenAI API कुंजी प्राप्त करने का विकल्प है. यह कुंजी आपको अपनी इच्छानुसार एपीआई का लाभ उठाने का अधिकार देती है। वैकल्पिक रूप से, यदि आप रिएक्टिव रेज़्यूमे में एआई सुविधाओं को पूरी तरह से अक्षम करना चाहते हैं, तो आप बस अपनी सेटिंग्स से कुंजी को हटा सकते हैं।" @@ -1709,7 +1704,7 @@ msgstr "आपको मेल प्राप्त हुआ है" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "आपका खाता और आपका सारा डेटा सफलतापूर्वक हटा दिया गया है। अलविदा!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "आपकी एपीआई कुंजी ब्राउज़र के स्थानीय भंडारण में सुरक्षित रूप से संग्रहीत है और इसका उपयोग केवल उनके आधिकारिक एसडीके के माध्यम से OpenAI से अनुरोध करते समय किया जाता है। निश्चिंत रहें कि आपकी कुंजी OpenAI की सेवाओं के साथ इंटरैक्ट करने के अलावा किसी भी बाहरी सर्वर पर प्रसारित नहीं होती है।" @@ -1732,3 +1727,4 @@ msgstr "ज़ूम इन" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "ज़ूम आउट" + diff --git a/apps/client/src/locales/hu-HU/messages.po b/apps/client/src/locales/hu-HU/messages.po index e7e9dfcc..86a8ba9d 100644 --- a/apps/client/src/locales/hu-HU/messages.po +++ b/apps/client/src/locales/hu-HU/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hu\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>A Reactive Resumet nagyrészt egyedül építettem a szabadidőmben, msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Biztos vagyok benne, hogy az alkalmazás nem tökéletes, de szeretném, ha az lenne.<1>Ha bármilyen problémával szembesültél az önéletrajzod elkészítése során, vagy van egy ötleted, ami segítene neked és más felhasználóknak az önéletrajzod könnyebb elkészítésében, írj egy problémát az adattárba, vagy küldj nekem egy e-mailt róla." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Megjegyzés: Az OpenAI API használatával Ön tudomásul veszi és elfogadja az OpenAI által meghatározott <1>felhasználási feltételeket és <2>adatvédelmi szabályzatot. Felhívjuk figyelmét, hogy a Reactive Resume nem vállal felelősséget a szolgáltatás nem megfelelő vagy jogosulatlan használatáért, és az ebből eredő következmények vagy felelősségek kizárólag a felhasználót terhelik." @@ -98,12 +98,12 @@ msgstr "Csak a következő fájlokat fogadja el: {accept}" msgid "Account" msgstr "Fiók" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Egyéni mező hozzáadása" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Elem hozzáadása" @@ -146,7 +146,7 @@ msgstr "A link birtokában bárki megtekintheti és letöltheti az önéletrajzo msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "A link birtokában bárki megtekintheti és letöltheti az önéletrajzot. Oszd meg a profilodon vagy a toborzókkal." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Biztosan törölni szeretnéd ezt az elemet?" @@ -205,7 +205,7 @@ msgstr "Biztonsági kód" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "A biztonsági kódok csak kisbetűket vagy számokat tartalmazhatnak, és pontosan 10 karakterből kell állniuk." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Készült" msgid "By the community, for the community." msgstr "A közösség által, a közösségért." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Új jelszó megerősítése" msgid "Continue" msgstr "Tovább" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Másolás" @@ -318,7 +318,7 @@ msgstr "Másolja a hivatkozást az önéletrajzhoz" msgid "Copy to Clipboard" msgstr "Másolás a vágólapra" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Létrehozás" @@ -328,7 +328,7 @@ msgstr "Létrehozás" msgid "Create a new account" msgstr "Új fiók létrehozása" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Új elem létrehozása" @@ -385,9 +385,9 @@ msgstr "Dátum" msgid "Date or Date Range" msgstr "Dátum vagy dátumtartomány" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "PDF letöltése" msgid "Downloads" msgstr "Letöltések" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplikálás" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Meglévő elem duplikálása" @@ -478,7 +478,7 @@ msgstr "Meglévő elem duplikálása" msgid "Duplicate an existing resume" msgstr "Meglévő önéletrajz duplikálása" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Szerkesztés" @@ -575,7 +575,7 @@ msgstr "Betűtípusok" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Itt például fel lehet jegyezni, hogy mely cégeknek küldte el az önéletrajzot, vagy hogy milyen linkek vezetnek az állásleírásokhoz." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Elfelejt" @@ -658,8 +658,8 @@ msgstr "Itt frissítheti fiókja adatait, például profilképét, nevét és fe msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Itt frissítheti profilját, hogy személyre szabhassa élményét." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Rejtett" @@ -690,7 +690,7 @@ msgstr "Önéletrajzának nyilvános eltárolása" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Mindig szívesen hallok visszajelzést vagy támogatást a Reactive Resume felhasználóitól. Íme néhány üzenet, amit kaptam. Ha bármilyen visszajelzése van, nyugodtan írjon nekem egy e-mailt a következő címre <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikon" @@ -793,9 +793,9 @@ msgstr "gipsz.jakab@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Kulcsszavak" @@ -809,7 +809,7 @@ msgstr "Címke" msgid "Language" msgstr "Nyelv" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Utoljára frissítve {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Helyszín" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "2023. március – jelen" msgid "Margin" msgstr "Margó" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT Licenc" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Név" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Név" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Honlap" @@ -969,10 +969,6 @@ msgstr "Megjegyzés: Ezzel fiókja kevésbé lesz biztonságos." msgid "Notes" msgstr "Jegyzetek" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Egyszer használható jelszó" @@ -984,7 +980,7 @@ msgstr "Egyszer használható jelszó" msgid "Oops, the server returned an error." msgstr "Hoppá, a szerver hibát jelzett." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Megnyitás" msgid "Open Source" msgstr "Nyílt forráskódú" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "Az OpenAI nem adott vissza semmilyen választási lehetőséget a szövegedre." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI integráció" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Pozíció" msgid "Powered by" msgstr "Powered by" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Készítette: <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "A Reactive Resume élénk közösségének köszönhetően virágzik. Ez msgid "Redo" msgstr "Redo" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Távolítsa el a" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Oldal eltávolítása" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Gazdag funkciókban, de nem az árképzésben." msgid "Rounded" msgstr "Kerekített" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Változások mentése" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Ajánlások" msgid "Text Color" msgstr "Szöveg színe" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Ez nem úgy néz ki, mint egy érvényes OpenAI API-kulcs." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "A megadott jelszavak nem egyeznek." @@ -1475,7 +1466,7 @@ msgstr "Téma" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Hiba történt a böngészőhöz való csatlakozásban. Kérjük, győződjön meg róla, hogy a 'chrome' fut és elérhető." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Ez a művelet a lebegő eszköztáron található visszavonás gombra kattintva visszaállítható." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Undo" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Az önéletrajz feloldása lehetővé teszi, hogy ismét változtatások msgid "Unverified" msgstr "Ellenőrizetlen" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Meglévő elem frissítése" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "A felhasználónak nincs kapcsolódó \"titkok\" rekordja. Kérjük, jelentse ezt a problémát a GitHubon." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Felhasználónév" @@ -1618,7 +1609,7 @@ msgstr "Érvényesítse a címet." msgid "Validated" msgstr "Érvényesített" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Érték" @@ -1643,10 +1634,14 @@ msgstr "4. verzió" msgid "Views" msgstr "Nézettség" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Látható" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Csak azért ellenőrizzük az e-mail címét, hogy küldhessünk Önnek egy jelszó-visszaállítási linket, ha elfelejtené a jelszavát." @@ -1656,7 +1651,7 @@ msgstr "Csak azért ellenőrizzük az e-mail címét, hogy küldhessünk Önnek #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Honlap" msgid "What's new in the latest version" msgstr "Újdonságok a legújabb verzióban" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy megnyomja az enter billentyűt." @@ -1680,11 +1675,11 @@ msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy msgid "You can also enter your username." msgstr "Megadhatja a felhasználónevét is." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Az OpenAI API-t felhasználhatja a tartalomgeneráláshoz, vagy az önéletrajz megírásakor javíthatja az íráskészségét." @@ -1692,7 +1687,7 @@ msgstr "Az OpenAI API-t felhasználhatja a tartalomgeneráláshoz, vagy az öné msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "A nyilvános megosztás engedélyezésével nyomon követheti, hogy hányan tekintették meg önéletrajzát, vagy hányan töltötték le azt." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Lehetősége van <0>saját OpenAI API-kulcsot szerezni. Ez a kulcs lehetővé teszi, hogy az API-t saját belátása szerint használhassa. Alternatív megoldásként, ha teljesen le szeretné tiltani a Reactive Resume AI funkcióit, egyszerűen eltávolíthatja a kulcsot a beállításai közül." @@ -1709,7 +1704,7 @@ msgstr "Levelet kaptál!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "A fiókja és minden adata sikeresen törlődött. Viszontlátásra!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Az API-kulcs biztonságosan tárolódik a böngésző helyi tárolójában, és csak akkor kerül felhasználásra, amikor a hivatalos SDK-n keresztül kéréseket intéz az OpenAI-hoz. Biztos lehet benne, hogy a kulcsa nem kerül továbbításra semmilyen külső szerverre, kivéve, amikor az OpenAI szolgáltatásaival lép kapcsolatba." @@ -1732,3 +1727,4 @@ msgstr "Nagyítás" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Kicsinyítés" + diff --git a/apps/client/src/locales/id-ID/messages.po b/apps/client/src/locales/id-ID/messages.po index cf5addf2..01e4fef4 100644 --- a/apps/client/src/locales/id-ID/messages.po +++ b/apps/client/src/locales/id-ID/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: id\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -38,7 +38,7 @@ msgstr "<0>Saya membuat Reactive Resume sendiri seringnya di waktu senggang, den msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Saya yakin aplikasi ini belum sempurna, tetapi saya ingin aplikasi ini sempurna.<1>Jika Anda menghadapi masalah apa pun saat membuat resume, atau memiliki ide yang dapat membantu Anda dan pengguna lain dalam membuat resume dengan lebih mudah, kirimkan masalah ke repositori atau kirimkan email kepada saya." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Catatan: Dengan menggunakan API OpenAI, Anda mengakui dan menerima <1>persyaratan penggunaan dan <2>kebijakan privasi yang diuraikan oleh OpenAI. Harap diperhatikan bahwa Reactive Resume tidak bertanggung jawab atas penggunaan layanan yang tidak tepat atau tidak sah, dan segala dampak atau kewajiban yang timbul sepenuhnya menjadi tanggung jawab pengguna." @@ -98,12 +98,12 @@ msgstr "Hanya menerima file {accept}" msgid "Account" msgstr "Akun" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Tambahkan kolom kustom" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Tambah item baru" @@ -144,9 +144,9 @@ msgstr "Siapa pun yang memiliki tautan dapat melihat dan mengunduh resume." #: apps/client/src/pages/builder/_components/toolbar.tsx:54 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "Siapa pun yang memiliki tautan ini dapat melihat dan mengunduh resume. Bagikan di profil Anda atau dengan perekrut." +msgstr "Siapa pun yang memiliki tautan ini dapat melihat dan mengunduh resume tesebut. Bagikan di profil Anda atau dengan para perekrut." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Apakah Anda yakin Anda ingin menghapus item ini?" @@ -205,7 +205,7 @@ msgstr "Kode Cadangan" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Kode Cadangan hanya boleh berisi huruf kecil atau angka, dan harus tepat 10 karakter." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -233,9 +233,9 @@ msgstr "Dibangun dengan" #: apps/client/src/components/copyright.tsx:27 #: apps/client/src/pages/home/sections/contributors/index.tsx:20 msgid "By the community, for the community." -msgstr "Oleh masyarakat, untuk masyarakat." +msgstr "Oleh komunitas, untuk komunitas." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,19 +306,19 @@ msgstr "Konfirmasi Kata Sandi Baru" msgid "Continue" msgstr "Lanjutkan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Salin" #: apps/client/src/pages/builder/_components/toolbar.tsx:146 msgid "Copy Link to Resume" -msgstr "Salin Tautan ke Lanjutkan" +msgstr "Salin Tautan ke Resume" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 msgid "Copy to Clipboard" msgstr "Menyalin ke Papan Klip" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Membuat" @@ -328,7 +328,7 @@ msgstr "Membuat" msgid "Create a new account" msgstr "Membuat akun baru" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Membuat item baru" @@ -385,9 +385,9 @@ msgstr "Tanggal" msgid "Date or Date Range" msgstr "Tanggal atau Rentang Tanggal" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -435,7 +435,7 @@ msgstr "Belum memiliki akun?" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83 msgid "Don't know where to begin? Hit the docs!" -msgstr "Tidak tahu harus mulai dari mana? Buka dokumen!" +msgstr "Tidak tahu mulai dari mana? Buka dokumen!" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 msgid "Don't see your language? <0>Help translate the app." @@ -443,7 +443,7 @@ msgstr "Tidak melihat bahasa Anda? <0>Bantu menerjemahkan aplikasi." #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40 msgid "Donate to Reactive Resume" -msgstr "Donasi ke Lanjutkan Reaktif" +msgstr "Sumbangan ke Reactive Resume" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." @@ -462,23 +462,23 @@ msgstr "Unduh PDF" msgid "Downloads" msgstr "Unduhan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplikat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Menduplikasi item yang sudah ada" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:178 msgid "Duplicate an existing resume" -msgstr "Menduplikasi resume yang sudah ada" +msgstr "Menggandakan resume yang sudah ada" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Sunting" @@ -508,7 +508,7 @@ msgstr "Masukkan salah satu dari 10 kode cadangan yang Anda simpan saat mengakti #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Masukkan Ikon Phosphor" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -528,11 +528,11 @@ msgstr "Kesalahan" #: apps/client/src/pages/home/sections/support/index.tsx:78 msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!" -msgstr "Meskipun Anda tidak dalam posisi untuk berkontribusi secara finansial, Anda masih bisa membuat perbedaan dengan memberikan bintang pada repositori GitHub, menyebarkannya ke teman-teman Anda, atau mengirimkan pesan singkat untuk memberi tahu saya bagaimana Reactive Resume telah membantu Anda. Umpan balik dan dukungan Anda selalu diterima dan sangat kami hargai!" +msgstr "Meskipun Anda belum bisa berkontribusi secara finansial, Anda masih bisa berkontribusi dengan cara memberikan bintang pada repositori GitHub, menyebarkannya ke teman-teman Anda, atau mengirimkan pesan singkat kepada saya bagaimana Reactive Resume telah membantu Anda. Umpan balik dan dukungan Anda selalu diterima dan sangat kami hargai!" #: apps/client/src/pages/home/sections/templates/index.tsx:12 msgid "Explore the templates available in Reactive Resume and view the resumes crafted with them. They could also serve as examples to help guide the creation of your next resume." -msgstr "Jelajahi templat yang tersedia di Reactive Resume dan lihat resume yang dibuat dengan templat tersebut. Templat ini juga dapat digunakan sebagai contoh untuk membantu memandu pembuatan resume Anda berikutnya." +msgstr "Jelajahi templat yang tersedia di Reactive Resume dan melihat resume yang dibuat dengan templat tersebut. Templat ini juga dapat digunakan sebagai contoh untuk membantu dalam pembuatan resume Anda." #: apps/client/src/pages/builder/sidebars/right/index.tsx:111 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 @@ -573,9 +573,9 @@ msgstr "Varian Font" #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:35 msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "Misalnya, informasi mengenai perusahaan mana yang Anda kirimkan resume ini atau tautan ke deskripsi pekerjaan dapat dicatat di sini." +msgstr "Misalnya, informasi mengenai perusahaan mana yang Anda kirim resume tersebut atau tautan ke deskripsi pekerjaan dapat dicatat di sini." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Lupakan." @@ -594,7 +594,7 @@ msgstr "Format" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49 msgid "Found a bug, or have an idea for a new feature?" -msgstr "Menemukan bug, atau punya ide untuk fitur baru?" +msgstr "Ada bug, atau ide untuk fitur baru?" #: apps/client/src/pages/home/sections/features/index.tsx:46 msgid "Free, forever" @@ -658,8 +658,8 @@ msgstr "Di sini, Anda dapat memperbarui informasi akun Anda seperti gambar profi msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Di sini, Anda dapat memperbarui profil Anda untuk menyesuaikan dan mempersonalisasi pengalaman Anda." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Tersembunyi" @@ -690,7 +690,7 @@ msgstr "Tampilkan resume Anda secara publik" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Saya selalu senang mendengar dari para pengguna Reactive Resume dengan umpan balik atau dukungan. Berikut adalah beberapa pesan yang saya terima. Jika Anda memiliki umpan balik, jangan ragu untuk mengirimi saya email di <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikon" @@ -705,7 +705,7 @@ msgstr "Jika Anda menonaktifkan autentikasi dua faktor, Anda tidak akan lagi dim #: apps/client/src/pages/home/sections/support/index.tsx:59 msgid "If you're multilingual, we'd love your help in bringing the app to more languages and communities. Don't worry if you don't see your language on the list - just give me a shout-out on GitHub, and I'll make sure to include it. Ready to get started? Jump into translation over at Crowdin by clicking the link below." -msgstr "Jika Anda multibahasa, kami akan sangat senang jika Anda bisa membantu kami menghadirkan aplikasi ini ke lebih banyak bahasa dan komunitas. Jangan khawatir jika Anda tidak melihat bahasa Anda dalam daftar - cukup beri tahu saya di GitHub, dan saya akan memastikan untuk memasukkannya. Siap untuk memulai? Langsung saja mulai menerjemahkan di Crowdin dengan mengeklik tautan di bawah ini." +msgstr "Jika Anda memliki kemampuan multibahasa, kami akan sangat senang jika Anda bisa membantu kami menghadirkan aplikasi ini ke lebih banyak bahasa dan komunitas. Jangan khawatir jika Anda tidak melihat bahasa Anda dalam daftar - cukup beri tahu saya di GitHub, dan saya akan memastikan untuk memasukkannya. Siap untuk memulai? Langsung saja mulai menerjemahkan di Crowdin dengan mengeklik tautan di bawah ini." #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 msgid "Import" @@ -719,11 +719,11 @@ msgstr "Mengimpor resume yang sudah ada" #: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" -msgstr "Meningkatkan Menulis" +msgstr "Meningkatkan kualitasPenulisan" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:188 msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "Jika Anda tidak dapat memindai Kode QR ini, Anda juga dapat menyalin-tempel tautan ini ke dalam aplikasi autentikator Anda." +msgstr "Jika Anda tidak dapat memindai Kode QR ini, Anda juga dapat menyalin dan tempel tautan ini ke dalam aplikasi autentikator Anda." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70 msgid "In this section, you can change your password and enable/disable two-factor authentication." @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Kata kunci" @@ -809,7 +809,7 @@ msgstr "Label" msgid "Language" msgstr "Bahasa" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Terakhir diperbarui {lastUpdated}" @@ -834,7 +834,7 @@ msgstr "Tingkat" #: apps/client/src/components/copyright.tsx:16 msgid "Licensed under <0>MIT" -msgstr "Dilisensikan di bawah <0>MIT" +msgstr "Berlisensi <0>MIT" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:86 msgid "Light" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Lokasi" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "Maret 2023 - Sekarang" msgid "Margin" msgstr "Margin" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "Lisensi MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nama" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nama" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Jaringan" @@ -969,10 +969,6 @@ msgstr "Catatan: Hal ini akan membuat akun Anda kurang aman." msgid "Notes" msgstr "Catatan" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Kata Sandi Sekali Pakai" @@ -984,7 +980,7 @@ msgstr "Kata Sandi Sekali Pakai" msgid "Oops, the server returned an error." msgstr "Ups, server mengembalikan kesalahan." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Buka" msgid "Open Source" msgstr "Sumber Terbuka" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks Anda." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integrasi OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,9 +1092,9 @@ msgstr "Posisi" msgid "Powered by" msgstr "Didukung oleh" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" -msgstr "Didukung oleh <0>Ikon Sederhana" +msgstr "Didukung oleh <0>Simple Icons" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 msgid "Primary Color" @@ -1145,7 +1144,7 @@ msgstr "Mengajukan masalah" #: apps/client/src/pages/public/page.tsx:73 #: apps/client/src/pages/public/page.tsx:94 msgid "Reactive Resume" -msgstr "Melanjutkan Kembali" +msgstr "Reactive Resume" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 msgid "Reactive Resume has helped people land jobs at these great companies:" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume berkembang berkat komunitasnya yang dinamis. Proyek ini msgid "Redo" msgstr "Ulangi." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Menghapus" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Hapus Halaman" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1216,24 +1215,24 @@ msgstr "Resume yang Dihasilkan" #: apps/client/src/pages/home/sections/features/index.tsx:105 msgid "Rich in features, not in pricing." -msgstr "Kaya akan fitur, bukan harga." +msgstr "Kaya di fitur, bukan di harga." #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:144 msgid "Rounded" msgstr "Bulat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Menyimpan Perubahan" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1284,7 +1283,7 @@ msgstr "Kirimi saya pesan" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "Tautan Terpisah" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1351,7 +1350,7 @@ msgstr "Daftar" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "Masuk melalui email saat ini dinonaktifkan oleh administrator." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "Testimonial" msgid "Text Color" msgstr "Warna Teks" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Itu tidak terlihat seperti kunci API OpenAI yang valid." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Kata sandi yang Anda masukkan tidak cocok." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Terjadi kesalahan saat menghubungkan ke browser. Pastikan 'chrome' berjalan dan dapat dijangkau." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Tindakan ini dapat dikembalikan dengan mengeklik tombol undo di toolbar mengambang." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Membatalkan" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Membuka kunci resume akan memungkinkan Anda untuk membuat perubahan lagi msgid "Unverified" msgstr "Tidak diverifikasi" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Memperbarui item yang sudah ada" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Pengguna tidak memiliki catatan 'rahasia' yang terkait. Silakan laporkan masalah ini di GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nama pengguna" @@ -1618,7 +1609,7 @@ msgstr "Memvalidasi" msgid "Validated" msgstr "Tervalidasi" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Nilai" @@ -1643,10 +1634,14 @@ msgstr "Versi 4" msgid "Views" msgstr "Tampilan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Terlihat" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Kami memverifikasi alamat email Anda hanya untuk memastikan bahwa kami dapat mengirimkan tautan pengaturan ulang kata sandi jika Anda lupa kata sandi." @@ -1656,7 +1651,7 @@ msgstr "Kami memverifikasi alamat email Anda hanya untuk memastikan bahwa kami d #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Situs web" msgid "What's new in the latest version" msgstr "Apa yang baru dalam versi terbaru" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan koma atau menekan enter." @@ -1680,11 +1675,11 @@ msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan k msgid "You can also enter your username." msgstr "Anda juga dapat memasukkan nama pengguna Anda." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Anda dapat memanfaatkan API OpenAI untuk membantu Anda menghasilkan konten, atau meningkatkan tulisan Anda saat membuat resume." @@ -1692,7 +1687,7 @@ msgstr "Anda dapat memanfaatkan API OpenAI untuk membantu Anda menghasilkan kont msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Anda dapat melacak jumlah tampilan yang diterima resume Anda, atau berapa banyak orang yang telah mengunduh resume dengan mengaktifkan berbagi publik." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Anda memiliki opsi untuk <0>mendapatkan kunci API OpenAI Anda sendiri. Kunci ini memberdayakan Anda untuk memanfaatkan API sesuai keinginan Anda. Atau, jika Anda ingin menonaktifkan fitur AI di Reactive Resume, Anda cukup menghapus kunci dari pengaturan Anda." @@ -1709,7 +1704,7 @@ msgstr "Kau punya surat!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Akun Anda dan semua data Anda telah berhasil dihapus. Selamat tinggal!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Kunci API Anda disimpan dengan aman di penyimpanan lokal peramban dan hanya digunakan ketika membuat permintaan ke OpenAI melalui SDK resmi mereka. Yakinlah bahwa kunci Anda tidak dikirimkan ke server eksternal mana pun kecuali saat berinteraksi dengan layanan OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Perbesar" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Perkecil" + diff --git a/apps/client/src/locales/it-IT/messages.po b/apps/client/src/locales/it-IT/messages.po index f86f2acc..68f03340 100644 --- a/apps/client/src/locales/it-IT/messages.po +++ b/apps/client/src/locales/it-IT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: it\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Ho creato Reactive Resume principalmente da solo durante il mio tempo msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Sono sicuro che l'app non è perfetta, ma mi piacerebbe che lo fosse. <1>Se hai riscontrato problemi durante la creazione del tuo curriculum o hai un'idea che potrebbe aiutare te e altri utenti a creare il tuo curriculum più facilmente, lascia un problema nel repository o inviami un'email a riguardo." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Nota: Utilizzando l'API OpenAI, riconosci e accetti i <1>termini di utilizzo e <2>informativa sulla privacy delineato da OpenAI. Si prega di notare che Reactive Resume non si assume alcuna responsabilità per qualsiasi utilizzo improprio o non autorizzato del servizio e che eventuali ripercussioni o responsabilità risultanti ricadono esclusivamente sull'utente." @@ -98,12 +98,12 @@ msgstr "Accetta solo {accept} file" msgid "Account" msgstr "Account" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Aggiungi un campo personalizzato" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Aggiungi nuovo elemento" @@ -146,7 +146,7 @@ msgstr "Chiunque abbia il collegamento può visualizzare e scaricare il curricul msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Chiunque abbia questo link può visualizzare e scaricare il curriculum. Condividilo sul tuo profilo o con i reclutatori." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Sei sicuro di voler eliminare questo articolo?" @@ -205,7 +205,7 @@ msgstr "Codice di Backup" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "I codici di backup possono contenere solo lettere minuscole o numeri e devono contenere esattamente 10 caratteri." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Costruito con" msgid "By the community, for the community." msgstr "Dalla comunità, per la comunità." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Conferma nuova password" msgid "Continue" msgstr "Continuare" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Copia" @@ -318,7 +318,7 @@ msgstr "Copia collegamento per riprendere" msgid "Copy to Clipboard" msgstr "Copia negli appunti" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Crea" @@ -328,7 +328,7 @@ msgstr "Crea" msgid "Create a new account" msgstr "Crea un nuovo account" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Crea un nuovo elemento" @@ -385,9 +385,9 @@ msgstr "Data" msgid "Date or Date Range" msgstr "Data o Intervallo di date" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Scarica PDF" msgid "Downloads" msgstr "Downloads" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplica" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplica un elemento esistente" @@ -478,7 +478,7 @@ msgstr "Duplica un elemento esistente" msgid "Duplicate an existing resume" msgstr "Duplica un curriculum esistente" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Modifica" @@ -575,7 +575,7 @@ msgstr "Varianti di carattere" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Per esempio, qui si possono annotare le informazioni relative alle aziende a cui ha inviato il curriculum o i link alle descrizioni del lavoro." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Dimentica" @@ -658,8 +658,8 @@ msgstr "Qui puoi aggiornare le informazioni del tuo account come l'immagine del msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Qui può aggiornare il suo profilo per personalizzare la sua esperienza." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Nascosto" @@ -690,7 +690,7 @@ msgstr "Ospita il tuo curriculum pubblicamente" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Mi fa sempre piacere ricevere feedback o supporto dagli utenti di Reactive Resume. Ecco alcuni dei messaggi che ho ricevuto. Se hai commenti, non esitare a mandarmi un'e-mail a <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Icona" @@ -793,9 +793,9 @@ msgstr "mario.rossi@esempio.it" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Parole chiave" @@ -809,7 +809,7 @@ msgstr "Etichetta" msgid "Language" msgstr "Lingua" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Ultimo aggiornamento: {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Posizione" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "Marzo 2023 - Presente" msgid "Margin" msgstr "Margine" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "Licenza MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nome" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nome" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Rete" @@ -969,10 +969,6 @@ msgstr "Nota: ciò renderà il tuo account meno sicuro." msgid "Notes" msgstr "Note" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Password monouso" @@ -984,7 +980,7 @@ msgstr "Password monouso" msgid "Oops, the server returned an error." msgstr "Spiacenti, il server ha restituito un errore." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Apri" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI non ha restituito alcuna scelta per il tuo testo." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integrazione OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Posizione" msgid "Powered by" msgstr "Offerto da" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Offerto da <0>Icone semplici" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume prospera grazie alla sua vivace comunità. Questo proget msgid "Redo" msgstr "Ritorna" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Rimuovi" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Rimuovi pagina" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Ricco di funzionalità, non di prezzi." msgid "Rounded" msgstr "Arrotondato" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Salva le modifiche" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Salvato" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1351,7 +1350,7 @@ msgstr "Registrazione" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "L'accesso via e-mail è attualmente disattivato dall'amministratore." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "Testimonial" msgid "Text Color" msgstr "Colore del testo" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Non sembra una chiave API OpenAI valida." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Le password inserite non corrispondono." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Si è verificato un errore durante la connessione al browser. Assicurati che \"chrome\" sia in esecuzione e raggiungibile." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Questa azione può essere annullata cliccando sul pulsante Annulla nella barra degli strumenti fluttuante." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Annulla" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Sbloccando un curriculum potrà modificarlo nuovamente." msgid "Unverified" msgstr "Non verificato" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Aggiorna un elemento esistente" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "L'utente non ha un record 'segreti' associato. La preghiamo di segnalare questo problema su GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nome utente" @@ -1618,7 +1609,7 @@ msgstr "Convalida" msgid "Validated" msgstr "Convalidato" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Valore" @@ -1643,10 +1634,14 @@ msgstr "Versione 4" msgid "Views" msgstr "Visualizzazioni" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Visibile" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Verifichiamo il suo indirizzo e-mail solo per assicurarci di poterle inviare un link per la reimpostazione della password nel caso in cui la dimentichi." @@ -1656,7 +1651,7 @@ msgstr "Verifichiamo il suo indirizzo e-mail solo per assicurarci di poterle inv #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Sito Web" msgid "What's new in the latest version" msgstr "Cosa c'è di nuovo nell'ultima versione" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio." @@ -1680,11 +1675,11 @@ msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premend msgid "You can also enter your username." msgstr "Può anche inserire il suo nome utente." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Può utilizzare l'API OpenAI per aiutarla a generare contenuti, o migliorare la sua scrittura mentre compone il suo curriculum." @@ -1692,7 +1687,7 @@ msgstr "Può utilizzare l'API OpenAI per aiutarla a generare contenuti, o miglio msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Può monitorare il numero di visualizzazioni che il suo curriculum ha ricevuto, o quante persone hanno scaricato il curriculum abilitando la condivisione pubblica." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Ha la possibilità di <0>ottenere una propria chiave API OpenAI. Questa chiave le consente di sfruttare l'API come ritiene opportuno. In alternativa, se desidera disattivare completamente le funzioni AI in Reactive Resume, può semplicemente rimuovere la chiave dalle sue impostazioni." @@ -1709,7 +1704,7 @@ msgstr "C’è posta per te!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Il tuo account e tutti i tuoi dati sono stati eliminati con successo. Arrivederci!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "La tua chiave API è archiviata in modo sicuro nella memoria locale del browser e viene utilizzata solo quando si effettuano richieste a OpenAI tramite il loro SDK ufficiale. Stai certo che la tua chiave non verrà trasmessa a nessun server esterno tranne quando interagisci con i servizi di OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Ingrandisci" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Rimpicciolisci" + diff --git a/apps/client/src/locales/ja-JP/messages.po b/apps/client/src/locales/ja-JP/messages.po index 5541f0bc..060e5c04 100644 --- a/apps/client/src/locales/ja-JP/messages.po +++ b/apps/client/src/locales/ja-JP/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ja\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -38,7 +38,7 @@ msgstr "<0>Reactive Resumeは、素晴らしいオープンソースコントリ msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>このアプリは完璧ではないと思いますが、完璧にしたいと思っています。<1>もし履歴書作成中に問題に直面したり、あなたや他のユーザーがもっと簡単に履歴書を作成できるようなアイデアがあれば、リポジトリにissueを作成するか、私にメールを送ってください。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>注意:OpenAI APIを利用することにより、利用者はOpenAIの<1>利用規約と <2>プライバシーポリシーに同意したものとみなされます。Reactive Resumeは、サービスの不適切な利用や不正利用に対して一切の責任を負わず、その結果生じるいかなる影響や責任も利用者のみにあることにご注意ください。" @@ -98,12 +98,12 @@ msgstr "{accept} ファイルのみ" msgid "Account" msgstr "アカウント" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "カスタムフィールドを追加" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "アイテムを追加" @@ -146,7 +146,7 @@ msgstr "リンクを知っている人は誰でも履歴書を表示してダウ msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "このリンクを知っている人は誰でも履歴書を表示してダウンロードできます。あなたのプロフィールで共有するか採用担当者と共有しましょう。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "このアイテムを削除してもよろしいですか?" @@ -205,7 +205,7 @@ msgstr "バックアップコード" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "バックアップコードは小文字のアルファベットまたは数字のみを含んだ10文字である必要があります。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "利用したソフトウェア" msgid "By the community, for the community." msgstr "コミュニティによるコミュニティのための。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "新しいパスワードの確認" msgid "Continue" msgstr "続ける" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "コピー" @@ -318,7 +318,7 @@ msgstr "再開にリンクをコピー" msgid "Copy to Clipboard" msgstr "クリップボードにコピー" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "作成" @@ -328,7 +328,7 @@ msgstr "作成" msgid "Create a new account" msgstr "新しいアカウントを作成" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "新しいアイテムを作成" @@ -385,9 +385,9 @@ msgstr "日付" msgid "Date or Date Range" msgstr "日付または日付の範囲" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "PDFをダウンロード" msgid "Downloads" msgstr "ダウンロード" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplicate" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "既存のアイテムを複製" @@ -478,7 +478,7 @@ msgstr "既存のアイテムを複製" msgid "Duplicate an existing resume" msgstr "既存の履歴書を複製" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "編集" @@ -575,7 +575,7 @@ msgstr "Font Variants" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "例えば、どの会社にこの履歴書を送ったか、または仕事の説明へのリンクについての情報はここに記述することができる。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "忘れた" @@ -658,8 +658,8 @@ msgstr "ここでは、プロフィール画像、名前、ユーザー名など msgid "Here, you can update your profile to customize and personalize your experience." msgstr "ここでは、あなたの経験をカスタマイズし、パーソナライズするためにプロフィールを更新することができます。" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Hidden" @@ -690,7 +690,7 @@ msgstr "あなたの履歴書を公開してください" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "私はいつもReactive Resume のユーザーからフィードバックやサポートを受けて聞くのが大好きです。 私が受け取ったメッセージの一部をご紹介します。フィードバックがあれば、お気軽に<0>{email}までメールをお送りください。" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "アイコン" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "キーワード" @@ -809,7 +809,7 @@ msgstr "ラベル" msgid "Language" msgstr "言語" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "最終更新 {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "場所" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "2023年3月-現在" msgid "Margin" msgstr "マージン(マージン)" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT ライセンス" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "名前" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "名前" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "ネットワーク" @@ -969,10 +969,6 @@ msgstr "注意: これにより、アカウントの安全性が低下します msgid "Notes" msgstr "メモ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "ワンタイムパスワード" @@ -984,7 +980,7 @@ msgstr "ワンタイムパスワード" msgid "Oops, the server returned an error." msgstr "サーバーがエラーを返しました。" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "開く" msgid "Open Source" msgstr "オープンソース" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAIはテキストの選択肢を返しませんでした。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI 統合" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "位置" msgid "Powered by" msgstr "Powered by" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Powered by <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume は、その活気に満ちたコミュニティのお msgid "Redo" msgstr "Redo" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "削除" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "ページを削除" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "豊富な機能、価格設定ではありません。" msgid "Rounded" msgstr "四捨五入済み" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "変更を保存" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Testimonials" msgid "Text Color" msgstr "テキストの色" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "有効な OpenAI API キーのようには見えません。" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "入力したパスワードが一致しません。" @@ -1475,7 +1466,7 @@ msgstr "テーマ" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "ブラウザへの接続中にエラーが発生しました。「chrome」が実行され、到達可能であることを確認してください。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "この操作は、フローティングツールバーの undo ボタンをクリックすることで元に戻すことができます。" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "元に戻す" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "履歴書のロックを解除すると、再び変更することがで msgid "Unverified" msgstr "未認証" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "既存のアイテムを更新" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "ユーザーには関連する「秘密」レコードがありません。GitHubでこの問題を報告してください。" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "ユーザー名" @@ -1618,7 +1609,7 @@ msgstr "Validate" msgid "Validated" msgstr "検証済み" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "値" @@ -1643,10 +1634,14 @@ msgstr "バージョン4" msgid "Views" msgstr "ビュー" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "表示" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "パスワードを忘れた場合に備えて、パスワードリセットリンクを送信できるようにメールアドレスを確認します。" @@ -1656,7 +1651,7 @@ msgstr "パスワードを忘れた場合に備えて、パスワードリセッ #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Webサイト" msgid "What's new in the latest version" msgstr "最新バージョンの新機能" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "複数のキーワードを追加するには、カンマで区切るか、Enterキーを押します。" @@ -1680,11 +1675,11 @@ msgstr "複数のキーワードを追加するには、カンマで区切るか msgid "You can also enter your username." msgstr "ユーザー名を入力することもできます。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "OpenAI API を使用して、コンテンツを生成したり、履歴書を作成したりする際に書き込みを改善したりできます。" @@ -1692,7 +1687,7 @@ msgstr "OpenAI API を使用して、コンテンツを生成したり、履歴 msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "公開共有を有効にすることで、履歴書が受信した閲覧数や履歴書をダウンロードした人数を追跡できます。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "<0>あなた自身のOpenAI APIキーを取得するオプションがあります。このキーは、あなたが適切にAPIを活用することを可能にします。 Reactive Resume で AI 機能を完全に無効にしたい場合は、設定からキーを削除することもできます。" @@ -1709,7 +1704,7 @@ msgstr "メールを受け取りました!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "アカウントとすべてのデータが正常に削除されました。さようなら!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "API キーはブラウザーのローカルストレージに安全に保存され、公式の SDK 経由で OpenAI へのリクエストを行う場合にのみ使用されます。 OpenAIのサービスと相互作用する場合を除き、キーが外部サーバーに送信されることはありませんのでご安心ください。" @@ -1732,3 +1727,4 @@ msgstr "拡大" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "ズームアウト" + diff --git a/apps/client/src/locales/km-KH/messages.po b/apps/client/src/locales/km-KH/messages.po index ebc86bb0..e904f0f2 100644 --- a/apps/client/src/locales/km-KH/messages.po +++ b/apps/client/src/locales/km-KH/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: km\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Khmer\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/kn-IN/messages.po b/apps/client/src/locales/kn-IN/messages.po index cd20ce23..f750286f 100644 --- a/apps/client/src/locales/kn-IN/messages.po +++ b/apps/client/src/locales/kn-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: kn\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Kannada\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>ನನ್ನ ಬಿಡುವಿನ ವೇಳೆಯಲ್ಲಿ ನಾ msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>ಅಪ್ಲಿಕೇಶನ್ ಪರಿಪೂರ್ಣವಾಗಿಲ್ಲ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ, ಆದರೆ ಅದು ಸಂಪೂರ್ಣ ಇರಬೇಕೆಂದು ನಾನು ಬಯಸುತ್ತೇನೆ. <1>ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನೀವು ಯಾವುದೇ ಸಮಸ್ಯೆಗಳನ್ನು ಎದುರಿಸಿದರೆ ಅಥವಾ ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚು ಸುಲಭವಾಗಿ ರಚಿಸುವಲ್ಲಿ ನಿಮಗೆ ಮತ್ತು ಇತರ ಬಳಕೆದಾರರಿಗೆ ಸಹಾಯ ಮಾಡುವ ಕಲ್ಪನೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, ರೆಪೊಸಿಟರಿಯಲ್ಲಿ ಸಮಸ್ಯೆಯನ್ನು ಬಿಡಿ ಅಥವಾ ಅದರ ಬಗ್ಗೆ ನನಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿ." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>ಗಮನಿಸಿ: OpenAI API ಅನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು <1> ಬಳಕೆಯ ನಿಯಮಗಳನ್ನು ಅಂಗೀಕರಿಸುತ್ತೀರಿ ಮತ್ತು ಸಮ್ಮತಿಸುತ್ತೀರಿ ಮತ್ತು <2>ಗೌಪ್ಯತೆ ನೀತಿ OpenAI ನಿಂದ ವಿವರಿಸಲಾಗಿದೆ. ಸೇವೆಯ ಯಾವುದೇ ಅಸಮರ್ಪಕ ಅಥವಾ ಅನಧಿಕೃತ ಬಳಕೆಗೆ ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭವು ಯಾವುದೇ ಜವಾಬ್ದಾರಿಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ ಮತ್ತು ಯಾವುದೇ ಪರಿಣಾಮವಾಗಿ ಉಂಟಾಗುವ ಪರಿಣಾಮಗಳು ಅಥವಾ ಹೊಣೆಗಾರಿಕೆಗಳು ಬಳಕೆದಾರರ ಮೇಲೆ ಮಾತ್ರ ಅವಲಂಬಿತವಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ." @@ -98,12 +98,12 @@ msgstr "{accept} ಫೈಲ್‌ಗಳನ್ನು ಮಾತ್ರ ಸ್ವೀ msgid "Account" msgstr "ಖಾತೆಗಳು" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸಿ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ" @@ -146,7 +146,7 @@ msgstr "ಲಿಂಕ್ ಹೊಂದಿರುವ ಯಾರಾದರೂ ರೆಸ msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "ಈ ಲಿಂಕ್ ಹೊಂದಿರುವ ಯಾರಾದರೂ ರೆಸ್ಯೂಮ್ ಅನ್ನು ವೀಕ್ಷಿಸಬಹುದು ಮತ್ತು ಡೌನ್‌ಲೋಡ್ ಮಾಡಬಹುದು. ಅದನ್ನು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್‌ನಲ್ಲಿ ಅಥವಾ ನೇಮಕಾತಿದಾರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "ಈ ಐಟಂ ಅನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" @@ -205,7 +205,7 @@ msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್‌ಗಳು ಸಣ್ಣ ಅಕ್ಷರಗಳು ಅಥವಾ ಸಂಖ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು ಮತ್ತು ನಿಖರವಾಗಿ 10 ಅಕ್ಷರಗಳಾಗಿರಬೇಕು." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "ಇದರೊಂದಿಗೆ ನಿರ್ಮಿಸಲಾಗಿದೆ" msgid "By the community, for the community." msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ದೃಢೀಕರಿಸ msgid "Continue" msgstr "ಮುಂದುವರಿಸಿ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "ನಕಲು ಮಾಡಿ" @@ -318,7 +318,7 @@ msgstr "ರೆಸ್ಯೂಮ್‌ ಲಿಂಕ್ ಅನ್ನು ನಕಲಿ msgid "Copy to Clipboard" msgstr "ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ನಕಲಿಸಿ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "ರಚಿಸಿ" @@ -328,7 +328,7 @@ msgstr "ರಚಿಸಿ" msgid "Create a new account" msgstr "ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "ಹೊಸ ಐಟಂ ರಚಿಸಿ" @@ -385,9 +385,9 @@ msgstr "ದಿನಾಂಕ" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "ಡೌನ್‌ಲೋಡ್‌ಗಳು" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "ನಕಲು" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನಕಲು ಮಾಡಿ" @@ -478,7 +478,7 @@ msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನ msgid "Duplicate an existing resume" msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಕಲು ಮಾಡಿ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "ತಿದ್ದು" @@ -575,7 +575,7 @@ msgstr "ಅಕ್ಷರಗಳ ರೂಪಾಂತರಗಳು" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "ಉದಾಹರಣೆಗೆ, ನೀವು ಈ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಯಾವ ಕಂಪನಿಗಳಿಗೆ ಕಳುಹಿಸಿದ್ದೀರಿ ಅಥವಾ ಉದ್ಯೋಗ ವಿವರಣೆಗಳ ಲಿಂಕ್‌ಗಳನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಬಹುದು." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "ಮರೆತುಬಿಡಿ" @@ -658,8 +658,8 @@ msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಚಿತ್ msgid "Here, you can update your profile to customize and personalize your experience." msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "ಮರೆಮಾಡಲಾಗಿದೆ" @@ -690,7 +690,7 @@ msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಸಾರ್ವ msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "ಪ್ರತಿಕ್ರಿಯೆ ಅಥವಾ ಬೆಂಬಲದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ ಬಳಕೆದಾರರಿಂದ ಕೇಳಲು ನಾನು ಯಾವಾಗಲೂ ಇಷ್ಟಪಡುತ್ತೇನೆ. ನಾನು ಸ್ವೀಕರಿಸಿದ ಕೆಲವು ಸಂದೇಶಗಳು ಇಲ್ಲಿವೆ. ನೀವು ಯಾವುದೇ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, <0>{email} ನಲ್ಲಿ ನನಗೆ ಇಮೇಲ್ ಅನ್ನು ಡ್ರಾಪ್ ಮಾಡಲು ಹಿಂಜರಿಯಬೇಡಿ." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "ಐಕಾನ್" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "ಕೀವರ್ಡ್‌ಗಳು" @@ -809,7 +809,7 @@ msgstr "ಲೇಬಲ್" msgid "Language" msgstr "ಭಾಷೆ" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "ಸ್ಥಳ" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ" msgid "Margin" msgstr "ಅಂಚು" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT ಪರವಾನಗಿ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "ಹೆಸರು" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "ಹೆಸರು" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "ನೆಟ್ವರ್ಕ್" @@ -969,10 +969,6 @@ msgstr "ಗಮನಿಸಿ: ಇದು ನಿಮ್ಮ ಖಾತೆಯನ್ನ msgid "Notes" msgstr "ಟಿಪ್ಪಣಿಗಳು" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "ಒನ್-ಟೈಮ್ ಪಾಸ್‌ವರ್ಡ್" @@ -984,7 +980,7 @@ msgstr "ಒನ್-ಟೈಮ್ ಪಾಸ್‌ವರ್ಡ್" msgid "Oops, the server returned an error." msgstr "ಓಹ್, ಸರ್ವರ್ ದೋಷವನ್ನು ಹಿಂತಿರುಗಿಸಿದೆ." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "ತೆರೆಯಿರಿ" msgid "Open Source" msgstr "ಮುಕ್ತ ಸಂಪನ್ಮೂಲ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI ನಿಮ್ಮ ಪಠ್ಯಕ್ಕಾಗಿ ಯಾವುದೇ ಆಯ್ಕೆಗಳನ್ನು ಹಿಂತಿರುಗಿಸಲಿಲ್ಲ." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI ಏಕೀಕರಣ" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "ಸ್ಥಾನ" msgid "Powered by" msgstr "ಇವರಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "<0>ಸರಳ ಐಕಾನ್‌ಗಳಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ" @@ -1167,7 +1166,7 @@ msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅದರ ರೋ msgid "Redo" msgstr "ಮತ್ತೆಮಾಡು" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "ತೆಗೆದುಹಾಕಿ" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "ವೈಶಿಷ್ಟ್ಯಗಳಲ್ಲಿ ಸಮೃದ್ಧವಾ msgid "Rounded" msgstr "ದುಂಡಾದ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "ಪ್ರಶಂಸಾಪತ್ರಗಳು" msgid "Text Color" msgstr "ಅಕ್ಷರದ ಬಣ್ಣ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "ಅದು ಮಾನ್ಯವಾದ OpenAI API ಕೀಲಿಯಂತೆ ಕಾಣುತ್ತಿಲ್ಲ." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "ನೀವು ನಮೂದಿಸಿದ ಪಾಸ್‌ವರ್ಡ್‌ಗಳು ಹೊಂದಿಕೆಯಾಗುತ್ತಿಲ್ಲ." @@ -1475,7 +1466,7 @@ msgstr "ಥೀಮ್" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "ಬ್ರೌಸರ್‌ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ. ದಯವಿಟ್ಟು 'ಕ್ರೋಮ್' ಚಾಲನೆಯಲ್ಲಿದೆ ಮತ್ತು ತಲುಪಬಹುದೆಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "ಫ್ಲೋಟಿಂಗ್ ಟೂಲ್‌ಬಾರ್‌ನಲ್ಲಿರುವ ರದ್ದುಗೊಳಿಸು ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸಬಹುದು." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "ರದ್ದುಮಾಡು" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "ರೆಸ್ಯೂಮ್ ಅನ್ನು ಅನ್‌ಲಾಕ್ ಮಾ msgid "Unverified" msgstr "ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನವೀಕರಿಸಿ" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "ಬಳಕೆದಾರರು ಸಂಬಂಧಿತ 'ರಹಸ್ಯ' ದಾಖಲೆಯನ್ನು ಹೊಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಈ ಸಮಸ್ಯೆಯನ್ನು GitHub ನಲ್ಲಿ ವರದಿ ಮಾಡಿ." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "ಬಳಕೆದಾರರ ಹೆಸರು" @@ -1618,7 +1609,7 @@ msgstr "ಮೌಲ್ಯೀಕರಿಸಿ" msgid "Validated" msgstr "ಮೌಲ್ಯೀಕರಿಸಿ" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "ಮೌಲ್ಯ" @@ -1643,10 +1634,14 @@ msgstr "ಆವೃತ್ತಿ 4" msgid "Views" msgstr "ವೀಕ್ಷಣೆಗಳು" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "ಕಾಣುವ" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ನೀವು ಮರೆತರೆ ನಾವು ನಿಮಗೆ ಪಾಸ್‌ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಲಿಂಕ್ ಅನ್ನು ಕಳುಹಿಸಬಹುದು ಎಂಬುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು ಮಾತ್ರ ನಾವು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸುತ್ತೇವೆ." @@ -1656,7 +1651,7 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ನೀವ #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "ಜಾಲತಾಣ" msgid "What's new in the latest version" msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್‌ಗಳನ್ನು ಸೇರಿಸಬಹುದು." @@ -1680,11 +1675,11 @@ msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ msgid "You can also enter your username." msgstr "ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ಸಹ ನೀವು ನಮೂದಿಸಬಹುದು." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "ನೀವು ವಿಷಯವನ್ನು ರಚಿಸಲು ಸಹಾಯ ಮಾಡಲು OpenAI API ಅನ್ನು ಬಳಸಿಕೊಳ್ಳಬಹುದು ಅಥವಾ ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನಿಮ್ಮ ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಬಹುದು." @@ -1692,7 +1687,7 @@ msgstr "ನೀವು ವಿಷಯವನ್ನು ರಚಿಸಲು ಸಹಾಯ msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "ಸಾರ್ವಜನಿಕ ಹಂಚಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಸ್ವೀಕರಿಸಿದ ವೀಕ್ಷಣೆಗಳ ಸಂಖ್ಯೆಯನ್ನು ನೀವು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು ಅಥವಾ ಎಷ್ಟು ಜನರು ರೆಸ್ಯೂಮ್ ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಿದ್ದಾರೆ ಎಂದು ನೋಡಬಹುದು." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "<0>ನಿಮ್ಮ ಸ್ವಂತ OpenAI API ಕೀಲಿಯನ್ನು ಪಡೆಯುವ ಆಯ್ಕೆಯನ್ನು ನೀವು ಹೊಂದಿರುವಿರಿ. ಈ ಕೀಲಿಯು ನಿಮಗೆ ಸರಿಹೊಂದುವಂತೆ API ಅನ್ನು ನಿಯಂತ್ರಿಸಲು ನಿಮಗೆ ಅಧಿಕಾರ ನೀಡುತ್ತದೆ. ಪರ್ಯಾಯವಾಗಿ, ನೀವು ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್‌ನಲ್ಲಿ AI ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಬಯಸಿದರೆ, ನಿಮ್ಮ ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಂದ ನೀವು ಕೀಲಿಯನ್ನು ಸರಳವಾಗಿ ತೆಗೆದುಹಾಕಬಹುದು." @@ -1709,7 +1704,7 @@ msgstr "ನಿಮಗೆ ಮೇಲ್ ಬಂದಿದೆ!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "ನಿಮ್ಮ ಖಾತೆ ಮತ್ತು ನಿಮ್ಮ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಳಿಸಲಾಗಿದೆ. ವಿದಾಯ!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "ನಿಮ್ಮ API ಕೀಯನ್ನು ಬ್ರೌಸರ್‌ನ ಸ್ಥಳೀಯ ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಸುರಕ್ಷಿತವಾಗಿ ಸಂಗ್ರಹಿಸಲಾಗಿದೆ ಮತ್ತು ಅವರ ಅಧಿಕೃತ SDK ಮೂಲಕ OpenAI ಗೆ ವಿನಂತಿಗಳನ್ನು ಮಾಡುವಾಗ ಮಾತ್ರ ಬಳಸಿಕೊಳ್ಳಲಾಗುತ್ತದೆ. OpenAI ನ ಸೇವೆಗಳೊಂದಿಗೆ ಸಂವಹನ ಮಾಡುವಾಗ ಹೊರತುಪಡಿಸಿ ನಿಮ್ಮ ಕೀ ಯಾವುದೇ ಬಾಹ್ಯ ಸರ್ವರ್‌ಗೆ ರವಾನೆಯಾಗುವುದಿಲ್ಲ ಎಂದು ಖಚಿತವಾಗಿರಿ." @@ -1732,3 +1727,4 @@ msgstr "ಗಾತ್ರ ಹಿಗ್ಗಿಸಿ" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "ಗಾತ್ರ ಕುಗ್ಗಿಸಿ" + diff --git a/apps/client/src/locales/ko-KR/messages.po b/apps/client/src/locales/ko-KR/messages.po index cfecf977..be0d62ce 100644 --- a/apps/client/src/locales/ko-KR/messages.po +++ b/apps/client/src/locales/ko-KR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ko\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -20,7 +20,7 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "이중 인증을 성공적으로 활성화했습니다." +msgstr "2단계 인증을 성공적으로 사용 설정했습니다." #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" @@ -38,7 +38,7 @@ msgstr "<0>저는 여가 시간에 다른 훌륭한 오픈소스 기여자들의 msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>앱이 완벽하지는 않겠지만, 앞으로 더 나아지기를 바랍니다.<1>이력서를 작성하는 동안 문제가 발생했거나 다른 사용자가 이력서를 더 쉽게 작성하는 데 도움이 될 만한 아이디어가 있다면 리포지토리에 문제를 등록하거나 저에게 이메일을 보내주세요." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>참고: OpenAI API를 이용함으로써 귀하는 OpenAI가 명시한 <1>이용약관 및 <2>개인정보 보호정책을 인정하고 이에 동의하는 것입니다. 리액티브 이력서는 서비스의 부적절하거나 무단 사용에 대해 어떠한 책임도 지지 않으며, 그로 인한 모든 영향이나 책임은 전적으로 사용자에게 있다는 점에 유의하시기 바랍니다." @@ -98,12 +98,12 @@ msgstr "{accept} 파일만 허용됩니다." msgid "Account" msgstr "계정" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "사용자 지정 필드 추가" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "새 항목 추가" @@ -146,7 +146,7 @@ msgstr "링크가 있는 사람은 누구나 이력서를 보고 다운로드할 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "이 링크가 있는 사람은 누구나 이력서를 보고 다운로드할 수 있습니다. 프로필이나 채용 담당자에 공유해 보세요." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "이 항목을 삭제하시겠습니까?" @@ -205,7 +205,7 @@ msgstr "백업 코드" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "백업 코드는 소문자 또는 숫자만 포함할 수 있으며 정확히 10자여야 합니다." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Built with" msgid "By the community, for the community." msgstr "By the community, for the community." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "새 비밀번호 확인" msgid "Continue" msgstr "계속하기" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "복사" @@ -318,7 +318,7 @@ msgstr "이력서 링크 복사" msgid "Copy to Clipboard" msgstr "클립보드에 복사" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "만들기" @@ -328,7 +328,7 @@ msgstr "만들기" msgid "Create a new account" msgstr "새 계정 만들기" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "새 항목 만들기" @@ -385,9 +385,9 @@ msgstr "날짜" msgid "Date or Date Range" msgstr "날짜 또는 날짜 범위" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "PDF 다운로드" msgid "Downloads" msgstr "다운로드" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "복제" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "기존 항목 복제" @@ -478,7 +478,7 @@ msgstr "기존 항목 복제" msgid "Duplicate an existing resume" msgstr "기존 이력서 복제" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "수정" @@ -575,7 +575,7 @@ msgstr "글꼴 변형" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "예를 들어, 이력서를 보낸 회사에 대한 정보나 직무 설명에 대한 링크를 여기에 기록할 수 있습니다." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "잊어버림" @@ -658,8 +658,8 @@ msgstr "여기에서 프로필 사진, 이름, 사용자 아이디 등의 계정 msgid "Here, you can update your profile to customize and personalize your experience." msgstr "여기에서 프로필을 업데이트하여 사용자 환경을 맞춤 설정하고 개인화할 수 있습니다." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "숨겨진" @@ -690,7 +690,7 @@ msgstr "이력서를 공개적으로 호스팅하세요" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "저는 항상 반응형 이력서 사용자들로부터 피드백이나 지원을 받는 것을 좋아합니다. 다음은 제가 받은 메시지 중 일부입니다. 피드백이 있으시면 언제든지 다음 주소로 이메일을 보내주세요. <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "아이콘" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "키워드" @@ -809,7 +809,7 @@ msgstr "라벨" msgid "Language" msgstr "언어" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "마지막 업데이트 {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "위치" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "2023년 3월 - 현재" msgid "Margin" msgstr "마진" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT 라이선스" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "이름" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "이름" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "네트워크" @@ -969,10 +969,6 @@ msgstr "참고: 이렇게 하면 계정의 보안이 약해집니다." msgid "Notes" msgstr "참고" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "일회용 비밀번호" @@ -984,7 +980,7 @@ msgstr "일회용 비밀번호" msgid "Oops, the server returned an error." msgstr "서버에서 오류를 반환했습니다." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "열기" msgid "Open Source" msgstr "오픈 소스" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI가 텍스트에 대한 선택 항목을 반환하지 않았습니다." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI 통합" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "위치" msgid "Powered by" msgstr "제공" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "<0>간단한 아이콘으로 구동" @@ -1167,7 +1166,7 @@ msgstr "리액티브 이력서는 활기찬 커뮤니티 덕분에 번창하고 msgid "Redo" msgstr "다시 실행" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "제거" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "페이지 제거" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "가격이 아닌 기능이 풍부합니다." msgid "Rounded" msgstr "둥근" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "변경 사항 저장" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1284,7 +1283,7 @@ msgstr "메시지 보내기" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "별도의 링크" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1449,14 +1448,6 @@ msgstr "사용 후기" msgid "Text Color" msgstr "텍스트 색상" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "유효한 OpenAI API 키가 아닌 것 같습니다." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "입력한 비밀번호가 일치하지 않습니다." @@ -1475,7 +1466,7 @@ msgstr "테마" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "브라우저에 연결하는 동안 오류가 발생했습니다. '크롬'이 실행 중이고 연결 가능한 상태인지 확인하세요." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "플로팅 툴바에서 실행 취소 버튼을 클릭하면 이 작업을 되돌릴 수 있습니다." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "실행 취소" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "이력서를 잠금 해제하면 이력서를 다시 변경할 수 있 msgid "Unverified" msgstr "확인되지 않음" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "기존 항목 업데이트" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "사용자에게 연결된 '비밀' 레코드가 없습니다. 이 문제는 GitHub에서 신고해 주세요." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "사용자 이름" @@ -1618,7 +1609,7 @@ msgstr "유효성 검사" msgid "Validated" msgstr "유효성 검사" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "가치" @@ -1643,10 +1634,14 @@ msgstr "버전 4" msgid "Views" msgstr "조회수" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "가시성" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "비밀번호를 잊어버린 경우 비밀번호 재설정 링크를 보낼 수 있도록 하기 위해서만 이메일 주소를 확인합니다." @@ -1656,7 +1651,7 @@ msgstr "비밀번호를 잊어버린 경우 비밀번호 재설정 링크를 보 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "웹사이트" msgid "What's new in the latest version" msgstr "최신 버전의 새로운 기능" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를 추가할 수 있습니다." @@ -1680,11 +1675,11 @@ msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를 msgid "You can also enter your username." msgstr "사용자 아이디를 입력할 수도 있습니다." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "OpenAI API를 사용하여 콘텐츠를 생성하거나 이력서를 작성하는 동안 글쓰기를 개선할 수 있습니다." @@ -1692,7 +1687,7 @@ msgstr "OpenAI API를 사용하여 콘텐츠를 생성하거나 이력서를 작 msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "공개 공유를 활성화하여 이력서가 조회된 횟수 또는 이력서를 다운로드한 사람의 수를 추적할 수 있습니다." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "자신만의 <0>OpenAI API 키를 얻을 수 있는 옵션이 있습니다. 이 키를 사용하면 원하는 대로 API를 활용할 수 있습니다. 또는 반응형 이력서에서 AI 기능을 완전히 비활성화하려면 설정에서 키를 제거하기만 하면 됩니다." @@ -1709,7 +1704,7 @@ msgstr "메일이 도착했습니다!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "계정과 모든 데이터가 성공적으로 삭제되었습니다. 안녕히 계세요!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "API 키는 브라우저의 로컬 저장소에 안전하게 저장되며 공식 SDK를 통해 OpenAI에 요청할 때만 활용됩니다. OpenAI의 서비스와 상호작용할 때를 제외하고는 키가 외부 서버로 전송되지 않으니 안심하세요." @@ -1732,3 +1727,4 @@ msgstr "줌인" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "줌 아웃" + diff --git a/apps/client/src/locales/lt-LT/messages.po b/apps/client/src/locales/lt-LT/messages.po index f878c463..b37471a7 100644 --- a/apps/client/src/locales/lt-LT/messages.po +++ b/apps/client/src/locales/lt-LT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lt\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" @@ -38,7 +38,7 @@ msgstr "<0>\"Reactive Resume\" sukūriau daugiausia vienas, laisvalaikiu, daug p msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Esu įsitikinęs, kad programa nėra tobula, bet norėčiau, kad ji tokia būtų.<1>Jei kurdami gyvenimo aprašymą susidūrėte su kokiomis nors problemomis arba turite idėją, kuri padėtų jums ir kitiems naudotojams lengviau kurti gyvenimo aprašymą, parašykite apie tai saugykloje arba atsiųskite man el. laišką." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Pastaba: naudodamiesi \"OpenAI\" API pripažįstate ir sutinkate su \"OpenAI\" nustatytomis <1>naudojimo sąlygomis ir <2>privatumo politika. Atkreipkite dėmesį, kad \"Reactive Resume\" neprisiima jokios atsakomybės už netinkamą ar neleistiną paslaugos naudojimą, o bet kokios iš to kylančios pasekmės ar atsakomybė tenka tik naudotojui." @@ -98,12 +98,12 @@ msgstr "Priimami tik {accept} failai" msgid "Account" msgstr "Paskyra" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Pridėti pasirinktinį lauką" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Pridėti naują elementą" @@ -146,7 +146,7 @@ msgstr "Bet kuris nuorodą turintis asmuo gali peržiūrėti ir atsisiųsti gyve msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Kiekvienas, pasinaudojęs šia nuoroda, gali peržiūrėti ir atsisiųsti gyvenimo aprašymą. Pasidalykite juo savo profilyje arba su įdarbintojais." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Ar tikrai norite ištrinti šį elementą?" @@ -205,7 +205,7 @@ msgstr "Atsarginis kodas" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Atsarginius kodus gali sudaryti tik mažosios raidės arba skaičiai, juos turi sudaryti tiksliai 10 simbolių." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Pastatytas su" msgid "By the community, for the community." msgstr "Bendruomenės ir bendruomenei." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Patvirtinti naują slaptažodį" msgid "Continue" msgstr "Tęsti" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopijuoti" @@ -318,7 +318,7 @@ msgstr "Nukopijuokite nuorodą į gyvenimo aprašymą" msgid "Copy to Clipboard" msgstr "Kopijuoti į iškarpinę" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Sukurti" @@ -328,7 +328,7 @@ msgstr "Sukurti" msgid "Create a new account" msgstr "Sukurti naują paskyrą" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Sukurti naują elementą" @@ -385,9 +385,9 @@ msgstr "Data" msgid "Date or Date Range" msgstr "Data arba datos intervalas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Atsisiųsti PDF" msgid "Downloads" msgstr "Atsisiuntimai" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Dublikatas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Dubliuoti esamą elementą" @@ -478,7 +478,7 @@ msgstr "Dubliuoti esamą elementą" msgid "Duplicate an existing resume" msgstr "Dubliuoti esamą gyvenimo aprašymą" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Redaguoti" @@ -575,7 +575,7 @@ msgstr "Šrifto variantai" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Pavyzdžiui, čia galima įrašyti informaciją apie tai, kurioms įmonėms siuntėte šį gyvenimo aprašymą, arba nuorodas į darbo aprašymus." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Pamirškite" @@ -658,8 +658,8 @@ msgstr "Čia galite atnaujinti savo paskyros informaciją, pvz., profilio nuotra msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Čia galite atnaujinti savo profilį, kad pritaikytumėte ir suasmenintumėte savo patirtį." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Paslėptas" @@ -690,7 +690,7 @@ msgstr "Viešai talpinkite savo gyvenimo aprašymą" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Visada džiaugiuosi galėdamas išgirsti \"Reactive Resume\" naudotojų atsiliepimus ar paramą. Štai keletas iš gautų žinučių. Jei turite kokių nors atsiliepimų, nedvejodami rašykite man el. paštu <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikona" @@ -793,9 +793,9 @@ msgstr "jonas.jonaitis@pavyzdys.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Raktiniai žodžiai" @@ -809,7 +809,7 @@ msgstr "Etiketė" msgid "Language" msgstr "Kalba" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Paskutinį kartą atnaujinta {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Vieta" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "2023 m. kovo mėn. - dabartis" msgid "Margin" msgstr "Paraštė" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "MIT licencija" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Vardas" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Vardas" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Tinklas" @@ -969,10 +969,6 @@ msgstr "Pastaba: dėl to jūsų paskyra taps mažiau saugi." msgid "Notes" msgstr "Pastabos" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Vienkartinis slaptažodis" @@ -984,7 +980,7 @@ msgstr "Vienkartinis slaptažodis" msgid "Oops, the server returned an error." msgstr "Oi, serveris grąžino klaidą." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Atviras" msgid "Open Source" msgstr "Atviro kodo" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "\"OpenAI\" nepateikė jokių jūsų teksto pasirinkimų." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "\"OpenAI\" integracija" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Pozicija" msgid "Powered by" msgstr "Sukurta naudojant" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Sukurta naudojant <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "\"Reactive Resume\" klesti dėl savo gyvybingos bendruomenės. Šis proj msgid "Redo" msgstr "Grąžinti" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Pašalinti" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Pašalinti puslapį" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Turtingas funkcijomis, bet ne kainomis." msgid "Rounded" msgstr "Suapvalintas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Išsaugoti pakeitimus" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Atsiliepimai" msgid "Text Color" msgstr "Teksto spalva" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Tai neatrodo kaip galiojantis \"OpenAI\" API raktas." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Įvesti slaptažodžiai nesutampa." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Įvyko prisijungimo prie naršyklės klaida. Įsitikinkite, kad 'chrome' veikia ir yra pasiekiama." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Šį veiksmą galima atšaukti slankiojoje įrankių juostoje spustelėjus anuliavimo mygtuką." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Anuliuoti" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Atrakinę gyvenimo aprašymą galėsite vėl jį keisti." msgid "Unverified" msgstr "Nepatikrintas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Atnaujinti esamą elementą" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Vartotojas neturi susieto „paslapčių“ įrašo. Praneškite apie šią problemą GitHub platformoje." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Vartotojo vardas" @@ -1618,7 +1609,7 @@ msgstr "Patvirtinti" msgid "Validated" msgstr "Patvirtinta" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Vertė" @@ -1643,10 +1634,14 @@ msgstr "4 versija" msgid "Views" msgstr "Peržiūros" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Matomas" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Jūsų el. pašto adresą tikriname tik tam, kad galėtume atsiųsti slaptažodžio atstatymo nuorodą, jei pamirštumėte slaptažodį." @@ -1656,7 +1651,7 @@ msgstr "Jūsų el. pašto adresą tikriname tik tam, kad galėtume atsiųsti sla #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Tinklalapis" msgid "What's new in the latest version" msgstr "Kas naujo naujausioje versijoje" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter." @@ -1680,11 +1675,11 @@ msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba msgid "You can also enter your username." msgstr "Taip pat galite įvesti savo vartotojo vardą." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Galite naudoti OpenAI API, kad padėtumėte generuoti turinį arba patobulinti savo rašymą kurdami savo CV." @@ -1692,7 +1687,7 @@ msgstr "Galite naudoti OpenAI API, kad padėtumėte generuoti turinį arba patob msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Įjungę viešą bendrinimą galite stebėti, kiek peržiūrų sulaukė jūsų gyvenimo aprašymas arba kiek žmonių jį atsisiuntė." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Galite <0>gauti savo \"OpenAI\" API raktą. Šis raktas suteikia jums teisę naudoti API, kaip jums atrodo tinkama. Arba, jei norite visiškai išjungti dirbtinio intelekto funkcijas programoje \"Reactive Resume\", galite tiesiog pašalinti raktą iš savo nustatymų." @@ -1709,7 +1704,7 @@ msgstr "Gavote laišką!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Jūsų paskyra ir visi duomenys buvo sėkmingai ištrinti. Viso gero!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Jūsų API raktas saugiai saugomas naršyklės vietinėje saugykloje ir naudojamas tik teikiant užklausas \"OpenAI\" per oficialų SDK. Galite būti tikri, kad jūsų raktas nėra perduodamas jokiam išoriniam serveriui, išskyrus atvejus, kai sąveikaujama su \"OpenAI\" paslaugomis." @@ -1732,3 +1727,4 @@ msgstr "Priartinti" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Tolinti" + diff --git a/apps/client/src/locales/lv-LV/messages.po b/apps/client/src/locales/lv-LV/messages.po index 43f9254d..613f6b35 100644 --- a/apps/client/src/locales/lv-LV/messages.po +++ b/apps/client/src/locales/lv-LV/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lv\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" @@ -38,7 +38,7 @@ msgstr "<0>Reactive Resume izveidoju galvenokārt pats savā brīvajā laikā, a msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Esmu pārliecināts, ka lietotne nav perfekta, bet es gribētu, lai tā tāda būtu.<1>Ja, veidojot CV, saskārāties ar kādām problēmām vai jums ir ideja, kas palīdzētu jums un citiem lietotājiem vieglāk veidot CV, ierakstiet par to jautājumu repozitorijā vai sūtiet man e-pastu." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Piezīme: Izmantojot OpenAI API, jūs atzīstat un piekrītat OpenAI noteiktajiem <1>lietošanas noteikumiem un <2>privātuma politikai. Lūdzu, ņemiet vērā, ka Reactive Resume neuzņemas nekādu atbildību par jebkādu nepareizu vai neatļautu pakalpojuma izmantošanu, un visas no tā izrietošās sekas vai atbildība gulstas tikai uz lietotāju." @@ -98,12 +98,12 @@ msgstr "Pieņem tikai {accept} failus" msgid "Account" msgstr "Konts" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Pielāgotā lauka pievienošana" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Pievienot jaunu elementu" @@ -146,11 +146,7 @@ msgstr "Ikviens, kam ir saite, var apskatīt un lejupielādēt CV." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Ikviens, kam ir šī saite, var apskatīt un lejupielādēt CV. Kopīgojiet to savā profilā vai ar personāla atlases speciālistiem." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "API atslēga" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Vai esat pārliecināts, ka vēlaties dzēst šo objektu?" @@ -209,6 +205,10 @@ msgstr "Rezerves kopijas kods" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Rezerves kopiju kodos drīkst būt tikai mazie burti vai cipari, un tiem jābūt tieši 10 rakstzīmēm." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 +msgid "Base URL" +msgstr "" + #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." msgid "Basics" @@ -235,7 +235,7 @@ msgstr "Izgatavots ar" msgid "By the community, for the community." msgstr "Sabiedrība - sabiedrībai un sabiedrībai." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Jaunās paroles apstiprināšana" msgid "Continue" msgstr "Turpināt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopēt" @@ -318,7 +318,7 @@ msgstr "Kopēt saiti uz CV" msgid "Copy to Clipboard" msgstr "Kopēt uz starpliktuvi" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Izveidot" @@ -328,7 +328,7 @@ msgstr "Izveidot" msgid "Create a new account" msgstr "Izveidot jaunu kontu" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Izveidot jaunu elementu" @@ -385,9 +385,9 @@ msgstr "Datums" msgid "Date or Date Range" msgstr "Datums vai datuma diapazons" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Lejupielādēt PDF" msgid "Downloads" msgstr "Lejupielādes" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Dublikāts" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Esoša vienuma dublēšana" @@ -478,7 +478,7 @@ msgstr "Esoša vienuma dublēšana" msgid "Duplicate an existing resume" msgstr "Esoša CV dublēšana" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Rediģēt" @@ -575,7 +575,7 @@ msgstr "Fontu varianti" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Piemēram, šeit var norādīt informāciju par to, kuriem uzņēmumiem nosūtījāt šo CV, vai saites uz darba aprakstiem." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Aizmirstiet" @@ -658,8 +658,8 @@ msgstr "Šeit varat atjaunināt konta informāciju, piemēram, profila attēlu, msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Šeit varat atjaunināt savu profilu, lai pielāgotu un personalizētu savu pieredzi." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Slēptais" @@ -690,7 +690,7 @@ msgstr "Publiski izvietojiet savu CV" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Man vienmēr patīk saņemt atsauksmes vai atbalstu no Reactive Resume lietotājiem. Šeit ir daži no saņemtajiem ziņojumiem. Ja jums ir kādas atsauksmes, rakstiet man uz e-pasta adresi <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikona" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Atslēgas vārdi" @@ -809,7 +809,7 @@ msgstr "Etiķete" msgid "Language" msgstr "Valoda" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Pēdējo reizi atjaunināts {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Atrašanās vieta" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,10 +914,18 @@ msgstr "2023. gada marts - klāt" msgid "Margin" msgstr "Rezerve" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 +msgid "Max Tokens" +msgstr "" + #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "MIT licence" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 +msgid "Model" +msgstr "" + #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48 @@ -926,7 +934,7 @@ msgstr "MIT licence" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nosaukums" @@ -936,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nosaukums" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Tīkls" @@ -972,7 +980,7 @@ msgstr "Vienreizēja parole" msgid "Oops, the server returned an error." msgstr "Ak, serveris atdeva kļūdu." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -982,17 +990,24 @@ msgstr "Atvērt" msgid "Open Source" msgstr "Atvērtā pirmkoda programmatūra" -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI neatgrieza nevienu jūsu teksta izvēli." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI integrācija" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1077,7 +1092,7 @@ msgstr "Pozīcija" msgid "Powered by" msgstr "Powered by" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Darbojas ar <0>vienkāršām ikonām" @@ -1151,7 +1166,7 @@ msgstr "Reactive Resume plaukst, pateicoties tā dinamiskajai kopienai. Šis pro msgid "Redo" msgstr "Pārtaisīt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Noņemt" @@ -1161,7 +1176,7 @@ msgid "Remove Page" msgstr "Noņemt lapu" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1206,13 +1221,21 @@ msgstr "Bagātīgas funkcijas, bet ne cenas." msgid "Rounded" msgstr "Noapaļots" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Izmaiņu saglabāšana" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Save Locally" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Saved" +msgstr "" + #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." msgstr "Noskenējiet tālāk norādīto QR kodu, izmantojot autentifikatora lietotni, lai savā kontā iestatītu 2FA." @@ -1376,18 +1399,10 @@ msgstr "Statistika" msgid "Statistics are available only for public resumes." msgstr "Statistika ir pieejama tikai par publiskiem CV." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "Veikals uz vietas" - #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:162 msgid "Store your backup codes securely" msgstr "Droši uzglabājiet dublējuma kodus" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "Uzglabāts" - #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:128 @@ -1433,10 +1448,6 @@ msgstr "Atsauksmes" msgid "Text Color" msgstr "Teksta krāsa" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Tas neizskatās pēc derīgas OpenAI API atslēgas." - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Ievadītās paroles nesakrīt." @@ -1455,7 +1466,7 @@ msgstr "Tēma" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Notika kļūda, savienojoties ar pārlūkprogrammu. Lūdzu, pārliecinieties, vai darbojas \"chrome\" un vai tas ir sasniedzams." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Šo darbību var atcelt, noklikšķinot uz pogas atsaukt peldošajā rīkjoslā." @@ -1537,7 +1548,7 @@ msgid "Undo" msgstr "Atcelt" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1551,7 +1562,7 @@ msgstr "Atbloķējot CV, tajā atkal varēsiet veikt izmaiņas." msgid "Unverified" msgstr "Nepārbaudīts" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Atjaunināt esošu elementu" @@ -1581,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Lietotājam nav saistītā ieraksta \"noslēpumi\". Lūdzu, ziņojiet par šo problēmu GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Lietotājvārds" @@ -1598,7 +1609,7 @@ msgstr "Apstiprināt" msgid "Validated" msgstr "Apstiprināts" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Vērtība" @@ -1623,10 +1634,14 @@ msgstr "Versija 4" msgid "Views" msgstr "Skati" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Redzams" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Mēs pārbaudām jūsu e-pasta adresi tikai tādēļ, lai nodrošinātu, ka varam jums nosūtīt paroles atiestatīšanas saiti gadījumā, ja esat aizmirsis paroli." @@ -1636,7 +1651,7 @@ msgstr "Mēs pārbaudām jūsu e-pasta adresi tikai tādēļ, lai nodrošinātu, #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1649,9 +1664,9 @@ msgstr "Tīmekļa vietne" msgid "What's new in the latest version" msgstr "Jaunumi jaunākajā versijā" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nospiežot enter." @@ -1660,7 +1675,11 @@ msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nosp msgid "You can also enter your username." msgstr "Varat arī ievadīt savu lietotājvārdu." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Varat izmantot OpenAI API, lai palīdzētu jums ģenerēt saturu vai uzlabot rakstīšanu, veidojot CV." @@ -1668,7 +1687,7 @@ msgstr "Varat izmantot OpenAI API, lai palīdzētu jums ģenerēt saturu vai uzl msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Iespējot publisko kopīgošanu, varat sekot līdzi tam, cik skatījumu ir saņemts jūsu CV vai cik daudz cilvēku ir lejupielādējuši CV." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Jums ir iespēja <0>iegūt savu OpenAI API atslēgu. Šī atslēga ļauj jums izmantot API pēc saviem ieskatiem. Ja vēlaties pilnībā atslēgt mākslīgā intelekta funkcijas Reactive Resume, varat arī vienkārši no iestatījumiem noņemt atslēgu." @@ -1685,7 +1704,7 @@ msgstr "Jūs esat saņēmis pastu!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Jūsu konts un visi dati ir veiksmīgi dzēsti. Uz redzēšanos!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Jūsu API atslēga tiek droši glabāta pārlūkprogrammas lokālajā atmiņā un tiek izmantota tikai tad, kad tiek veikti pieprasījumi OpenAI, izmantojot oficiālo SDK. Esiet droši, ka jūsu atslēga netiek pārsūtīta nevienam ārējam serverim, izņemot gadījumus, kad notiek mijiedarbība ar OpenAI pakalpojumiem." diff --git a/apps/client/src/locales/ml-IN/messages.po b/apps/client/src/locales/ml-IN/messages.po index 2e232752..a1b12278 100644 --- a/apps/client/src/locales/ml-IN/messages.po +++ b/apps/client/src/locales/ml-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ml\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Malayalam\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -20,7 +20,7 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "" +msgstr "നിങ്ങൾ രണ്ട്-ഘടക പ്രാമാണീകരണം വിജയകരമായി പ്രവർത്തനക്ഷമമാക്കി." #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/mr-IN/messages.po b/apps/client/src/locales/mr-IN/messages.po index 14b17dbc..8f35101f 100644 --- a/apps/client/src/locales/mr-IN/messages.po +++ b/apps/client/src/locales/mr-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: mr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Marathi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -67,7 +67,7 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 msgid "A link has been copied to your clipboard." -msgstr "" +msgstr "तुमच्या क्लिपबोर्डवर एक लिंक कॉपी केली गेली आहे." #: apps/client/src/components/copyright.tsx:29 msgid "A passion project by <0>Amruth Pillai" @@ -98,12 +98,12 @@ msgstr "केवळ {accept} फाइल स्वीकारल्या ज msgid "Account" msgstr "खाते" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" -msgstr "" +msgstr "सानुकूल रकाना जोडा" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "नवीन वस्तू जोडा" @@ -139,20 +139,20 @@ msgstr "आणि बरेच काही..." #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 msgid "Anyone with the link can view and download the resume." -msgstr "" +msgstr "ही लिंक ज्यांच्याकडे असेल ते हा रेझ्युमे पाहू व डाउनलोड करू शकतात." #: apps/client/src/pages/builder/_components/toolbar.tsx:54 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" -msgstr "" +msgstr "तुम्हाला ही वस्तू नक्की काढून टाकायची आहे का?" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:147 msgid "Are you sure you want to delete your resume?" -msgstr "" +msgstr "तुम्हाला तुमचा रेझ्युमे नक्की काढून टाकायचा आहे का?" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125 msgid "Are you sure you want to disable two-factor authentication?" @@ -160,11 +160,11 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 msgid "Are you sure you want to lock this resume?" -msgstr "" +msgstr "तुम्हाला हा रेझ्युमे नक्की लॉक करायचा आहे का?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 msgid "Are you sure you want to unlock this resume?" -msgstr "" +msgstr "तुम्हाला हा रेझ्युमे नक्की अनलॉक करायचा आहे का?" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Are you sure?" @@ -205,9 +205,9 @@ msgstr "बॅकअप कोड" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "पायाभूत URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "याने बनवले:" msgid "By the community, for the community." msgstr "समाजाने, समाजासाठी." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -254,7 +254,7 @@ msgstr "" #: apps/client/src/pages/auth/reset-password/page.tsx:99 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 msgid "Change Password" -msgstr "" +msgstr "पासवर्ड बदला" #: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" @@ -270,27 +270,27 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:150 msgid "Circle" -msgstr "" +msgstr "गोलाकार" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:249 msgid "Close" -msgstr "" +msgstr "बंद करा" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:201 msgid "Code" -msgstr "" +msgstr "कोड" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:52 msgid "Code must be exactly 6 digits long." -msgstr "" +msgstr "कोड बरोब्बर 6 अंकांचे असायला हवे." #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:135 msgid "Columns" -msgstr "" +msgstr "स्तंभ" #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 msgid "Company" -msgstr "" +msgstr "कंपनी" #: apps/client/src/components/ai-actions.tsx:115 #: apps/client/src/components/ai-actions.tsx:118 @@ -304,39 +304,39 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246 msgid "Continue" -msgstr "" +msgstr "पुढे" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" -msgstr "" +msgstr "कॉपी करा" #: apps/client/src/pages/builder/_components/toolbar.tsx:146 msgid "Copy Link to Resume" -msgstr "" +msgstr "रेझ्युमेची लिंक कॉपी करा" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 msgid "Copy to Clipboard" -msgstr "" +msgstr "क्लिपबोर्डवर कॉपी करा" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" -msgstr "" +msgstr "बनवा" #: apps/client/src/pages/auth/register/page.tsx:64 #: apps/client/src/pages/auth/register/page.tsx:69 msgid "Create a new account" -msgstr "" +msgstr "नवीन खाते बनवा" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" -msgstr "" +msgstr "नवीन वस्तू बनवा" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:176 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:28 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:18 msgid "Create a new resume" -msgstr "" +msgstr "नवीन रेझ्युमे बनवा" #: apps/client/src/pages/auth/login/page.tsx:65 msgctxt "This is a link to create a new account" @@ -385,9 +385,9 @@ msgstr "तारीख" msgid "Date or Date Range" msgstr "तारीख किंवा तारीख श्रेणी" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "PDF डाउनलोड करा" msgid "Downloads" msgstr "डाउनलोड" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "नक्कल" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "अस्तित्वात असलेल्या वस्तूची नक्कल करा" @@ -478,7 +478,7 @@ msgstr "अस्तित्वात असलेल्या वस्तू msgid "Duplicate an existing resume" msgstr "अस्तित्वात असलेल्या रेझ्युमेची नक्कल करा" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "संपादित करा" @@ -508,7 +508,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Phosphor आयकन प्रविष्ट करा" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -569,36 +569,36 @@ msgstr "फाँट उपसंच" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:120 msgid "Font Variants" -msgstr "" +msgstr "फाँट प्रतिरूप" #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:35 msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" -msgstr "" +msgstr "विसरा" #: apps/client/src/pages/auth/login/page.tsx:126 msgid "Forgot Password?" -msgstr "" +msgstr "पासवर्ड विसरलात का?" #: apps/client/src/pages/auth/forgot-password/page.tsx:68 msgid "Forgot your password?" -msgstr "" +msgstr "तुमचे पासवर्ड विसरलात का?" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 msgid "Format" -msgstr "" +msgstr "स्वरूप" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49 msgid "Found a bug, or have an idea for a new feature?" -msgstr "" +msgstr "बग सापडला का? नवीन फीचरसाठीची कल्पना सुचली का?" #: apps/client/src/pages/home/sections/features/index.tsx:46 msgid "Free, forever" -msgstr "" +msgstr "विनामूल्य, कायमचे" #: apps/client/src/components/ai-actions.tsx:121 #: apps/client/src/components/ai-actions.tsx:124 @@ -607,36 +607,36 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 msgid "Full Name" -msgstr "" +msgstr "पूर्ण नाव" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 msgid "Generate a random title for your resume" -msgstr "" +msgstr "तुमच्या रेझ्युमेसाठी एक यादृच्छिक शीर्षक उत्पन्न करा" #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:32 msgid "Get Started" -msgstr "" +msgstr "सुरुवात करा" #: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" -msgstr "" +msgstr "GitHub" #: apps/client/src/pages/home/sections/statistics/index.tsx:12 msgid "GitHub Stars" -msgstr "" +msgstr "GitHub Stars" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:185 msgid "Give your old resume a new name." -msgstr "" +msgstr "जुन्या रेझ्युमेला नवीन नाव द्या." #: apps/client/src/pages/auth/verify-email/page.tsx:67 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 msgid "Go to Dashboard" -msgstr "" +msgstr "डॅशबोर्डला जा" #: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" -msgstr "" +msgstr "Google" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:208 msgid "Grayscale" @@ -658,19 +658,19 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" -msgstr "" +msgstr "लपवलेले" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:105 msgid "Hide" -msgstr "" +msgstr "लपवा" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:178 msgid "Hide Icons" -msgstr "" +msgstr "आयकन लपवा" #: apps/client/src/pages/auth/login/page.tsx:110 #: apps/client/src/pages/auth/register/page.tsx:166 @@ -684,16 +684,16 @@ msgstr "" #: apps/client/src/pages/home/sections/features/index.tsx:67 msgid "Host your resume publicly" -msgstr "" +msgstr "सार्वजनिकरित्या आपला रेझ्युमे होस्ट करा" #: apps/client/src/pages/home/sections/testimonials/index.tsx:70 msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" -msgstr "" +msgstr "आयकन" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:47 msgid "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form." @@ -709,17 +709,17 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 msgid "Import" -msgstr "" +msgstr "आयात करा" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:28 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:17 msgid "Import an existing resume" -msgstr "" +msgstr "अस्तित्वात असलेला रेझ्युमे आयात करा" #: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" -msgstr "" +msgstr "लेखन सुधारा" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:188 msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "कीवर्ड" @@ -809,7 +809,7 @@ msgstr "लेबल" msgid "Language" msgstr "भाषा" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "याआधी {lastUpdated} ला अपडेट केले" @@ -865,7 +865,7 @@ msgid "Location" msgstr "स्थान" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "मार्च २०२३ - वर्तमान" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "सर्वाधिक टोकन" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "एमआयटी परवाना" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "मॉडेल" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "नाव" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "नाव" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "नेटवर्क" @@ -969,10 +969,6 @@ msgstr "टीप: याने आपले खाते कमी सुरक msgid "Notes" msgstr "टिपा" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "वन-टाइम पासवर्ड" @@ -982,9 +978,9 @@ msgstr "वन-टाइम पासवर्ड" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 #: apps/client/src/services/resume/print.tsx:26 msgid "Oops, the server returned an error." -msgstr "" +msgstr "अरेरे, सर्व्हरला त्रुटी आढळली." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "उघडा" msgid "Open Source" msgstr "मुक्त स्रोत" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1017,27 +1016,27 @@ msgstr "विकल्प" #: apps/client/src/pages/auth/layout.tsx:47 msgctxt "The user can either login with email/password, or continue with GitHub or Google." msgid "or continue with" -msgstr "" +msgstr "किंवा यांनी लॉगइन करा" #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 msgid "Organization" -msgstr "" +msgstr "संघटना" #: apps/client/src/pages/builder/sidebars/right/index.tsx:90 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 msgid "Page" -msgstr "" +msgstr "पान" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 msgid "Page {0}" -msgstr "" +msgstr "पान {0}" #: apps/client/src/pages/auth/login/page.tsx:105 #: apps/client/src/pages/auth/register/page.tsx:161 #: apps/client/src/pages/auth/reset-password/page.tsx:83 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 msgid "Password" -msgstr "" +msgstr "पासवर्ड" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 msgid "PDF" @@ -1045,7 +1044,7 @@ msgstr "PDF" #: apps/client/src/pages/home/sections/features/index.tsx:63 msgid "Personal notes for each resume" -msgstr "" +msgstr "प्रत्येक रेझ्युमेसाठीच्या खाजगी टिपा" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81 msgid "Phone" @@ -1057,7 +1056,7 @@ msgstr "पॅट्रिक टोमासो यांचे छायाच #: apps/client/src/pages/home/sections/features/index.tsx:66 msgid "Pick any font from Google Fonts" -msgstr "" +msgstr "Google Fonts मधून कोणताही फाँट निवडा" #: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:69 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 @@ -1066,11 +1065,11 @@ msgstr "चित्र" #: apps/client/src/pages/auth/verify-email/page.tsx:59 msgid "Please note that this step is completely optional." -msgstr "" +msgstr "हा टप्पा पूर्णपणे वैकल्पिक आहे याची कृपया नोंद घ्यावी." #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 msgid "Please select a file type" -msgstr "" +msgstr "कृपया एक फाईल प्रकार निवडा" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:228 msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." @@ -1093,13 +1092,13 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 msgid "Primary Color" -msgstr "" +msgstr "प्राथमिक रंग" #: apps/client/src/pages/home/components/footer.tsx:50 #: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10 @@ -1114,15 +1113,15 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:66 msgid "Profile" -msgstr "" +msgstr "प्रोफाईल" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 msgid "Public" -msgstr "" +msgstr "सार्वजनिक" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 msgid "Publisher" -msgstr "" +msgstr "प्रकाशक" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69 msgid "Raise an issue" @@ -1145,11 +1144,11 @@ msgstr "" #: apps/client/src/pages/public/page.tsx:73 #: apps/client/src/pages/public/page.tsx:94 msgid "Reactive Resume" -msgstr "" +msgstr "रिअ‍ॅक्टिव्ह रेझ्युमे" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 msgid "Reactive Resume has helped people land jobs at these great companies:" -msgstr "" +msgstr "Reactive Resume ने या उत्कृष्ट कंपन्यांमध्ये नोकर्‍या मिळवण्यात लोकांची मदत केली आहे:" #: apps/client/src/pages/home/sections/support/index.tsx:12 msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe." @@ -1165,19 +1164,19 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:79 msgid "Redo" -msgstr "" +msgstr "पुन्हा करा" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" -msgstr "" +msgstr "काढून टाका" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:241 msgid "Remove Page" -msgstr "" +msgstr "पान काढून टाका" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1189,7 +1188,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:151 msgid "Reset" -msgstr "" +msgstr "रीसेट करा" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 msgid "Reset Layout" @@ -1198,11 +1197,11 @@ msgstr "" #: apps/client/src/pages/auth/reset-password/page.tsx:60 #: apps/client/src/pages/auth/reset-password/page.tsx:65 msgid "Reset your password" -msgstr "" +msgstr "पासवर्ड रीसेट करा" #: apps/client/src/pages/builder/_components/toolbar.tsx:106 msgid "Reset Zoom" -msgstr "" +msgstr "झूम रीसेट करा" #: apps/client/src/pages/dashboard/_components/sidebar.tsx:86 #: apps/client/src/pages/dashboard/resumes/page.tsx:20 @@ -1222,20 +1221,20 @@ msgstr "" msgid "Rounded" msgstr "गोलाकार केलेले" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "बदल सेव्ह करा" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "सेव्ह केले" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1256,7 +1255,7 @@ msgstr "फाँट उपसंचाचा शोध घ्या" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:125 msgid "Search for a font variant" -msgstr "" +msgstr "फाँट प्रतिरूपाचा शोध घ्या" #: apps/client/src/components/locale-combobox.tsx:41 msgid "Search for a language" @@ -1272,7 +1271,7 @@ msgstr "सुरक्षा" #: apps/client/src/pages/home/sections/features/index.tsx:50 msgid "Self-host with Docker" -msgstr "" +msgstr "Docker ने स्वतः होस्ट करा" #: apps/client/src/pages/auth/forgot-password/page.tsx:104 msgid "Send Email" @@ -1284,7 +1283,7 @@ msgstr "मला संदेश पाठवा" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "विभाजित लिंक" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1300,7 +1299,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/index.tsx:97 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 msgid "Sharing" -msgstr "" +msgstr "शेअर करणे" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:105 msgid "Show" @@ -1351,11 +1350,11 @@ msgstr "साइन अप करा" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "ईमेलद्वारे साइन-इन करणे सध्या प्रबंधकाने निष्क्रिय केले आहे." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." -msgstr "" +msgstr "नवीन साइन-अप सध्या प्रबंधकाने निष्क्रिय केले आहेत." #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:71 msgid "Size (in px)" @@ -1385,11 +1384,11 @@ msgstr "चौकोन" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:33 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:23 msgid "Start building from scratch" -msgstr "" +msgstr "रिकाम्या पानापासून बनवायला सुरुवात करा" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:183 msgid "Start building your resume by giving it a name." -msgstr "" +msgstr "रेझ्युमेला नाव देऊन तो बनवायला सुरू करा." #: apps/client/src/pages/builder/sidebars/right/index.tsx:104 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 @@ -1398,11 +1397,11 @@ msgstr "आकडेवारी" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 msgid "Statistics are available only for public resumes." -msgstr "" +msgstr "आकडेवारी केवळ सार्वजनिक रेझ्युमे यांसाठी उपलब्ध आहे." #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:162 msgid "Store your backup codes securely" -msgstr "" +msgstr "आपले बॅक-अप कोड सुरक्षितरित्या जपून ठेवा" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 @@ -1414,15 +1413,15 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 msgid "Summary" -msgstr "" +msgstr "सारांश" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 msgid "Support the app by donating what you can!" -msgstr "" +msgstr "जमेल तितकी देणगी देऊन या अ‍ॅपचे समर्थन करा!" #: apps/client/src/pages/home/sections/support/index.tsx:9 msgid "Supporting Reactive Resume" -msgstr "" +msgstr "Reactive Resume चे समर्थन करणे" #: apps/client/src/pages/home/sections/features/index.tsx:65 msgid "Supports A4/Letter page formats" @@ -1435,11 +1434,11 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/index.tsx:62 #: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19 msgid "Template" -msgstr "" +msgstr "साचा" #: apps/client/src/pages/home/sections/templates/index.tsx:9 msgid "Templates" -msgstr "" +msgstr "साचे" #: apps/client/src/pages/home/sections/testimonials/index.tsx:68 msgid "Testimonials" @@ -1447,35 +1446,27 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" +msgstr "मजकुराचा रंग" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." -msgstr "" +msgstr "तुम्ही प्रविष्ट केलेले पासवर्ड एकमेकांशी जुळत नाहीत." #: apps/client/src/services/errors/translate-error.ts:49 msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it." -msgstr "" +msgstr "तुम्हाला जो रेझ्युमे अपडेट करायचा आहे तो लॉक केलेला आहे. त्यात बदल करायचे असल्यास त्याला कृपया अनलोक करा." #: apps/client/src/pages/builder/sidebars/right/index.tsx:83 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 msgid "Theme" -msgstr "" +msgstr "थीम" #: apps/client/src/services/errors/translate-error.ts:40 msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1485,15 +1476,15 @@ msgstr "" #: apps/client/src/services/errors/translate-error.ts:16 msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider." -msgstr "" +msgstr "हा ईमेल पत्ता एका OAuth खात्याशी संबंधित आहे. कृपया आपल्या OAuth पुरवणार्‍याद्वारे साइन-इन करा." #: apps/client/src/pages/builder/_components/header.tsx:57 msgid "This resume is locked, please unlock to make further changes." -msgstr "" +msgstr "हा रेझ्युमे लॉक केलेला आहे. त्यात बदल करण्यासाठी तो कृपया अनलॉक करा." #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" +msgstr "हा भाग या रेझ्युमेशी संबंधित असलेल्या तुमच्या खाजगी टिपांसाठी आरक्षित आहे. यातला सर्व काँटेंट खाजगी राहतो व तो इतर कोणाशीही शेअर केला जात नाही." #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:214 msgid "Tip: You can name the resume referring to the position you are applying for." @@ -1502,11 +1493,11 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 msgctxt "Name of the Award" msgid "Title" -msgstr "" +msgstr "शीर्षक" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 msgid "Title" -msgstr "" +msgstr "शीर्षक" #: apps/client/src/pages/builder/_components/toolbar.tsx:120 msgid "Toggle Page Break Line" @@ -1518,7 +1509,7 @@ msgstr "" #: apps/client/src/pages/home/sections/features/index.tsx:68 msgid "Track views and downloads" -msgstr "" +msgstr "व्ह्यू आणि डाउनलोड ट्रॅक करा" #: apps/client/src/pages/auth/verify-otp/page.tsx:52 #: apps/client/src/pages/auth/verify-otp/page.tsx:57 @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "पूर्ववत करा" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,13 +1562,13 @@ msgstr "रेझ्युमेचा कुलूप उघडून आपण msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" -msgstr "" +msgstr "अस्तित्वातील वस्तू अपडेट करा" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:177 msgid "Update an existing resume" -msgstr "" +msgstr "अस्तित्वातील रेझ्युमे अपडेट करा" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "वापरकर्तानाव" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "मूल्य" @@ -1643,10 +1634,14 @@ msgstr "आवृत्ती ४" msgid "Views" msgstr "दृश्ये" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "दृश्यमान" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1667,24 +1662,24 @@ msgstr "संकेतस्थळ" #: apps/client/src/pages/home/sections/hero/index.tsx:32 msgid "What's new in the latest version" -msgstr "" +msgstr "नवीनतम आवृत्तीत नवीन काय" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" #: apps/client/src/pages/auth/login/page.tsx:94 msgid "You can also enter your username." +msgstr "तुम्ही तुमचे युझरनेमसुद्धा प्रविष्ट करू शकता." + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1703,13 +1698,13 @@ msgstr "" #: apps/client/src/pages/auth/forgot-password/page.tsx:49 #: apps/client/src/pages/auth/forgot-password/page.tsx:54 msgid "You've got mail!" -msgstr "" +msgstr "तुम्हाला मेल पाठवले आहे!" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1727,8 +1722,9 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:94 msgid "Zoom In" -msgstr "" +msgstr "आत झूम करा" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" -msgstr "" +msgstr "बाहेर झूम करा" + diff --git a/apps/client/src/locales/ms-MY/messages.po b/apps/client/src/locales/ms-MY/messages.po index 1a7efc01..79ce6375 100644 --- a/apps/client/src/locales/ms-MY/messages.po +++ b/apps/client/src/locales/ms-MY/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ms\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Malay\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -38,7 +38,7 @@ msgstr "<0>Saya membina Reaktif Resume kebanyakannya sendiri semasa masa lapang msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Saya yakin aplikasi ini tidak sempurna, tetapi saya ingin ia menjadi sempurna.<1>Jika anda menghadapi sebarang isu semasa membuat resume anda, atau mempunyai idea yang boleh membantu anda dan pengguna lain dalam membuat resume anda dengan lebih mudah, sila berikan isu di repository atau hantar saya emel mengenainya." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Nota: Dengan menggunakan API OpenAI, anda mengakui dan menerima <1>terma penggunaan dan <2>dasar privasi yang digariskan oleh OpenAI. Sila ambil perhatian bahawa Reactive Resume tidak bertanggungjawab atas sebarang penggunaan perkhidmatan yang tidak betul atau tidak dibenarkan, dan sebarang akibat atau liabiliti yang timbul semata-mata bergantung kepada pengguna." @@ -98,12 +98,12 @@ msgstr "Hanya menerima fail {accept}" msgid "Account" msgstr "Akaun" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Tambahkan medan tersuai" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Tambah item baru" @@ -146,11 +146,7 @@ msgstr "Sesiapa yang mempunyai pautan boleh melihat dan muat turun resume." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Sesiapa dengan pautan ini boleh melihat dan memuat turun resume. Kongsi pada profil anda atau dengan perekrut." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "Kunci API" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Adakah anda pasti ingin memadamkan item ini?" @@ -209,6 +205,10 @@ msgstr "Kod Sandaran" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Kod Sandaran mungkin mengandungi huruf kecil atau nombor sahaja, dan mesti tepat 10 aksara." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 +msgid "Base URL" +msgstr "Pautan Asas" + #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." msgid "Basics" @@ -235,7 +235,7 @@ msgstr "Dibina dengan" msgid "By the community, for the community." msgstr "Oleh komuniti, untuk komuniti." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Sahkan Kata Laluan Baru" msgid "Continue" msgstr "Teruskan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Salin" @@ -318,7 +318,7 @@ msgstr "Salin Pautan ke Resume" msgid "Copy to Clipboard" msgstr "Salin ke Papan Keratan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Cipta" @@ -328,7 +328,7 @@ msgstr "Cipta" msgid "Create a new account" msgstr "Cipta akaun baru" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Cipta item baru" @@ -385,9 +385,9 @@ msgstr "Tarikh" msgid "Date or Date Range" msgstr "Tarikh atau Julat Tarikh" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Muat turun PDF" msgid "Downloads" msgstr "Muat turun" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplikat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplikat item yang sedia ada" @@ -478,7 +478,7 @@ msgstr "Duplikat item yang sedia ada" msgid "Duplicate an existing resume" msgstr "Duplikat resume sedia ada" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Edit" @@ -575,7 +575,7 @@ msgstr "Varian Fon" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Sebagai contoh, maklumat mengenai syarikat-syarikat yang anda hantar resume ini atau pautan-pautan ke huraian pekerjaan boleh dicatatkan di sini." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Lupakan" @@ -658,8 +658,8 @@ msgstr "Di sini, anda boleh mengemaskini maklumat akaun anda seperti gambar prof msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Di sini, anda boleh mengemaskini profil anda untuk menyesuaikan dan memperibadikan pengalaman anda." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Tersembunyi" @@ -690,7 +690,7 @@ msgstr "Menyimpan resume anda secara awam" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Saya sentiasa sukakan mendengar dari pengguna-pengguna Reactive Resume dengan maklum balas atau sokongan. Berikut adalah beberapa mesej yang saya terima. Jika anda mempunyai sebarang maklum balas, jangan ragu untuk menghantar emel kepada saya di <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikon" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Kata Kunci" @@ -809,7 +809,7 @@ msgstr "Label" msgid "Language" msgstr "Bahasa" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Terakhir dikemaskini {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Lokasi" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,10 +914,18 @@ msgstr "Mac 2023 - Sekarang" msgid "Margin" msgstr "Margin" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 +msgid "Max Tokens" +msgstr "Tanda-tanda terbesar" + #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Lesen MIT" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 +msgid "Model" +msgstr "Modal" + #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48 @@ -926,7 +934,7 @@ msgstr "Lesen MIT" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nama" @@ -936,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nama" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Rangkaian" @@ -972,7 +980,7 @@ msgstr "Kata Laluan Sekali" msgid "Oops, the server returned an error." msgstr "Ups, pelayan mengembalikan ralat." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -982,17 +990,24 @@ msgstr "Buka" msgid "Open Source" msgstr "Sumber Terbuka" -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks anda." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integrasi OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1077,7 +1092,7 @@ msgstr "Kedudukan" msgid "Powered by" msgstr "Dikuasakan oleh" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Dikuasakan oleh <0>Simple Icons" @@ -1151,7 +1166,7 @@ msgstr "Reactive Resume berkembang pesat berkat komuniti yang aktif. Projek ini msgid "Redo" msgstr "Buat semula" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Keluarkan" @@ -1161,7 +1176,7 @@ msgid "Remove Page" msgstr "Buang Halaman" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1206,13 +1221,21 @@ msgstr "Kaya dengan ciri-ciri, bukan harga." msgid "Rounded" msgstr "Bulat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Simpan Perubahan" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Save Locally" +msgstr "Simpan di dalam computer" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Saved" +msgstr "Disimpan" + #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." msgstr "Imbas kod QR di bawah dengan aplikasi pengesah anda untuk setup 2FA pada akaun anda." @@ -1376,18 +1399,10 @@ msgstr "Statistik" msgid "Statistics are available only for public resumes." msgstr "Statistik hanya tersedia untuk resume awam." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "Simpan setempat" - #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:162 msgid "Store your backup codes securely" msgstr "Simpan kod sandaran anda dengan selamat" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "Disimpan" - #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:128 @@ -1433,10 +1448,6 @@ msgstr "Testimoni" msgid "Text Color" msgstr "Warna Teks" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Itu tidak kelihatan seperti kunci API OpenAI yang sah." - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Kata laluan yang anda masukkan tidak sepadan" @@ -1455,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Terdapat ralat semasa menyambung ke pelayar. Sila pastikan 'chrome' sedang berfungsi dan boleh dihubungi." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Tindakan ini boleh dikembalikan dengan mengklik butang batal di toolbar terapung." @@ -1537,7 +1548,7 @@ msgid "Undo" msgstr "Undurkan" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1551,7 +1562,7 @@ msgstr "Membuka semula resume akan membolehkan anda membuat perubahan padanya se msgid "Unverified" msgstr "Belum disahkan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Kemas kini item yang sedia ada" @@ -1581,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Pengguna tidak mempunyai rekod 'rahsia' yang berkaitan. Sila laporkan isu ini di GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nama pengguna" @@ -1598,7 +1609,7 @@ msgstr "Sahkan" msgid "Validated" msgstr "Disahkan" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Nilai" @@ -1623,10 +1634,14 @@ msgstr "Versi 4" msgid "Views" msgstr "Pandangan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Kelihatan" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Kami mengesahkan alamat emel anda hanya untuk memastikan bahawa kami boleh menghantar pautan set semula kata laluan jika anda lupa kata laluan anda." @@ -1636,7 +1651,7 @@ msgstr "Kami mengesahkan alamat emel anda hanya untuk memastikan bahawa kami bol #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1649,9 +1664,9 @@ msgstr "Laman web" msgid "What's new in the latest version" msgstr "Apakah yang baru dalam versi terkini" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan koma atau menekan enter." @@ -1660,7 +1675,11 @@ msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan msgid "You can also enter your username." msgstr "Anda juga boleh memasukkan nama pengguna anda." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Anda boleh menggunakan API OpenAI untuk membantu anda menghasilkan kandungan, atau meningkatkan penulisan anda semasa menyusun resume anda." @@ -1668,7 +1687,7 @@ msgstr "Anda boleh menggunakan API OpenAI untuk membantu anda menghasilkan kandu msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Anda boleh mengesan jumlah paparan resume anda telah diterima, atau berapa ramai orang yang telah memuat turun resume dengan membolehkan perkongsian awam." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Anda mempunyai pilihan untuk <0>mendapatkan kunci API OpenAI anda sendiri. Kunci ini membolehkan anda menggunakan API sebagaimana yang anda lihat sesuai. Atau, jika anda ingin menyahdayakan ciri-ciri KI dalam Resume Reaktif sepenuhnya, anda boleh membuang kunci itu dari tetapan anda." @@ -1685,7 +1704,7 @@ msgstr "Anda telah menerima emel!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Akaun dan semua data anda telah berjaya dipadam. Selamat tinggal!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Kunci API anda disimpan dengan selamat dalam storan tempatan pelayar dan hanya digunakan apabila membuat permintaan kepada OpenAI melalui SDK rasmi mereka. Kita yakin bahawa kunci anda tidak dihantar ke mana-mana pelayan luar kecuali semasa berinteraksi dengan perkhidmatan OpenAI." diff --git a/apps/client/src/locales/ne-NP/messages.po b/apps/client/src/locales/ne-NP/messages.po index ea622fb4..8b99d434 100644 --- a/apps/client/src/locales/ne-NP/messages.po +++ b/apps/client/src/locales/ne-NP/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ne\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Nepali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/nl-NL/messages.po b/apps/client/src/locales/nl-NL/messages.po index c1cff35e..6b93655b 100644 --- a/apps/client/src/locales/nl-NL/messages.po +++ b/apps/client/src/locales/nl-NL/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: nl\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Ik heb Reactive Resume grotendeels zelf gebouwd in mijn vrije tijd, m msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Ik weet zeker dat de app niet perfect is, maar dat zou ik wel graag willen.<1>Als u problemen ondervond bij het maken van uw cv, of een idee hebt dat u en andere gebruikers zou helpen bij het gemakkelijker maken van uw cv, stuur dan een bericht naar de repository of stuur mij een e-mail hierover." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Opmerking: Door gebruik te maken van de OpenAI API, erkent en aanvaardt u de <1>gebruiksvoorwaarden en <2>het privacybeleid van OpenAI. Houd er rekening mee dat Reactive Resume geen verantwoordelijkheid draagt voor onjuist of ongeautoriseerd gebruik van de service, en dat alle daaruit voortvloeiende gevolgen of aansprakelijkheden uitsluitend op de gebruiker rusten." @@ -98,12 +98,12 @@ msgstr "Accepteert alleen {accept} bestanden" msgid "Account" msgstr "Account" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Aangepast veld toevoegen" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Een nieuw item toevoegen" @@ -146,7 +146,7 @@ msgstr "Iedereen met de link kan het CV bekijken en downloaden." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Iedereen met deze link kan het CV bekijken en downloaden. Deel het op je profiel of met recruiters." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Weet u zeker dat u dit item wilt verwijderen?" @@ -205,9 +205,9 @@ msgstr "Back-up code" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Back-upcodes mogen alleen kleine letters of cijfers bevatten en moeten exact 10 tekens lang zijn." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Basis URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Ontwikkeld met" msgid "By the community, for the community." msgstr "Door de gemeenschap, voor de gemeenschap." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Nieuw Wachtwoord Bevestigen" msgid "Continue" msgstr "Hervatten" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopiëren" @@ -318,7 +318,7 @@ msgstr "Link naar CV Kopiëren" msgid "Copy to Clipboard" msgstr "Naar Klembord Kopiëren" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Aanmaken" @@ -328,7 +328,7 @@ msgstr "Aanmaken" msgid "Create a new account" msgstr "Maak een nieuw account aan" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Maak een nieuw item aan" @@ -385,9 +385,9 @@ msgstr "Datum" msgid "Date or Date Range" msgstr "Datum of Datumbereik" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Download PDF" msgid "Downloads" msgstr "Downloads" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Dupliceer" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Een bestaand item dupliceren" @@ -478,7 +478,7 @@ msgstr "Een bestaand item dupliceren" msgid "Duplicate an existing resume" msgstr "Een bestaand cv dupliceren" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Wijzigen" @@ -575,7 +575,7 @@ msgstr "Lettertypevarianten" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Hier kunt u bijvoorbeeld informatie noteren over naar welke bedrijven u deze CV hebt gestuurd, of de links naar de functiebeschrijvingen." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Vergeten" @@ -658,8 +658,8 @@ msgstr "Hier kunt u uw account informatie bijwerken, zoals uw profielfoto, naam msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Hier kunt u uw profiel bijwerken om uw ervaring aan te passen en te personaliseren." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Verborgen" @@ -690,7 +690,7 @@ msgstr "Publiceer uw CV" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Ik hoor altijd graag feedback of ondersteuning van de gebruikers van Reactive Resume. Hier zijn enkele berichten die ik heb ontvangen. Als u feedback hebt, stuur mij dan een e-mail op <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Pictogram" @@ -793,9 +793,9 @@ msgstr "jan.janssen@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Sleutelwoorden" @@ -809,7 +809,7 @@ msgstr "Label" msgid "Language" msgstr "Taal" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Laatst bijgewerkt {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Locatie" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "maart 2023 - Heden" msgid "Margin" msgstr "Marge" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Maximum aantal tokens" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "MIT Licentie" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Model" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Naam" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Naam" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Netwerk" @@ -969,10 +969,6 @@ msgstr "Let op: Dit maakt uw account minder veilig." msgid "Notes" msgstr "Aantekeningen" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Eenmalig Wachtwoord" @@ -984,7 +980,7 @@ msgstr "Eenmalig Wachtwoord" msgid "Oops, the server returned an error." msgstr "Oeps, de server gaf een fout." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Open" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI gaf geen keuzen voor uw text." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI-Integratie" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Positie" msgid "Powered by" msgstr "Mogelijk gemaakt door" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Mogelijk gemaakt door <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume is succesvol dankzij de levendige gemeenschap. Dit proje msgid "Redo" msgstr "Opnieuw" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Verwijderen" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Pagina verwijderen" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Rijk aan functies, niet aan prijzen." msgid "Rounded" msgstr "Afgeronde hoeken" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Wijzigingen Opslaan" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Lokaal opslaan" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Opgeslagen" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1449,14 +1448,6 @@ msgstr "Getuigenissen" msgid "Text Color" msgstr "Tekstkleur" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Dat ziet er niet uit als een geldige OpenAI API-sleutel." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "De ingevoerde wachtwoorden komen niet overeen." @@ -1475,7 +1466,7 @@ msgstr "Thema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Er is een fout opgetreden bij het verbinden met de browser. Zorg ervoor dat 'chrome' actief en bereikbaar is." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Deze actie kan u terugdraaien door op de knop 'Ongedaan maken' in de zwevende werkbalk te klikken." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Ongedaan maken" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Als je een CV ontgrendelt, kun je er opnieuw wijzigingen in aanbrengen." msgid "Unverified" msgstr "Niet geverifiëerd" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Een bestaand item bijwerken" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "De gebruiker heeft geen geassocieerde 'secrets' record. Gelieve dit probleem te rapporteren op GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Gebruikersnaam" @@ -1618,7 +1609,7 @@ msgstr "Valideren" msgid "Validated" msgstr "Gevalideerd" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Waarde" @@ -1643,10 +1634,14 @@ msgstr "Versie 4" msgid "Views" msgstr "Weergaven" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Zichtbaar" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Wij verifiëren uw e-mailadres enkel om ervoor te zorgen dat wij u een link kunnen sturen om uw wachtwoord opnieuw in te stellen, mocht u uw wachtwoord vergeten zijn." @@ -1656,7 +1651,7 @@ msgstr "Wij verifiëren uw e-mailadres enkel om ervoor te zorgen dat wij u een l #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Website" msgid "What's new in the latest version" msgstr "Wat is er nieuw in de laatste versie" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma of door op enter te drukken." @@ -1680,11 +1675,11 @@ msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma msgid "You can also enter your username." msgstr "U kunt ook uw gebruikersnaam invoeren." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "U kunt gebruik maken van de OpenAI API om tekst te genereren, of om uw schrijfvaardigheid te verbeteren bij het opstellen van uw CV." @@ -1692,7 +1687,7 @@ msgstr "U kunt gebruik maken van de OpenAI API om tekst te genereren, of om uw s msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Door openbaar delen in te schakelen, kunt u bijhouden hoeveel keer uw cv is bekeken en hoeveel mensen uw cv gedownload hebben." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "U heeft de mogelijkheid om <0>uw eigen OpenAI API-sleutel te verkrijgen. Met deze sleutel kunt u de API naar eigen inzicht gebruiken. Als u de AI-functies in Reactive Resume helemaal wilt uitschakelen, kunt u de sleutel ook gewoon uit uw instellingen verwijderen." @@ -1709,7 +1704,7 @@ msgstr "Je hebt een mail ontvangen!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Uw account en al uw gegevens zijn succesvol verwijderd. Tot ziens!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Uw API-sleutel wordt veilig opgeslagen in de lokale opslag van de browser en wordt alleen gebruikt bij het doen van verzoeken aan OpenAI via hun officiële SDK. U kunt erop vertrouwen dat uw sleutel niet naar een externe server wordt verzonden, behalve tijdens interactie met diensten van OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Inzoomen" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Uitzoomen" + diff --git a/apps/client/src/locales/no-NO/messages.po b/apps/client/src/locales/no-NO/messages.po index 0c79b0da..d4f4508e 100644 --- a/apps/client/src/locales/no-NO/messages.po +++ b/apps/client/src/locales/no-NO/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: no\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Jeg bygde Reactive Resume for det meste alene på fritiden, med mye h msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Jeg er sikker på at appen ikke er perfekt, men jeg vil gjerne at den skal være det.<1>Hvis du har møtt på noen problemer mens du lagde CV-en din, eller har en idé som ville hjulpet deg selv eller andre brukere med å lage CV-en din mer enkelt, legg inn et problem på GitHub Repository eller send meg en e-post om det." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Merk: Ved å bruke OpenAI API, erkjenner og godtar du <1>bruksvilkårene og <2>personvernreglene skissert av OpenAI. Vær oppmerksom på at Reactive Resume ikke har noe ansvar for feil eller uautorisert bruk av tjenesten, og eventuelle følgevirkninger eller ansvar hviler utelukkende på brukeren." @@ -98,12 +98,12 @@ msgstr "Godtar kun {accept} filer" msgid "Account" msgstr "Konto" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Legg til egendefinert felt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Legg til nytt element" @@ -146,7 +146,7 @@ msgstr "Alle med linken kan se og laste ned CV-en." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Alle som har denne lenken kan se og laste ned CVen. Del den på profilen din eller med rekrutterere." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Er du sikker på at du vil slette dette elementet?" @@ -205,9 +205,9 @@ msgstr "Sikkerhetskopi-kode" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Sikkerhetskopi-koder kan bare inneholde små bokstaver eller tall, og må være nøyaktig 10 tegn." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Basis-URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Bygget med" msgid "By the community, for the community." msgstr "Av fellesskapet, for fellesskapet." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Bekreft Nytt Passord" msgid "Continue" msgstr "Fortsett" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopier" @@ -318,7 +318,7 @@ msgstr "Kopier Lenke til CV" msgid "Copy to Clipboard" msgstr "Kopier til utklipstavlen" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Opprett" @@ -328,7 +328,7 @@ msgstr "Opprett" msgid "Create a new account" msgstr "Opprett ny konto" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Opprett nytt element" @@ -385,9 +385,9 @@ msgstr "Dato" msgid "Date or Date Range" msgstr "Dato eller Datoperiode" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Last ned PDF" msgid "Downloads" msgstr "Nedlastinger" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Dupliser" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Dupliser et eksisterende element" @@ -478,7 +478,7 @@ msgstr "Dupliser et eksisterende element" msgid "Duplicate an existing resume" msgstr "Dupliser en eksisterende CV" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Rediger" @@ -575,7 +575,7 @@ msgstr "Skriftvarianter" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "For eksempel kan du notere informasjon om hvilke selskaper du har sendt denne CV-en til eller lenkene til stillingsbeskrivelsene her." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Glem" @@ -658,8 +658,8 @@ msgstr "Her kan du oppdatere kontoinformasjonen din, som profilbildet, navnet og msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Her kan du oppdatere profilen din for å tilpasse og personliggjøre opplevelsen din." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Skjult" @@ -690,7 +690,7 @@ msgstr "Publiser CV-en din offentlig" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Jeg elsker alltid å høre fra brukerne av Reactive Resume med tilbakemeldinger eller støtte. Her er noen av tilbakemeldingene jeg har mottatt. Hvis du har en tilbakemelding, send meg gjerne en e-post på <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikon" @@ -793,9 +793,9 @@ msgstr "ola.nordmann@eksempel.no" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Nøkkelord" @@ -809,7 +809,7 @@ msgstr "Merke" msgid "Language" msgstr "Språk" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Sist oppdatert {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Sted" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "Mars 2023 - Nåværende" msgid "Margin" msgstr "Margin" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Maks antall tegn" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "MIT-lisens" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Modell" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Navn" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Navn" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Nettverk" @@ -969,10 +969,6 @@ msgstr "Merk: Dette vil gjøre kontoen din mindre sikker." msgid "Notes" msgstr "Notater" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Engangspassord" @@ -984,7 +980,7 @@ msgstr "Engangspassord" msgid "Oops, the server returned an error." msgstr "Oops, serveren returnerte en feil." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Åpen" msgid "Open Source" msgstr "Åpen Kildekode" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI returnerte ingen valg for teksten din." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI-integrasjon" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Posisjon" msgid "Powered by" msgstr "Drevet av" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Drevet av <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume trives takket være sitt pulserende fellesskap. Dette pr msgid "Redo" msgstr "Gjør om" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Fjern" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Fjern Side" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Rik på funksjoner, ikke på pris." msgid "Rounded" msgstr "Avrundet" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Lagre Endringer" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Lagre lokalt" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Lagret" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1284,7 +1283,7 @@ msgstr "Send meg en melding" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "Separate lenker" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1351,7 +1350,7 @@ msgstr "Registrer deg" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "Innlogging via e-post er for øyeblikket deaktivert av administratoren." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "Uttalelser" msgid "Text Color" msgstr "Tekstfarge" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Det ser ikke ut som en gyldig OpenAI API-nøkkel." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Passordene du har angitt stemmer ikke overens." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Det oppsto en feil ved tilkobling til nettleseren. Sørg for at 'chrome' kjører og er tilgjengelig." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Denne handlingen kan angres ved å klikke på tilbakestill-knappen i den flytende verktøylinjen." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Angre" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Å låse opp en CV vil tillate deg å gjøre endringer i den igjen." msgid "Unverified" msgstr "Ubekreftet" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Oppdater et eksisterende element" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Brukeren har ikke tilknyttet en 'secrets' oppføring. Vennligst rapporter dette problemet på GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Brukernavn" @@ -1618,7 +1609,7 @@ msgstr "Valider" msgid "Validated" msgstr "Validert" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Verdi" @@ -1643,10 +1634,14 @@ msgstr "Versjon 4" msgid "Views" msgstr "Visninger" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Synlig" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Vi bekrefter e-postadressen din kun for å sikre at vi kan sende deg en lenke for tilbakestilling av passord i tilfelle du glemmer passordet ditt." @@ -1656,7 +1651,7 @@ msgstr "Vi bekrefter e-postadressen din kun for å sikre at vi kan sende deg en #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Nettsted" msgid "What's new in the latest version" msgstr "Hva er nytt i den nyeste versjonen" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller trykke enter." @@ -1680,11 +1675,11 @@ msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller t msgid "You can also enter your username." msgstr "Du kan også skrive inn brukernavnet ditt." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Du kan bruke OpenAI API for å hjelpe deg med å generere innhold, eller forbedre skrivingen din mens du skriver din CV." @@ -1692,7 +1687,7 @@ msgstr "Du kan bruke OpenAI API for å hjelpe deg med å generere innhold, eller msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Du kan spore antall visninger CV-en din har mottatt, eller hvor mange personer som har lastet ned CV-en ved å aktivere offentlig deling." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Du har muligheten til å <0>skaffe din egen OpenAI API-nøkkel. Denne nøkkelen gir deg mulighet til å utnytte API-en slik det passer deg. Alternativt, hvis du ønsker å deaktivere KI-funksjonene i Reactive Resume helt, kan du ganske enkelt fjerne nøkkelen fra innstillingene dine." @@ -1709,7 +1704,7 @@ msgstr "Du har fått e-post!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Kontoen din og alle dataene dine er slettet. Ha det bra!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "API-nøkkelen din er trygt lagret i nettleserens lokale lagring og brukes kun når du sender forespørsler til OpenAI via deres offisielle SDK. Du kan være trygg på at nøkkelen din ikke overføres til noen ekstern server bortsett fra når du samhandler med OpenAI's tjenester." @@ -1732,3 +1727,4 @@ msgstr "Zoom inn" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Zoom ut" + diff --git a/apps/client/src/locales/or-IN/messages.po b/apps/client/src/locales/or-IN/messages.po index f67d6760..8bfbd19d 100644 --- a/apps/client/src/locales/or-IN/messages.po +++ b/apps/client/src/locales/or-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: or\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Odia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/pl-PL/messages.po b/apps/client/src/locales/pl-PL/messages.po index 8f40cc94..a6a0049b 100644 --- a/apps/client/src/locales/pl-PL/messages.po +++ b/apps/client/src/locales/pl-PL/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pl\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Polish\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -38,7 +38,7 @@ msgstr "<0>Zbudowałem Reactive Resume głównie sam w wolnym czasie, z dużą p msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Jestem pewny, że aplikacja nie jest idealna, ale chciałbym, aby taka była.<1>Jeśli wystąpią jakiekolwiek problemy podczas tworzenia CV lub masz pomysł, który pomógłby Tobie i innym użytkownikom w łatwiejszym tworzeniu CV, zgłoś problem w repozytorium lub wyślij mi e-mail w tej sprawie." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Uwaga: Korzystając z interfejsu API OpenAI, użytkownik przyjmuje do wiadomości i akceptuje <1>warunki użytkowania i <2>politykę prywatności określone przez OpenAI. Pamiętaj, że Reactive Resume nie ponosi żadnej odpowiedzialności za niewłaściwe lub nieautoryzowane korzystanie z usługi, a wszelkie wynikające z tego reperkusje lub zobowiązania spoczywają wyłącznie na użytkowniku." @@ -98,12 +98,12 @@ msgstr "Akceptuje tylko pliki {accept}" msgid "Account" msgstr "Konto" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Dodaj niestandardowe pole" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Dodaj nowy element" @@ -146,7 +146,7 @@ msgstr "Każda osoba posiadająca link może wyświetlić i pobrać CV." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Każda osoba posiadająca ten link może wyświetlić i pobrać CV. Udostępnij go na swoim profilu lub wyślij rekruterom." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Czy na pewno chcesz usunąć ten element?" @@ -205,7 +205,7 @@ msgstr "Kod Zapasowy" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Kody Zapasowe mogą zawierać wyłącznie małe litery lub cyfry i muszą mieć dokładnie 10 znaków." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Wykorzystane technologie" msgid "By the community, for the community." msgstr "Zbudowane przez społeczność dla społeczności." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Potwierdź Nowe Hasło" msgid "Continue" msgstr "Dalej" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopiuj" @@ -318,7 +318,7 @@ msgstr "Skopiuj link do CV" msgid "Copy to Clipboard" msgstr "Skopiuj do Schowka" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Stwórz" @@ -328,7 +328,7 @@ msgstr "Stwórz" msgid "Create a new account" msgstr "Stwórz nowe konto" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Stwórz nowy element" @@ -385,9 +385,9 @@ msgstr "Data" msgid "Date or Date Range" msgstr "Data lub zakres dat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Pobierz PDF" msgid "Downloads" msgstr "Pliki do pobrania" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplikat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplikuj istniejący element" @@ -478,7 +478,7 @@ msgstr "Duplikuj istniejący element" msgid "Duplicate an existing resume" msgstr "Zduplikuj istniejące CV" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Edytuj" @@ -575,7 +575,7 @@ msgstr "Wariant Czcionki" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Można tu na przykład zapisać informacje o firmach, do których wysłałeś to CV, lub linki do opisów stanowisk." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Zapomnij" @@ -658,8 +658,8 @@ msgstr "Tutaj możesz zaktualizować informacje o swoim koncie, takie jak zdjęc msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Tutaj możesz zaktualizować swój profil, aby dostosować i spersonalizować swoje doświadczenia." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Ukryte" @@ -690,7 +690,7 @@ msgstr "Udostępnij swoje CV publicznie" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Uwielbiam otrzymywać opinie lub feedback od użytkowników Reactive Resume. Oto niektóre wiadomości, które otrzymałem. Jeśli masz jakieś uwagi, napisz do mnie e-mail na adres <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikona" @@ -793,9 +793,9 @@ msgstr "jan.kowalski@przyklad.pl" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Słowa Kluczowe" @@ -809,7 +809,7 @@ msgstr "Etykieta" msgid "Language" msgstr "Język" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Ostatnio zaktualizowane {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Lokalizacja" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "Marzec 2023 – obecnie" msgid "Margin" msgstr "Marginesy" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "Licencja MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nazwa" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nazwa" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Sieć" @@ -969,10 +969,6 @@ msgstr "Uwaga: Spowoduje to zmniejszenie bezpieczeństwa Twojego konta." msgid "Notes" msgstr "Notatki" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Jednorazowe hasło" @@ -984,7 +980,7 @@ msgstr "Jednorazowe hasło" msgid "Oops, the server returned an error." msgstr "Ups, serwer zwrócił błąd." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Otwórz" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI nie zwróciło żadnych wyborów dla Twojego tekstu." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integracja z OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Stanowisko" msgid "Powered by" msgstr "Napędzane przez" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Napędzane przez <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume rozwija się dzięki tętniącej życiem społeczności. msgid "Redo" msgstr "Ponów" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Usuń" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Usuń Stronę" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Bogaty w funkcjonalności, nie w rozbudowany cennik." msgid "Rounded" msgstr "Zaokrąklony" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Zapisz Zmiany" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1284,7 +1283,7 @@ msgstr "Wyślij mi wiadomość" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "Oddzielny Link" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1351,7 +1350,7 @@ msgstr "Zarejestruj się" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "Logowanie poprzez E-mail zostało wyłączone przez Administratora." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "Referencje" msgid "Text Color" msgstr "Kolor Tekstu" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "To nie wygląda na prawidłowy klucz API OpenAI." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Wprowadzone hasła nie są zgodne." @@ -1475,7 +1466,7 @@ msgstr "Motyw" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Wystąpił błąd podczas łączenia się z przeglądarką. Upewnij się, że „Chrome” jest uruchomiony i dostępny." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Tę czynność można cofnąć, klikając przycisk cofania na pływającym pasku narzędzi." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Cofnij" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Odblokowanie CV umożliwi ponowne wprowadzenie w nim zmian." msgid "Unverified" msgstr "Niezweryfikowany" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Zaktualizuj istniejący element" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Użytkownik nie ma powiązanego rekordu \"secrets\". Proszę zgłosić ten błąd na GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nazwa Użytkownika" @@ -1618,7 +1609,7 @@ msgstr "Zweryfikuj" msgid "Validated" msgstr "Zatwierdzone" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Wartość" @@ -1643,10 +1634,14 @@ msgstr "Wersja 4" msgid "Views" msgstr "Wyświetlenia" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Widoczny" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Weryfikujemy Twój adres e-mail tylko po to, aby mieć pewność, że będziemy mogli wysłać Ci link do resetowania hasła w przypadku, gdy zapomnisz hasła." @@ -1656,7 +1651,7 @@ msgstr "Weryfikujemy Twój adres e-mail tylko po to, aby mieć pewność, że b #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Strona" msgid "What's new in the latest version" msgstr "Co nowego w najnowszej wersji" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter." @@ -1680,11 +1675,11 @@ msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub msgid "You can also enter your username." msgstr "Możesz także wpisać swoją nazwę użytkownika." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Możesz skorzystać z interfejsu API OpenAI, aby pomóc w generowaniu treści lub ulepszaniu pisania podczas tworzenia CV." @@ -1692,7 +1687,7 @@ msgstr "Możesz skorzystać z interfejsu API OpenAI, aby pomóc w generowaniu tr msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Możesz śledzić liczbę wyświetleń Twojego CV lub liczbę osób, które pobrały CV, włączając udostępnianie publiczne." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Masz możliwość <0>uzyskania własnego klucza API OpenAI. Ten klucz umożliwia wykorzystanie interfejsu API według własnego uznania. Alternatywnie, jeśli chcesz całkowicie wyłączyć funkcje AI w Reactive Resume, możesz po prostu usunąć klucz ze swoich ustawień." @@ -1709,7 +1704,7 @@ msgstr "Wysłaliśmy do Ciebie e-mail!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Twoje konto i wszystkie dane zostały pomyślnie usunięte. Trzymaj się!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Twój klucz API jest bezpiecznie przechowywany w lokalnej pamięci przeglądarki i jest używany tylko podczas wysyłania żądań do OpenAI za pośrednictwem oficjalnego pakietu SDK. Możesz mieć pewność, że Twój klucz nie zostanie przesłany do żadnego serwera zewnętrznego, z wyjątkiem interakcji z usługami OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Powiększ" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Pomniejsz" + diff --git a/apps/client/src/locales/pt-BR/messages.po b/apps/client/src/locales/pt-BR/messages.po index 90847f7d..4eb66a87 100644 --- a/apps/client/src/locales/pt-BR/messages.po +++ b/apps/client/src/locales/pt-BR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Eu criei o Reactive Resume basicamente sozinho durante meu tempo livr msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Tenho certeza de que o aplicativo não é perfeito, mas gostaria que fosse. <1>Se você enfrentou algum problema ao criar seu currículo ou tem uma ideia que ajudaria você e outros usuários a criar seu currículo com mais facilidade, deixe um problema no repositório ou envie-me um e-mail sobre isso." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Nota: Ao utilizar a API OpenAI, você reconhece e aceita os <1>termos de uso e <2>política de privacidade definidos pela OpenAI. Observe que o Reactive Resume não se responsabiliza por qualquer utilização inadequada ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes são exclusivamente do usuário." @@ -98,12 +98,12 @@ msgstr "Aceito apenas {accept} arquivos" msgid "Account" msgstr "Conta" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Adicionar campo customizado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Adicionar novo item" @@ -146,7 +146,7 @@ msgstr "Qualquer pessoa com o link pode visualizar e baixar o currículo." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Qualquer pessoa com este link pode visualizar e baixar o currículo. Compartilhe seu perfil ou com recrutadores." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Tem certeza de que deseja excluir este item?" @@ -205,9 +205,9 @@ msgstr "Código de Segurança" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Os códigos de segurança só podem conter letras minúsculas ou números, e devem ter exatamente 10 caracteres." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "URL Base" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Construído com" msgid "By the community, for the community." msgstr "Construída pela comunidade para a comunidade." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Confirmar Nova Senha" msgid "Continue" msgstr "Continuar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Copiar" @@ -318,7 +318,7 @@ msgstr "Copiar link para currículo" msgid "Copy to Clipboard" msgstr "Copiar para Área de Transferência" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Criar" @@ -328,7 +328,7 @@ msgstr "Criar" msgid "Create a new account" msgstr "Criar uma nova conta" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Criar um novo item" @@ -385,9 +385,9 @@ msgstr "Data" msgid "Date or Date Range" msgstr "Data ou intervalo de datas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Baixar PDF" msgid "Downloads" msgstr "Downloads" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplicar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplicar um item existente" @@ -478,7 +478,7 @@ msgstr "Duplicar um item existente" msgid "Duplicate an existing resume" msgstr "Duplicar um currículo existente" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Editar" @@ -508,7 +508,7 @@ msgstr "Digite um dos 10 códigos de backup que você salvou quando ativou a aut #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Inserir ícone do Phosphor" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -575,7 +575,7 @@ msgstr "Variante da Fonte" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Por exemplo, informações sobre quais empresas você enviou este currículo ou os links para as descrições do trabalho podem ser anotadas aqui." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Esquecer" @@ -658,8 +658,8 @@ msgstr "Aqui, você pode atualizar as informações da sua conta, como foto do p msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Aqui, você pode atualizar seu perfil para customizar e personalizar sua experiência." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Oculto" @@ -690,7 +690,7 @@ msgstr "Hospede seu currículo publicamente" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Sempre gosto de receber comentários ou suporte dos usuários do Reactive Resume. Aqui estão algumas das mensagens que recebi. Se você tiver algum comentário, sinta-se à vontade para enviar um e-mail para <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ícone" @@ -793,9 +793,9 @@ msgstr "joao.silva@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Palavras-chave" @@ -809,7 +809,7 @@ msgstr "Rótulo" msgid "Language" msgstr "Idioma" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Última atualização {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Localização" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "Março de 2023 - Presente" msgid "Margin" msgstr "Margem" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Máximo de Tokens" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Licença MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Modelo" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nome" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nome" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Rede" @@ -969,10 +969,6 @@ msgstr "Observação: Esta ação tornará sua conta menos segura." msgid "Notes" msgstr "Anotações" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Senha de uso único" @@ -984,7 +980,7 @@ msgstr "Senha de uso único" msgid "Oops, the server returned an error." msgstr "Oops, o servidor retornou um erro." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Abrir" msgid "Open Source" msgstr "Código Aberto" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI não retornou nenhuma opção para o seu texto." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integração com OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Posição" msgid "Powered by" msgstr "Desenvolvido por" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Desenvolvido por <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "O Reactive Resume só dá certo graças à sua comunidade vibrante. Este msgid "Redo" msgstr "Refazer" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Remover" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Remover Página" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Rico em recursos, não em preços." msgid "Rounded" msgstr "Arredondado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Salvar Alterações" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Salvar localmente" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Salvo" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1284,7 +1283,7 @@ msgstr "Envie-me uma mensagem" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "Links separados" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1449,14 +1448,6 @@ msgstr "Depoimentos" msgid "Text Color" msgstr "Cor do texto" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Isso não parece uma chave de API OpenAI válida." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "As senhas informadas não são iguais." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Ocorreu um erro ao conectar-se ao navegador. Certifique-se de que o 'chrome' esteja funcionando." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Essa ação pode ser revertida clicando no botão desfazer na barra de ferramentas flutuante." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Desfazer" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n msgid "Unverified" msgstr "Não verificado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Atualizar um item existente" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "O usuário não tem um registro \"secrets\" associado. Por favor, relate esse problema no GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nome de usuário" @@ -1618,7 +1609,7 @@ msgstr "Confirmar" msgid "Validated" msgstr "Validado" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Valor" @@ -1643,10 +1634,14 @@ msgstr "Versão 4" msgid "Views" msgstr "Visualizações" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Visível" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos enviar-lhe um link de redefinição de senha, caso esqueça sua senha." @@ -1656,7 +1651,7 @@ msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos en #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Site" msgid "What's new in the latest version" msgstr "O que há de novo na versão mais recente" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter." @@ -1680,11 +1675,11 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou msgid "You can also enter your username." msgstr "Você também pode inserir seu nome de usuário." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhorar seus textos ao escrever seu currículo." @@ -1692,7 +1687,7 @@ msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhora msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Você tem a opção de <0>obter sua própria chave de API da OpenAI. Essa chave permite que você aproveite a API como achar melhor. Se desejar desativar completamente os recursos de IA no Reactive Resume, basta remover a chave de suas configurações." @@ -1709,7 +1704,7 @@ msgstr "Você recebeu um e-mail!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Adeus!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Sua chave de API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio do SDK oficial. Você pode ter certeza de que sua chave não é transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Aumentar zoom" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Diminuir o Zoom" + diff --git a/apps/client/src/locales/pt-PT/messages.po b/apps/client/src/locales/pt-PT/messages.po index f3d7dc5e..2dde6b66 100644 --- a/apps/client/src/locales/pt-PT/messages.po +++ b/apps/client/src/locales/pt-PT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -20,7 +20,7 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "Ativou a autenticação de dois fatores com êxito." +msgstr "Ativou a autenticação de dois fatores com sucesso." #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" @@ -38,7 +38,7 @@ msgstr "<0>Eu criei o Reactive Resume principalmente sozinho durante o meu tempo msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Tenho noção de que a aplicação não é perfeita, mas gostaria que fosse. <1>Se encontrou algum problema ao criar o seu currículo ou tem uma ideia que ajudá-lo-ia a você e outros utilizadores a criar o seu currículo com mais facilidade, abra uma questão no repositório ou envie-me um e-mail." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Nota: Ao utilizar a API da OpenAI, reconhece e aceita os <1>termos de utilização e <2>a política de privacidade delineados pela OpenAI. Tenha em atenção que a Reactive Resume não assume qualquer responsabilidade por qualquer utilização imprópria ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes recaem exclusivamente sobre o utilizador." @@ -75,7 +75,7 @@ msgstr "Um projeto de paixão de <0>Amruth Pillai" #: apps/client/src/pages/auth/forgot-password/page.tsx:57 msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "Um link para redefinir a senha foi enviado para a sua caixa de entrada, se existir uma conta com o e-mail que forneceu." +msgstr "Um link de redefinição de palavra-passe será enviado para o seu email, caso exista uma conta com o e-mail que introduziu." #: apps/client/src/services/errors/translate-error.ts:43 msgid "A resume with this slug already exists, please pick a different unique identifier." @@ -98,12 +98,12 @@ msgstr "Apenas aceita ficheiros {accept}" msgid "Account" msgstr "Conta" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Adicionar um campo personalizado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Adicionar um novo item" @@ -119,7 +119,7 @@ msgstr "Adicionar uma nova secção" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:271 msgid "Add New Page" -msgstr "Adicionar Página" +msgstr "Adicionar Nova Página" #: apps/client/src/components/ai-actions.tsx:79 msgid "AI" @@ -144,9 +144,9 @@ msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo." #: apps/client/src/pages/builder/_components/toolbar.tsx:54 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo. Partilhe-o no seu perfil ou com recrutadores." +msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo. Partilhe no seu perfil ou com recrutadores." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Tem a certeza de que pretende eliminar este item?" @@ -205,7 +205,7 @@ msgstr "Código de backup" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Os códigos de backup apenas podem conter letras minúsculas ou números e devem ter exatamente 10 caracteres." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Construído com" msgid "By the community, for the community." msgstr "Pela comunidade, para a comunidade." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Confirme a nova senha" msgid "Continue" msgstr "Continuar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Copiar" @@ -318,7 +318,7 @@ msgstr "Copiar link para o currículo" msgid "Copy to Clipboard" msgstr "Copiar para a Área de Transferência" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Criar" @@ -328,7 +328,7 @@ msgstr "Criar" msgid "Create a new account" msgstr "Criar conta" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Criar um item" @@ -385,9 +385,9 @@ msgstr "Data" msgid "Date or Date Range" msgstr "Data ou intervalo de datas" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Baixar PDF" msgid "Downloads" msgstr "Downloads" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplicar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplicar um item existente" @@ -478,7 +478,7 @@ msgstr "Duplicar um item existente" msgid "Duplicate an existing resume" msgstr "Duplicar um currículo existente" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Editar" @@ -508,7 +508,7 @@ msgstr "Digite um dos 10 códigos de backup que guardou quando ativou a autentic #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Inserir o ícone Phosphor" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -575,7 +575,7 @@ msgstr "Variantes da fonte" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Por exemplo, informações sobre as empresas para as quais enviou este currículo ou os links para os anúncios de emprego podem ser anotadas aqui." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Esquecer" @@ -658,8 +658,8 @@ msgstr "Aqui, pode atualizar as informações da sua conta, como foto do perfil, msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Aqui, pode atualizar o seu perfil para personalizar a sua experiência." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Oculto" @@ -690,7 +690,7 @@ msgstr "Publique o seu currículo publicamente" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Gosto sempre de receber comentários ou apoio dos utilizadores do Reactive Resume. Aqui estão algumas das mensagens que recebi. Se tiver algum feedback, não hesite em enviar-me um e-mail para <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ícone" @@ -793,9 +793,9 @@ msgstr "joao.silva@exemplo.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Palavras-chave" @@ -809,7 +809,7 @@ msgstr "Rótulo" msgid "Language" msgstr "Idioma" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Última atualização {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Localização" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "Março de 2023 - presente" msgid "Margin" msgstr "Margem" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Máximo de Tokens" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Licença MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Modelo" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nome" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nome" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Rede Social" @@ -969,10 +969,6 @@ msgstr "Observação: isso tornará sua conta menos segura." msgid "Notes" msgstr "Notas" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Senha de uso único" @@ -984,7 +980,7 @@ msgstr "Senha de uso único" msgid "Oops, the server returned an error." msgstr "Desculpe, o servidor relatou um erro." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Abrir" msgid "Open Source" msgstr "Código Aberto" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI não retornou nenhuma escolha para o seu texto." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integração com OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Cargo" msgid "Powered by" msgstr "Desenvolvido em" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Desenvolvido em <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "O Reactive Resume prospera graças à sua comunidade vibrante. Este proj msgid "Redo" msgstr "Refazer" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Remover" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Remover página" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Rico em funcionalidades, não em custo." msgid "Rounded" msgstr "Arredondado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Salvar Alterações" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Guardar Localmente" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Guardado" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1284,7 +1283,7 @@ msgstr "Envie-me uma mensagem" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "Separação de ligações" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1351,7 +1350,7 @@ msgstr "Registar" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "Iniciar sessão via endereço eletrónico está atualmente desabilitado pelo administrador." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "Testemunhos" msgid "Text Color" msgstr "Cor do texto" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Isso não parece uma chave válida de API da OpenAI." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "As senhas que inseriu não são iguais." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Houve um erro na conexão com o navegador. Certifique-se de que o 'chrome' está a funcionar e acessível." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Esta ação pode ser revertida clicando no botão \"desfazer\" na barra de ferramentas flutuante." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Desfazer" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n msgid "Unverified" msgstr "Não verificado" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Atualizar um item existente" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "O usuário não possui um registro de 'segredos' associado. Por favor, relate este problema no GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nome de usuário" @@ -1618,7 +1609,7 @@ msgstr "Validar" msgid "Validated" msgstr "Validado" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Valor" @@ -1643,10 +1634,14 @@ msgstr "Versão 4" msgid "Views" msgstr "Visualizações" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Visível" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos enviar um link de redefinição de senha caso você esqueça sua senha." @@ -1656,7 +1651,7 @@ msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos en #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Site" msgid "What's new in the latest version" msgstr "O que há de novo na versão mais recente" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter." @@ -1680,11 +1675,11 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou msgid "You can also enter your username." msgstr "Você também pode inserir seu nome de usuário." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Você pode usar a API da OpenAI para ajudá-lo a gerar conteúdo ou melhorar sua redação ao redigir seu currículo." @@ -1692,7 +1687,7 @@ msgstr "Você pode usar a API da OpenAI para ajudá-lo a gerar conteúdo ou melh msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Você tem a opção de <0>obter sua própria chave de API na OpenAI. Essa chave permite que você use a API conforme achar adequado. Alternativamente, se desejar desativar completamente os recursos de IA no Reactive Resume, você pode simplesmente remover a chave de suas configurações." @@ -1709,7 +1704,7 @@ msgstr "Você recebeu um email!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Até outra hora!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Sua chave API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio de seu SDK oficial. Fique ciente de que sua chave não será transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Ampliar" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Afastar" + diff --git a/apps/client/src/locales/ro-RO/messages.po b/apps/client/src/locales/ro-RO/messages.po index 1bd10401..de819855 100644 --- a/apps/client/src/locales/ro-RO/messages.po +++ b/apps/client/src/locales/ro-RO/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ro\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -32,13 +32,13 @@ msgstr "{value, plural, one {Coloana} other {Coloane}}" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20 msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give." -msgstr "<0>Am construit Resume Reactiv mai ales de mine în timpul liber, cu mult ajutor din partea altor mari colaboratori open-source. /0><1>Dacă vă place aplicația și doriți să susțineți să o păstrați gratuit pentru totdeauna, vă rugăm să donați orice vă puteți permite, să oferiți." +msgstr "<0>Am construit Reactive Resume în mare parte de unul singur, în timpul meu liber, cu mult ajutor din partea altor mari colaboratori open-source. /0><1>Dacă vă place aplicația și doriți să susțineți să o păstrați gratuit pentru totdeauna, vă rugăm să donați orice vă puteți permite să oferiți." #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51 msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Sunt sigur că aplicația nu este perfectă, dar aș vrea să fie. /0><1>Dacă v-ați confruntat cu probleme în timp ce creați reluarea, sau aveți o idee care v-ar ajuta pe voi și pe alți utilizatori să vă creați mai ușor reluarea, plasează o problemă în depozit sau trimite-mi un e-mail despre ea. /1>" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Notă: Utilizând API-ul OpenAI, confirmaţi şi acceptaţi termenii de utilizare şi <2>politica de confidenţialitate subliniaţi de OpenAI. Vă rugăm să reţineţi că Resume Reactiv nu are nici o responsabilitate pentru utilizarea incorectă sau neautorizată a serviciului, şi orice repercusiuni sau pasive care decurg exclusiv din acestea sunt suportate de utilizator." @@ -98,12 +98,12 @@ msgstr "Acceptă doar fișiere {accept}" msgid "Account" msgstr "Cont" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Adăugarea unui câmp particularizat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Adaugă un element nou" @@ -146,7 +146,7 @@ msgstr "Oricine are linkul poate vizualiza și descărca CV-ul." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Oricine are acest link poate vizualiza și descărca CV-ul. Distribuiți-l pe profilul dvs. sau cu recrutorii." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Sunteţi sigur că doriţi să ștergeți acest element?" @@ -205,7 +205,7 @@ msgstr "Cod de rezervă" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Codurile de rezervă pot conține doar litere mici sau cifre și trebuie să aibă exact 10 caractere." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Construit cu" msgid "By the community, for the community." msgstr "Construit de comunitate, pentru comunitate." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Confirmare parolă nouă" msgid "Continue" msgstr "Continuă" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Copiază" @@ -318,7 +318,7 @@ msgstr "Copiază link-ul pentru a relua" msgid "Copy to Clipboard" msgstr "Copiază în clipboard" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Creează" @@ -328,7 +328,7 @@ msgstr "Creează" msgid "Create a new account" msgstr "Creează un cont nou" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Creați un element nou" @@ -385,9 +385,9 @@ msgstr "Dată" msgid "Date or Date Range" msgstr "Interval dată sau dată" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Descarcă PDF-ul" msgid "Downloads" msgstr "Descărcări" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplică" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplicați un element existent" @@ -478,7 +478,7 @@ msgstr "Duplicați un element existent" msgid "Duplicate an existing resume" msgstr "Duplicați un CV existent" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Editare" @@ -575,7 +575,7 @@ msgstr "Variante de font" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "De exemplu, informații cu privire la companiile cărora le-ați trimis acest CV sau link-urile către fișele posturilor pot fi notate aici." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Uită" @@ -658,8 +658,8 @@ msgstr "Aici, poți actualiza informațiile contului tău, cum ar fi imaginea de msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Aici, vă puteți actualiza profilul pentru a vă personaliza experiența." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Ascuns" @@ -690,7 +690,7 @@ msgstr "Găzduiește-ți CV-ul în mod public" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Mereu îmi place să aud de la utilizatorii Reactive Resume cu feedback sau suport. Iată câteva dintre mesajele pe care le-am primit. Dacă aveți feedback, nu ezitați să îmi trimiteți un e-mail la <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Iconiță" @@ -777,9 +777,7 @@ msgstr "Se pare că adresa dumneavoastră de e-mail a fost deja verificată." #: apps/client/src/pages/auth/register/page.tsx:101 msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." msgid "John Doe" -msgstr "" -"John Doe\n" -"" +msgstr "John Doe\n" #: apps/client/src/pages/auth/register/page.tsx:122 msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." @@ -795,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Cuvinte cheie" @@ -811,7 +809,7 @@ msgstr "Etichetă" msgid "Language" msgstr "Limbă" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Ultima actualizare {lastUpdated}" @@ -867,7 +865,7 @@ msgid "Location" msgstr "Locație" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -916,7 +914,7 @@ msgstr "Martie 2023 - Prezent" msgid "Margin" msgstr "Margine" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -924,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "Licență MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -936,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Nume" @@ -946,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Nume" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Rețea" @@ -971,10 +969,6 @@ msgstr "Notă: acest lucru va face contul dumneavoastră mai puțin sigur." msgid "Notes" msgstr "Notițe" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Parolă unică" @@ -986,7 +980,7 @@ msgstr "Parolă unică" msgid "Oops, the server returned an error." msgstr "Hopa, serverul a returnat o eroare." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -996,21 +990,24 @@ msgstr "Deschis" msgid "Open Source" msgstr "Sursă Publică" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI nu a returnat nicio alegere pentru textul dvs." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integrare OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1095,7 +1092,7 @@ msgstr "Poziție" msgid "Powered by" msgstr "Oferit de" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Oferit de <0>Icons-ul simplu" @@ -1169,7 +1166,7 @@ msgstr "Reactiv Resume prosperă datorită comunității sale dinamice. Acest pr msgid "Redo" msgstr "Reface" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Elimină" @@ -1179,7 +1176,7 @@ msgid "Remove Page" msgstr "Elimină pagina" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1224,18 +1221,18 @@ msgstr "Bogat în caracteristici, nu în prețuri." msgid "Rounded" msgstr "Rotunjit" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Salvează Modificările" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1451,14 +1448,6 @@ msgstr "Mărturii" msgid "Text Color" msgstr "Culoare text" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Nu arată ca o cheie API OpenAI validă." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Parolele introduse nu coincid." @@ -1477,7 +1466,7 @@ msgstr "Temă" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "A apărut o eroare la conectarea la browser. Asigurați-vă că „chrome” rulează și este accesibil." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Această acțiune poate fi anulată făcând clic pe butonul de anulare din bara de instrumente plutitoare." @@ -1559,7 +1548,7 @@ msgid "Undo" msgstr "Anulează" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1573,7 +1562,7 @@ msgstr "Deblocarea unui CV vă va permite să-i faceți din nou modificări." msgid "Unverified" msgstr "Neverificat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Actualizarea unui element existent" @@ -1603,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Utilizatorul nu are o înregistrare asociată 'secrete'. Vă rugăm să raportați această problemă pe GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Nume utilizator" @@ -1620,7 +1609,7 @@ msgstr "Validează" msgid "Validated" msgstr "Validat" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Valoare" @@ -1645,10 +1634,14 @@ msgstr "Versiunea 4" msgid "Views" msgstr "Vizualizări" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Vizibil" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem trimite un link de resetare a parolei în cazul în care uitați parola." @@ -1658,7 +1651,7 @@ msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1671,9 +1664,9 @@ msgstr "Website" msgid "What's new in the latest version" msgstr "Ce este nou în cea mai recentă versiune" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter." @@ -1682,11 +1675,11 @@ msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau msgid "You can also enter your username." msgstr "Poți, de asemenea, să introduci numele de utilizator." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Puteți folosi API-ul OpenAI pentru a vă ajuta să generați conținut sau să vă îmbunătățiți scrisul în timp ce vă compuneți CV-ul." @@ -1694,7 +1687,7 @@ msgstr "Puteți folosi API-ul OpenAI pentru a vă ajuta să generați conținut msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Puteți urmări numărul de vizualizări pe care le-a primit CV-ul dvs. sau câte persoane au descărcat CV-ul activând partajarea publică." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Aveți opțiunea de a vă obține propria cheie API OpenAI. Această cheie vă permite să utilizați API-ul după cum doriți. Alternativ, dacă doriţi să dezactivaţi caracteristicile AI în Reactiv Resume complet, puteţi pur şi simplu elimina cheia din setări." @@ -1711,7 +1704,7 @@ msgstr "Ai primit e-mail!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Contul și toate datele dvs. au fost șterse cu succes. La revedere!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "API-ul dvs. este stocat în siguranță în spațiul de stocare local al browser-ului și este utilizat numai atunci când faceți cereri către OpenAI prin intermediul SDK-ului lor oficial. Asigurați-vă că cheia dvs. nu este transmisă către niciun server extern cu excepția cazului în care interacționați cu serviciile OpenAI." @@ -1734,3 +1727,4 @@ msgstr "Mărire în" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Micșorare" + diff --git a/apps/client/src/locales/ru-RU/messages.po b/apps/client/src/locales/ru-RU/messages.po index 75dc2167..d2d5631e 100644 --- a/apps/client/src/locales/ru-RU/messages.po +++ b/apps/client/src/locales/ru-RU/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ru\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Russian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -38,7 +38,7 @@ msgstr "<0>Я создавал Reactive Resume в основном сам, в с msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Я уверен, что приложение не идеально, но мне бы хотелось, чтобы оно было. <1>Если вы столкнулись с какими-либо проблемами при создании своего резюме или у вас есть идея, которая поможет вам и другим пользователям упростить создание резюме, оставьте проблему в репозитории или отправьте мне эл. письмо об этом." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Примечание: Используя API OpenAI, вы подтверждаете и принимаете <1>условия использования. и <2>политику конфиденциальности изложенные OpenAI. Обратите внимание, что Reactive Resume не несет ответственности за любое ненадлежащее или несанкционированное использование услуги, и любые возникающие в результате последствия или ответственность возлагаются исключительно на пользователя." @@ -98,12 +98,12 @@ msgstr "Принимает только файлы {accept}" msgid "Account" msgstr "Аккаунт" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Добавьте настраиваемое поле" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Добавить новый элемент" @@ -146,7 +146,7 @@ msgstr "Любой человек, получивший ссылку, может msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Любой человек, имеющий эту ссылку, может просмотреть и скачать резюме. Поделитесь им в своем профиле или с рекрутерами." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Вы уверены, что хотите удалить этот элемент?" @@ -205,9 +205,9 @@ msgstr "Резервный код" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Резервные коды могут содержать только строчные буквы или цифры и должны состоять ровно из 10 символов." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Базовый URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Сделано при помощи" msgid "By the community, for the community." msgstr "Продукт сообщества для сообщества." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Подтвердить новый пароль" msgid "Continue" msgstr "Продолжить" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Скопировать" @@ -318,7 +318,7 @@ msgstr "Скопировать ссылку на резюме" msgid "Copy to Clipboard" msgstr "Скопировать в буфер" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Создать" @@ -328,7 +328,7 @@ msgstr "Создать" msgid "Create a new account" msgstr "Создать новый аккаунт" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Создать новый элемент" @@ -385,9 +385,9 @@ msgstr "Дата" msgid "Date or Date Range" msgstr "Дата или Диапазон Дат" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Скачать PDF" msgid "Downloads" msgstr "Загрузки" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Дублировать" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Дублировать существующий элемент" @@ -478,7 +478,7 @@ msgstr "Дублировать существующий элемент" msgid "Duplicate an existing resume" msgstr "Дублировать существующее резюме" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Изменить" @@ -508,7 +508,7 @@ msgstr "Введите один из 10 резервных кодов, кото #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Введите иконку Phosphor" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -575,7 +575,7 @@ msgstr "Вариант шрифта" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Например, здесь можно записать информацию о том, в какие компании вы отправили это резюме, или ссылки на описания вакансий." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Удалить" @@ -658,8 +658,8 @@ msgstr "Здесь вы можете обновить информацию о с msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Здесь вы можете обновить свой профиль, чтобы настроить и персонализировать свой опыт." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Скрытый" @@ -690,7 +690,7 @@ msgstr "Размещение резюме в открытом доступе" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Мне всегда нравится получать отзывы и поддержку от пользователей Reactive Resume. Вот некоторые из полученных мною сообщений. Если вы хотите оставить отзыв, не стесняйтесь написать мне по адресу <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Иконка" @@ -793,9 +793,9 @@ msgstr "ivan.ivanovich@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Ключевые слова" @@ -809,7 +809,7 @@ msgstr "Заголовок" msgid "Language" msgstr "Язык" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Последнее обновление {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Местоположение" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "Март 2023 - настоящее время" msgid "Margin" msgstr "Отступ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Максимум токенов" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Лицензия MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Модель" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Имя" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Имя" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Сеть" @@ -969,10 +969,6 @@ msgstr "Примечание: Это сделает вашу учетную за msgid "Notes" msgstr "Заметки" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Одноразовый пароль" @@ -984,7 +980,7 @@ msgstr "Одноразовый пароль" msgid "Oops, the server returned an error." msgstr "Упс, сервер выдал ошибку." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Открыть" msgid "Open Source" msgstr "Открытый исходный код" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI не вернул никаких вариантов для вашего текста." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Интеграция OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Позиция" msgid "Powered by" msgstr "Разработан с помощью" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Разработано с помощью <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume процветает благодаря своему а msgid "Redo" msgstr "Повторить" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Удалить" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Удалить страницу" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Богатый функционал, а не цена." msgid "Rounded" msgstr "Скруглённая" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Сохранить изменения" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Сохранить локально" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Сохранено" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1284,7 +1283,7 @@ msgstr "Отправить мне сообщение" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "Раздельные ссылки" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1351,7 +1350,7 @@ msgstr "Зарегистрироваться" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "Вход по электронной почте в настоящее время отключён администратором." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "Отзывы" msgid "Text Color" msgstr "Цвет текста" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Это не похоже на действительный ключ API OpenAI." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Введенные вами пароли не совпадают." @@ -1475,7 +1466,7 @@ msgstr "Тема" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Произошла ошибка при подключении к браузеру. Пожалуйста, убедитесь, что 'chrome' запущен и доступен." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Это действие можно отменить, нажав на кнопку \"Отменить\" на плавающей панели инструментов." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Отменить" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Разблокировка резюме позволит вам снов msgid "Unverified" msgstr "Не подтверждена" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Обновить существующий элемент" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "У пользователя нет связанной с ним записи 'secrets'. Пожалуйста, сообщите об этой проблеме на GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Имя пользователя" @@ -1618,7 +1609,7 @@ msgstr "Проверить" msgid "Validated" msgstr "Проверено" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Значение" @@ -1643,10 +1634,14 @@ msgstr "Версия 4" msgid "Views" msgstr "Просмотры" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Видимый" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Мы подтверждаем ваш адрес эл. почты, только чтобы убедиться, что мы можем отправить ссылку для сброса пароля, если вы его забудете." @@ -1656,7 +1651,7 @@ msgstr "Мы подтверждаем ваш адрес эл. почты, тол #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Сайт" msgid "What's new in the latest version" msgstr "Что нового в последней версии" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Вы можете добавить несколько ключевых слов, разделив их запятой или нажав Enter." @@ -1680,11 +1675,11 @@ msgstr "Вы можете добавить несколько ключевых msgid "You can also enter your username." msgstr "Вы также можете ввести свое имя пользователя." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Вы можете использовать API OpenAI, чтобы сгенерировать контент или улучшить текст при составлении резюме." @@ -1692,7 +1687,7 @@ msgstr "Вы можете использовать API OpenAI, чтобы сге msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Вы можете отслеживать количество просмотров вашего резюме и количество людей, скачавших его, включив общий доступ." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "У вас есть возможность <0>получить свой собственный ключ API OpenAI. Этот ключ позволит использовать API по своему усмотрению. В качестве альтернативы, если вы хотите полностью отключить AI функции в Reactive Resume, вы можете просто удалить ключ из своих настроек." @@ -1709,7 +1704,7 @@ msgstr "Вы получили письмо!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Учетная запись и все ваши данные были успешно удалены. До свидания!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Ваш ключ API надежно хранится в локальном хранилище браузера и используется только при запросах к OpenAI через их официальный SDK. Будьте уверены, в том, что ключ не передается ни на какой внешний сервер, за исключением случаев взаимодействия с сервисами OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Увеличить" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Уменьшить" + diff --git a/apps/client/src/locales/sq-AL/messages.po b/apps/client/src/locales/sq-AL/messages.po index 921cdca7..9934ee03 100644 --- a/apps/client/src/locales/sq-AL/messages.po +++ b/apps/client/src/locales/sq-AL/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sq\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Albanian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "Prano vetëm skedarët {accept}" msgid "Account" msgstr "Llogaria" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Shto një fushë të personalizuar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Shto një vlerë të re" @@ -146,11 +146,7 @@ msgstr "Çdokush që ka linkun mund të shikojë dhe shkarkojë CV-në." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Çdokush që ka këtë link mund ta shikojë dhe shkarkojë CV-në. Shprëndani atë në profilin tuaj ose me rekrutuesit." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "API Key" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Jeni i sigurt se dëshironi të fshini këtë vlerë?" @@ -209,6 +205,10 @@ msgstr "Kodi rezervë" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Kodet rezervë mund të përmbajnë vetëm shkronja të vogla ose numra dhe duhet të kenë saktësisht 10 karaktere." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 +msgid "Base URL" +msgstr "" + #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." msgid "Basics" @@ -235,7 +235,7 @@ msgstr "E ndërtuar me" msgid "By the community, for the community." msgstr "Nga komuniteti, për komunitetin." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Konfirmo fjalëkalimin e ri" msgid "Continue" msgstr "Vazhdo" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopjo" @@ -318,7 +318,7 @@ msgstr "Kopjo linkun e CV-së" msgid "Copy to Clipboard" msgstr "Kopjo në Clipboard" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Krijo" @@ -328,7 +328,7 @@ msgstr "Krijo" msgid "Create a new account" msgstr "Krijo një llogari të re" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Krijo një vlerë të re" @@ -385,9 +385,9 @@ msgstr "Data" msgid "Date or Date Range" msgstr "Data ose intervali" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Shkarko PDF" msgid "Downloads" msgstr "Shkarkimet" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Dyfisho" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Dupliko një vlerë ekzistuese" @@ -478,7 +478,7 @@ msgstr "Dupliko një vlerë ekzistuese" msgid "Duplicate an existing resume" msgstr "Dyfisho një CV ekzistuese" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Përpuno" @@ -575,7 +575,7 @@ msgstr "Varianti i germave" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Harro" @@ -658,8 +658,8 @@ msgstr "Këtu mund të përditësoni informacionin e llogarisë suaj, si fotogra msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Këtu mund të përditësoni profilin tuaj për të personalizuar përvojën tuaj." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "E fshehur" @@ -690,7 +690,7 @@ msgstr "Bëjeni CV-në tuaj publike" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikona" @@ -793,9 +793,9 @@ msgstr "filan.fisteku@shembull.al" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Fjalët kyçe" @@ -809,7 +809,7 @@ msgstr "Etiketa" msgid "Language" msgstr "Gjuha" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Përditësuar së fundmi me {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Vendndodhja" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,10 +914,18 @@ msgstr "Mars 2023 - tani" msgid "Margin" msgstr "Largësia e kufinjëve" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 +msgid "Max Tokens" +msgstr "" + #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Licenca MIT" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 +msgid "Model" +msgstr "" + #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48 @@ -926,7 +934,7 @@ msgstr "Licenca MIT" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Emri" @@ -936,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Emri" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Rrjeti" @@ -972,7 +980,7 @@ msgstr "Fjalkalim njëpërdorimësh" msgid "Oops, the server returned an error." msgstr "Serveri hasi në një problem." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -982,17 +990,24 @@ msgstr "Hap" msgid "Open Source" msgstr "Open Source" -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI nuk gjeti asnjë zgjedhje për tekstin tuaj." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Integrimi me OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1077,7 +1092,7 @@ msgstr "Pozicioni" msgid "Powered by" msgstr "Mundësuar nga" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Mundësuar nga <0>Simple Icons" @@ -1151,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "Ribëj" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Fshi" @@ -1161,7 +1176,7 @@ msgid "Remove Page" msgstr "Fshi faqen" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1206,13 +1221,21 @@ msgstr "I pasura në veçori, jo në çmim." msgid "Rounded" msgstr "E rrumbullakësuar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Ruaj ndryshimet" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Save Locally" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Saved" +msgstr "" + #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." msgstr "Skanoni kodin e mëposhtëm QR me aplikacionin tuaj authenticator për të konfiguruar vërtetimin me dy faktorë në llogarinë tuaj." @@ -1376,18 +1399,10 @@ msgstr "Statistikat" msgid "Statistics are available only for public resumes." msgstr "Statistikat janë të disponueshme vetëm për CV-të publike." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "Ruani në kompjuterin tuaj" - #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:162 msgid "Store your backup codes securely" msgstr "Ruani kodet rezervë në mënyrë të sigurt" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "U ruajt" - #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:128 @@ -1433,10 +1448,6 @@ msgstr "Dëshmitë" msgid "Text Color" msgstr "Ngjyra e tekstit" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Kodi i OpenAI API nuk është valid." - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Fjalëkalimet nuk përputhen." @@ -1455,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Diçka dështoi gjatë lidhjes me shfletuesin. Sigurohu që \"chrome\" po funksionon dhe është i arritshëm." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1537,7 +1548,7 @@ msgid "Undo" msgstr "Zhbëj" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1551,7 +1562,7 @@ msgstr "Shkyçja e një CV-je ju lejon të bëni ndryshime në të përsëri." msgid "Unverified" msgstr "I paverifikuar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Përditëso një vlerë ekzistuese" @@ -1581,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Emri i përdoruesit" @@ -1598,7 +1609,7 @@ msgstr "Valido" msgid "Validated" msgstr "U validua" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Vlera" @@ -1623,10 +1634,14 @@ msgstr "Versioni 4" msgid "Views" msgstr "Shikime" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "E dukshme" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Ne e verifikojmë adresën tuaj të emailit vetëm për t'u siguruar që mund t'ju dërgojmë linkun për rivendosje të fjalëkalimit në rast se harroni fjalëkalimin tuaj." @@ -1636,7 +1651,7 @@ msgstr "Ne e verifikojmë adresën tuaj të emailit vetëm për t'u siguruar që #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1649,9 +1664,9 @@ msgstr "Faqja e internetit" msgid "What's new in the latest version" msgstr "Çfarë ka të re në versionin e fundit" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur enter." @@ -1660,7 +1675,11 @@ msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur en msgid "You can also enter your username." msgstr "Ju gjithashtu mund të jepni emrin tuaj të përdoruesit." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Ju mund të përdorni OpenAI API për t'ju ndihmuar të krijoni përmbajtje ose ta përmirësoni shkrimin tuaj gjatë hartimit të CV-së tuaj." @@ -1668,7 +1687,7 @@ msgstr "Ju mund të përdorni OpenAI API për t'ju ndihmuar të krijoni përmbaj msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Ju mund të gjurmoni numrin e shikimeve dhe shkarkimeve që ka marrë CV-ja juaj duke e shpërndarë atë me publikun." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1685,7 +1704,7 @@ msgstr "Keni mesazhe të palexuara!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Llogaria juaj dhe të gjitha të dhënat tuaja janë fshirë me sukses." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" diff --git a/apps/client/src/locales/sr-SP/messages.po b/apps/client/src/locales/sr-SP/messages.po index b26f3d7c..d7698f27 100644 --- a/apps/client/src/locales/sr-SP/messages.po +++ b/apps/client/src/locales/sr-SP/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Serbian (Cyrillic)\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "Од заједнице, за заједницу." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "Копирај у клипборд" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Направи" @@ -328,7 +328,7 @@ msgstr "Направи" msgid "Create a new account" msgstr "Креирајте нови налог" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Креирајте нову ставку" @@ -385,9 +385,9 @@ msgstr "Датум" msgid "Date or Date Range" msgstr "Датум или опсег датума" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Преузми PDF" msgid "Downloads" msgstr "Преузимања" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Дупликат" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Дуплирај постојећу ставку" @@ -478,7 +478,7 @@ msgstr "Дуплирај постојећу ставку" msgid "Duplicate an existing resume" msgstr "Дуплирај постојећи резиме" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Измени" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "Овде можете ажурирати информације о св msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Овде можете ажурирати свој профил да бисте прилагодили и персонализовали своје корисничко искуство." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Сакривено" @@ -690,7 +690,7 @@ msgstr "Хостујте свој резиме јавно" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Иконица" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/sv-SE/messages.po b/apps/client/src/locales/sv-SE/messages.po index bd85c436..a90f153f 100644 --- a/apps/client/src/locales/sv-SE/messages.po +++ b/apps/client/src/locales/sv-SE/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sv\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0>Jag byggde Reactive Resume mestadels själv på min fritid, med mycke msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Jag är säker på att appen inte är perfekt, men jag vill att den ska vara det. <1>Om du stötte på några problem när du skapade ditt CV, eller har en idé som skulle hjälpa dig och andra användare att skapa ditt CV enklare, släpp ett problem på repo:t eller skicka ett e-postmeddelande till mig om det." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Obs! Genom att använda OpenAI API:et, godkänner och accepterar du <1>användarvillkoren och <2>integritetspolicyn som beskrivs av OpenAI. Observera att Reactive Resume inte bär något ansvar för felaktigt eller obehörigt utnyttjande av tjänsten, och eventuella återverkningar eller ansvar vilar enbart på användaren." @@ -98,12 +98,12 @@ msgstr "Accepterar endast {accept} filer" msgid "Account" msgstr "Konto" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Lägga till ett anpassat fält" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Lägg till ett nytt objekt" @@ -146,7 +146,7 @@ msgstr "Alla som har länken kan se och ladda ner CV:t." msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Alla som har den här länken kan se och ladda ner CV:t. Dela det på din profil eller med rekryterare." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Är du säker på att du vill ta bort detta objekt?" @@ -205,9 +205,9 @@ msgstr "Reservkod" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Säkerhetskopieringskoder får endast innehålla små bokstäver eller siffror och måste bestå av exakt 10 tecken." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Bas-URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Byggt med" msgid "By the community, for the community." msgstr "Av gemenskapen, för gemenskapen." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Bekräfta nytt lösenord" msgid "Continue" msgstr "Fortsätt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopiera" @@ -318,7 +318,7 @@ msgstr "Kopiera länken till CV:t" msgid "Copy to Clipboard" msgstr "Kopiera till urklipp" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Skapa" @@ -328,7 +328,7 @@ msgstr "Skapa" msgid "Create a new account" msgstr "Skapa ett nytt konto" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Skapa ett nytt objekt" @@ -385,9 +385,9 @@ msgstr "Datum" msgid "Date or Date Range" msgstr "Datum eller datumintervall" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Ladda ner PDF" msgid "Downloads" msgstr "Nedladdningar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Duplicera" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Duplicera ett befintligt objekt" @@ -478,7 +478,7 @@ msgstr "Duplicera ett befintligt objekt" msgid "Duplicate an existing resume" msgstr "Duplicera ett befintligt CV" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Redigera" @@ -575,7 +575,7 @@ msgstr "Typsnittsvarianter" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Exempelvis kan information om vilka företag du skickat detta CV till eller länkarna till jobbeskrivningarna noteras här." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Glöm" @@ -658,8 +658,8 @@ msgstr "Här kan du uppdatera din kontoinformation såsom din profilbild, namn o msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Här kan du uppdatera din profil för att anpassa och personifiera din upplevelse." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Dolt" @@ -690,7 +690,7 @@ msgstr "Gör ditt CV offentligt tillgängligt" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Jag älskar alltid att höra från användarna av Reactive Resume med feedback eller stöd. Här är några av meddelandena jag har fått. Om du har feedback får du gärna skicka ett mejl till mig på <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Ikon" @@ -793,9 +793,9 @@ msgstr "sven.svensson@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Nyckelord" @@ -809,7 +809,7 @@ msgstr "Etikett" msgid "Language" msgstr "Språk" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Senast uppdaterad {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Plats" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "mars 2023 - nutid" msgid "Margin" msgstr "Marginal" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Högsta antal tokens" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "MIT-licens" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Modell" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Namn" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Namn" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Nätverk" @@ -969,10 +969,6 @@ msgstr "Obs! Detta kommer att göra ditt konto mindre säkert." msgid "Notes" msgstr "Anteckningar" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Engångslösenord" @@ -984,7 +980,7 @@ msgstr "Engångslösenord" msgid "Oops, the server returned an error." msgstr "Hoppsan, servern returnerade ett fel." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Öppna" msgid "Open Source" msgstr "Öppen källkod" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI returnerade inga val för din text." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI-integration" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Position" msgid "Powered by" msgstr "Drivs av" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Drivs av <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume trivs tack vare sin livfulla gemenskap. Projektet har m msgid "Redo" msgstr "Gör om" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Ta bort" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Ta bort sida" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Rik på funktioner, inte på priser." msgid "Rounded" msgstr "Avrundad" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Spara ändringar" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Spara lokalt" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Sparad" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1449,14 +1448,6 @@ msgstr "Vittnesmål" msgid "Text Color" msgstr "Textfärg" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Det ser inte ut som en giltig OpenAI API-nyckel." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Lösenorden du angav stämmer inte överens." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Det gick inte att ansluta till webbläsaren. Se till att \"chrome\" körs och kan nås." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Denna åtgärd kan återställas genom att klicka på ångra-knappen i det flytande verktygsfältet." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Ångra" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Genom att låsa upp ett CV kan du göra ändringar i det igen." msgid "Unverified" msgstr "Ej verifierat" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Uppdatera ett befintligt objekt" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Användaren har inte en associerad 'secrets'-post. Vänligen rapportera det här problemet på GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Användarnamn" @@ -1618,7 +1609,7 @@ msgstr "Validera" msgid "Validated" msgstr "Validerad" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Värde" @@ -1643,10 +1634,14 @@ msgstr "Version 4" msgid "Views" msgstr "Visningar" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Synlig" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Vi verifierar din e-postadress endast för att säkerställa att vi kan skicka dig en länk för återställning av lösenord om du glömmer ditt lösenord." @@ -1656,7 +1651,7 @@ msgstr "Vi verifierar din e-postadress endast för att säkerställa att vi kan #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Webbplats" msgid "What's new in the latest version" msgstr "Vad är nytt i den senaste versionen" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter." @@ -1680,11 +1675,11 @@ msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommat msgid "You can also enter your username." msgstr "Du kan också ange ditt användarnamn." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Du kan använda OpenAI API:et för att hjälpa dig att skapa innehåll eller förbättra ditt skrivande medan du skriver ditt CV." @@ -1692,7 +1687,7 @@ msgstr "Du kan använda OpenAI API:et för att hjälpa dig att skapa innehåll e msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Du kan spåra antalet visningar ditt CV har fått, eller hur många personer som har laddat ner CV:t genom att aktivera offentlig delning." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Du har möjlighet att <0>skaffa din egen OpenAI API-nyckel. Den här nyckeln ger dig möjlighet att utnyttja API:et som du vill. Alternativt, om du vill inaktivera AI-funktionerna i Reactive Resume helt och hållet, kan du helt enkelt ta bort nyckeln från dina inställningar." @@ -1709,7 +1704,7 @@ msgstr "Du har fått mail!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Ditt konto och alla dina uppgifter har tagits bort. Hej då!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Din API-nyckel lagras säkert i webbläsarens lokala lagring och används endast när du gör förfrågningar till OpenAI via deras officiella SDK. Du kan vara säker på att din nyckel inte överförs till någon extern server förutom när du interagerar med OpenAI:s tjänster." @@ -1732,3 +1727,4 @@ msgstr "Zooma in" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Zooma ut" + diff --git a/apps/client/src/locales/ta-IN/messages.po b/apps/client/src/locales/ta-IN/messages.po index 27d0bb3b..c91c5592 100644 --- a/apps/client/src/locales/ta-IN/messages.po +++ b/apps/client/src/locales/ta-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ta\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Tamil\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/te-IN/messages.po b/apps/client/src/locales/te-IN/messages.po index a63f3f60..a43e0bab 100644 --- a/apps/client/src/locales/te-IN/messages.po +++ b/apps/client/src/locales/te-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: te\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Telugu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "" msgid "Account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "By the community, for the community." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "" @@ -328,7 +328,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "" @@ -385,9 +385,9 @@ msgstr "" msgid "Date or Date Range" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "" msgid "Downloads" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -575,7 +575,7 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" @@ -658,8 +658,8 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -793,9 +793,9 @@ msgstr "" msgid "JSON" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "" @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "" msgid "Margin" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -969,10 +969,6 @@ msgstr "" msgid "Notes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "" @@ -984,7 +980,7 @@ msgstr "" msgid "Oops, the server returned an error." msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "" msgid "Open Source" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1167,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1475,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1618,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1643,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1656,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1680,11 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1692,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1709,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" @@ -1732,3 +1727,4 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "" + diff --git a/apps/client/src/locales/th-TH/messages.po b/apps/client/src/locales/th-TH/messages.po index 6a1027d7..0e8924dd 100644 --- a/apps/client/src/locales/th-TH/messages.po +++ b/apps/client/src/locales/th-TH/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: th\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -20,7 +20,7 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "คุณได้เปิดการยืนยันตัวตนแบบสองขั้นตอนสำเร็จแล้ว" +msgstr "เปิดใช้งานการยืนยันตัวตนแบบสองปัจจัย (2FA) สำเร็จ" #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" @@ -38,7 +38,7 @@ msgstr "<0>ผมสร้าง Reactive Resume ด้วยตัวเอง msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>ผมมั่นใจว่าแอปยังไม่สมบูรณ์ดี แต่ผมก็อยากให้มันเป็นอย่างนั้น<1>ถ้าคุณเจอปัญหาใดๆ ระหว่างที่สร้างเรซูเม่ หรือมีไอเดียดีๆ ที่จะช่วยให้คุณและคนอื่นๆ สร้างเรซูเม่ได้ง่ายขึ้น ให้เปิด issue มาที่ repository ของแอปหรือส่งอีเมลหาผมได้เลยครับ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>หมายเหตุ: การใช้ OpenAI API หมายความว่า คุณรับรู้และยอมรับ<1>ข้อกำหนดการใช้บริการและ<2>นโยบายความเป็นส่วนตัวของ OpenAI โปรดทราบว่า Reactive Resume ไม่รับผิดชอบการใช้บริการที่ไม่เหมาะสมหรือไม่ได้รับการอนุญาต และความรับผิดชอบเป็นของผู้ใช้แต่เพียงผู้เดียว" @@ -98,12 +98,12 @@ msgstr "ยอมรับเฉพาะไฟล์ {accept}" msgid "Account" msgstr "บัญชี" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "เพิ่มช่องข้อมูลที่กำหนดเอง" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "เพิ่มรายการใหม่" @@ -146,7 +146,7 @@ msgstr "ทุกคนที่มีลิงก์สามารถดูแ msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "ทุกคนที่มีลิงค์นี้สามารถดูและดาวน์โหลดเรซูเม่ได้ แชร์ไปยังโปรไฟล์ของคุณหรือฝ่ายสรรหาบุคลากรได้" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบรายการนี้?" @@ -205,9 +205,9 @@ msgstr "รหัสสำรอง" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "รหัสสำรองอาจมีเฉพาะตัวอักษรพิมพ์เล็กหรือตัวเลขเท่านั้น และต้องมีจำนวนอักษร 10 ตัวเท่านั้น" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Base URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "สร้างด้วย" msgid "By the community, for the community." msgstr "โดยชุมชน เพื่อชุมชน" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "ยืนยันรหัสผ่านใหม่" msgid "Continue" msgstr "ทำต่อ" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "คัดลอก" @@ -318,7 +318,7 @@ msgstr "คัดลอกลิงก์ไปยังเรซูเม่" msgid "Copy to Clipboard" msgstr "คัดลอกไปยังคลิปบอร์ด" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "สร้าง" @@ -328,7 +328,7 @@ msgstr "สร้าง" msgid "Create a new account" msgstr "สร้างบัญชีใหม่" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "สร้างรายการใหม่" @@ -385,9 +385,9 @@ msgstr "วันที่" msgid "Date or Date Range" msgstr "วันที่หรือช่วงวันที่" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "ดาวน์โหลด PDF" msgid "Downloads" msgstr "ยอดดาวน์โหลด" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "คัดลอก" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "คัดลอกรายการที่มีอยู่" @@ -478,7 +478,7 @@ msgstr "คัดลอกรายการที่มีอยู่" msgid "Duplicate an existing resume" msgstr "คัดลอกเรซูเม่ที่มีอยู่" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "แก้ไข" @@ -575,7 +575,7 @@ msgstr "รูปแบบฟอนต์" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "ตัวอย่างเช่น ข้อมูลเกี่ยวกับบริษัทที่คุณส่งเรซูเม่นี้ให้หรือลิงก์ไปยังรายละเอียดงานสามารถเขียนไว้ได้ที่นี่" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "ลืม" @@ -658,8 +658,8 @@ msgstr "คุณสามารถอัปเดทข้อมูลบัญ msgid "Here, you can update your profile to customize and personalize your experience." msgstr "คุณสามารถอัปเดตโปรไฟล์เพื่อปรับแต่งประสบการณ์ของคุณได้ที่นี่" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "ซ่อนไว้" @@ -690,7 +690,7 @@ msgstr "โฮสต์เรซูเม่ของคุณสู่สาธ msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "ผมชอบได้ยินได้ฟังความคิดเห็นหรือคำสนับสนุนจากผู้ใช้ Reactive Resume อยู่เสมอ นี่คือข้อความบางส่วนที่ผมได้รับ หากคุณมีความคิดเห็นใดๆ โปรดติดต่อผมทางอีเมลที่ <0>{email}" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "ไอคอน" @@ -793,9 +793,9 @@ msgstr "somchai.niranam@example.th" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "คีย์เวิร์ด" @@ -809,7 +809,7 @@ msgstr "ชื่อกำกับ" msgid "Language" msgstr "ภาษา" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "อัปเดตล่าสุด {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "สถานที่" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "มีนาคม 2566 - ปัจจุบัน" msgid "Margin" msgstr "ระยะขอบ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Max Tokens" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "ใบอนุญาต MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "โมเดล" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "ชื่อ" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "ชื่อ" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "ชื่อเว็บไซต์" @@ -969,10 +969,6 @@ msgstr "หมายเหตุ: บัญชีของคุณจะปล msgid "Notes" msgstr "โน้ต" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "รหัสผ่านครั้งเดียว" @@ -984,7 +980,7 @@ msgstr "รหัสผ่านครั้งเดียว" msgid "Oops, the server returned an error." msgstr "อุ๊ปส์ เซิร์ฟเวอร์ส่งข้อผิดพลาดมา" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "เปิด" msgid "Open Source" msgstr "โอเพนซอร์ส" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI ไม่ได้ส่งตัวเลือกใดๆ ให้กับข้อความของคุณ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "การใช้ระบบ OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "ตำแหน่ง" msgid "Powered by" msgstr "ขับเคลื่อนโดย" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "ขับเคลื่อนโดย <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume ประสบความสำเร็จได้ msgid "Redo" msgstr "ทำใหม่" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "ลบออก" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "ลบหน้า" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "รวยฟีเจอร์ ไม่ใช่รวยราคา" msgid "Rounded" msgstr "โค้งมน" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "บันทึกการเปลี่ยนแปลง" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "บันทึกในเบราว์เซอร์" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "บันทึกสำเร็จ" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1449,14 +1448,6 @@ msgstr "คำรับรอง" msgid "Text Color" msgstr "สีตัวอักษร" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "ดูเหมือนว่านั่นจะไม่ใช่คีย์ API ของ OpenAI ที่ถูกต้อง" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "คุณกรอกรหัสผ่านไม่ตรงกัน" @@ -1475,7 +1466,7 @@ msgstr "ธีม" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "มีข้อผิดพลาดในการเชื่อมต่อกับเบราว์เซอร์ โปรดตรวจสอบว่า 'chrome' กำลังทำงานอยู่และเข้าถึงได้" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "ขั้นตอนนี้สามารถย้อนกลับได้โดยการคลิกปุ่มเลิกทำในแถบเครื่องมือลอย" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "เลิกทำ" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "การปลดล็อคเรซูเม่จะช่วยใ msgid "Unverified" msgstr "ยังไม่ยืนยัน" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "อัปเดตรายการที่มีอยู่" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "ผู้ใช้ไม่มีข้อมูล 'secrets' ที่เกี่ยวข้อง กรุณารายงานปัญหานี้บน GitHub" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "ชื่อผู้ใช้" @@ -1618,7 +1609,7 @@ msgstr "ตรวจสอบ" msgid "Validated" msgstr "ตรวจสอบแล้ว" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "ค่า" @@ -1643,10 +1634,14 @@ msgstr "เวอร์ชั่น 4" msgid "Views" msgstr "ยอดดู" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "มองเห็นได้" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "เราตรวจสอบที่อยู่อีเมลของคุณเพื่อให้แน่ใจว่าเราสามารถส่งลิงก์รีเซ็ตรหัสผ่านให้คุณได้ในกรณีที่คุณลืมรหัสผ่าน" @@ -1656,7 +1651,7 @@ msgstr "เราตรวจสอบที่อยู่อีเมลขอ #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "เว็บไซต์" msgid "What's new in the latest version" msgstr "มีอะไรใหม่ในเวอร์ชั่นล่าสุด" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "คุณสามารถเพิ่มคีย์เวิร์ดได้หลายคำโดยคั่นด้วยเครื่องหมายจุลภาคหรือกด Enter" @@ -1680,11 +1675,11 @@ msgstr "คุณสามารถเพิ่มคีย์เวิร์ด msgid "You can also enter your username." msgstr "คุณสามารถป้อนชื่อผู้ใช้ของคุณได้ด้วย" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "คุณสามารถใช้ OpenAI API เพื่อช่วยคุณสร้างเนื้อหาหรือปรับปรุงการเขียนของคุณขณะที่เขียนเรซูเม่ได้" @@ -1692,7 +1687,7 @@ msgstr "คุณสามารถใช้ OpenAI API เพื่อช่ว msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "คุณสามารถติดตามยอดดูเรซูเม่ของคุณได้ หรือดูว่ามีคนดาวน์โหลดเรซูเม่ที่เปิดเป็นสาธารณะไว้กี่คน" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "คุณมีตัวเลือกในการ<0>ขอคีย์ OpenAI API ของคุณเอง คีย์นี้ช่วยให้คุณใช้ประโยชน์จาก API ได้ตามที่คุณต้องการ กลับกัน หากคุณต้องการปิดการใช้งานคุณสมบัติ AI ใน Reactive Resume โดยสิ้นเชิง คุณแค่ลบคีย์ออกจากการตั้งค่าของคุณได้เลย" @@ -1709,7 +1704,7 @@ msgstr "เมลเข้าแล้ว!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "บัญชีของคุณและข้อมูลทั้งหมดของคุณถูกลบเรียบร้อยแล้ว ลาก่อนนะ!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "คีย์ API ของคุณถูกจัดเก็บไว้อย่างปลอดภัยในพื้นที่จัดเก็บภายในเบราว์เซอร์ และจะเรียกใช้เมื่อมีการส่งคำขอไปยัง OpenAI ผ่านทาง SDK ทางการเท่านั้น ขอให้มั่นใจได้ว่าคีย์ของคุณจะไม่ถูกส่งไปยังเซิร์ฟเวอร์ภายนอกใดๆ ยกเว้นเมื่อมีการโต้ตอบกับบริการของ OpenAI" @@ -1732,3 +1727,4 @@ msgstr "ซูมเข้า" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "ซูมออก" + diff --git a/apps/client/src/locales/tr-TR/messages.po b/apps/client/src/locales/tr-TR/messages.po index 8392d805..fdc96893 100644 --- a/apps/client/src/locales/tr-TR/messages.po +++ b/apps/client/src/locales/tr-TR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: tr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,7 +38,7 @@ msgstr "<0> Reactive Resume'u boş zamanlarımda çoğunlukla kendi başıma ve msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Uygulamanın kusursuz olmadığının farkındayım, fakat daha da iyi olmasını istiyorum.<1>Eğer Cv'nizi oluştururken bir hata ile karşılaşırsanız veya size ve diğer kullanıcılara kolaylık sağlayacak bir fikriniz varsa, projenin repository'sine bir issue bırakın veya bununla ilgili bana bir e-posta gönderin." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Not: OpenAI API'sını kullanarak, OpenAI tarafından belirlenen <1>kullanım şartlarını ve <2>gizlilik politikasını onaylamış ve kabul etmiş olursunuz. Lütfen Reactive Resume'un hizmetinin yanlış veya izinsiz kullanımından kaynaklanan herhangi bir sorumluluğu üstlenmediğini ve ortaya çıkabilecek sonuçların veya yükümlülüklerin tamamen kullanıcıya ait olduğunu unutmayın." @@ -98,12 +98,12 @@ msgstr "Yalnızca {accept} dosyalarını kabul eder" msgid "Account" msgstr "Hesap" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Özel alan ekle" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Yeni bir Öğe Ekle" @@ -146,7 +146,7 @@ msgstr "Bağlantıya sahip olan herkes özgeçmişi görüntüleyebilir ve indir msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Bu bağlantıya sahip herkes özgeçmişi görüntüleyebilir ve indirebilir. Profilinizde veya işe alım uzmanlarıyla paylaşın." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Bu öğeyi silmek istediğinizden emin misiniz?" @@ -205,9 +205,9 @@ msgstr "Yedekleme kodu" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Yedekleme kodları yalnızca küçük harf veya rakamlar içerebilir ve tam olarak 10 karakterden oluşmalıdır." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Temel URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "İle oluşturuldu" msgid "By the community, for the community." msgstr "Topluluk tarafından topluluk için oluşturuldu." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Yeni parolayı doğrulayın" msgid "Continue" msgstr "Devam et" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Kopyala" @@ -318,7 +318,7 @@ msgstr "Bağlantıyı Özgeçmişe Kopyala" msgid "Copy to Clipboard" msgstr "Panoya Kopyala" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Oluştur" @@ -328,7 +328,7 @@ msgstr "Oluştur" msgid "Create a new account" msgstr "Yeni bir hesap oluştur" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Yeni bir öğe oluştur" @@ -385,9 +385,9 @@ msgstr "Tarih" msgid "Date or Date Range" msgstr "Tarih veya Tarih Aralığı" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "PDF indir" msgid "Downloads" msgstr "İndirmeler" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Çoğalt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Mevcut bir öğeyi çoğalt" @@ -478,7 +478,7 @@ msgstr "Mevcut bir öğeyi çoğalt" msgid "Duplicate an existing resume" msgstr "Mevcut bir özgeçmişi çoğalt" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Düzenle" @@ -508,7 +508,7 @@ msgstr "İki faktörlü kimlik doğrulamayı etkinleştirdiğinizde kaydettiğin #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Fosfor Simgesini Girin" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -575,7 +575,7 @@ msgstr "Yazı Tipi Çeşitleri" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Örneğin, bu özgeçmişi hangi şirketlere gönderdiğinize ilişkin bilgiler veya iş tanımlarının bağlantıları buraya not edilebilir." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Unut" @@ -658,8 +658,8 @@ msgstr "Burada profil resminiz, adınız ve kullanıcı adınız gibi hesap bilg msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Burada, deneyiminizi özelleştirmek ve kişiselleştirmek için profilinizi güncelleyebilirsiniz." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Gizli" @@ -690,7 +690,7 @@ msgstr "Özgeçmişinizi herkese açık olarak sunun" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Reactive Resume kullanıcılarından geri bildirim veya destek almayı her zaman isterim. İşte aldığım mesajlardan bazıları. Herhangi bir geri bildiriminiz varsa bana <0>{email} adresinden e-posta göndermekten çekinmeyin.." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Simge" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Anahtar Kelimeler" @@ -809,7 +809,7 @@ msgstr "Etiket" msgid "Language" msgstr "Dil" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Son güncelleme {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Konum" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "Mart 2023 - Günümüz" msgid "Margin" msgstr "Kenar Boşlukları" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Maksimum Jeton" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "MIT Lisansı" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Model" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "İsim" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "İsim" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Sosyal Ağ" @@ -969,10 +969,6 @@ msgstr "Not: Bu, hesabınızın güvenliğini azaltacaktır." msgid "Notes" msgstr "Notlar" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Tek Kullanımlık Şifre" @@ -984,7 +980,7 @@ msgstr "Tek Kullanımlık Şifre" msgid "Oops, the server returned an error." msgstr "Hata! Sunucu bir hata döndürdü." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Aç" msgid "Open Source" msgstr "Açık Kaynak" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI, metniniz için herhangi bir seçenek döndürmedi." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "OpenAI Entegrasyonu" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Konum" msgid "Powered by" msgstr "Destekleyen" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "<0>Simple Icons tarafından desteklenmektedir" @@ -1167,7 +1166,7 @@ msgstr "Reaktif Özgeçmiş, canlı topluluğu sayesinde gelişiyor. Bu proje il msgid "Redo" msgstr "Yinele" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Kaldır" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Sayfayı Kaldır" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Fiyat açısından değil, özellikler açısından zengin." msgid "Rounded" msgstr "Yuvarlak" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Değişiklikleri Kaydet" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Yerele Kaydet" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Kaydedildi" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1449,14 +1448,6 @@ msgstr "Görüşler" msgid "Text Color" msgstr "Metin Rengi" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Bu geçerli bir OpenAI API anahtarına benzemiyor." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Girdiğiniz şifreler eşleşmiyor." @@ -1475,7 +1466,7 @@ msgstr "Tema" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Tarayıcıya bağlanırken bir hata oluştu. Lütfen 'chrome'un çalıştığından ve erişilebilir olduğundan emin olun." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Bu eylem, kayan araç çubuğundaki geri al düğmesine tıklanarak geri alınabilir." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Geri al" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Bir özgeçmişin kilidini açmak, üzerinde tekrar değişiklik yapman msgid "Unverified" msgstr "Doğrulanmamış" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Mevcut bir öğeyi güncelle" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Kullanıcının ilişkili bir 'secrets' kaydı yok. Lütfen bu sorunu GitHub'da bildirin." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Kullanıcı adı" @@ -1618,7 +1609,7 @@ msgstr "Doğrula" msgid "Validated" msgstr "Doğrulanmış" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Değer" @@ -1643,10 +1634,14 @@ msgstr "Sürüm 4" msgid "Views" msgstr "Görüntülenmeler" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Görünür" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "E-posta adresinizi yalnızca şifrenizi unutmanız durumunda size bir şifre sıfırlama bağlantısı gönderebilmemizi sağlamak için doğruluyoruz." @@ -1656,7 +1651,7 @@ msgstr "E-posta adresinizi yalnızca şifrenizi unutmanız durumunda size bir ş #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "İnternet sitesi" msgid "What's new in the latest version" msgstr "En son sürümdeki yenilikler" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna basarak ekleyebilirsiniz." @@ -1680,11 +1675,11 @@ msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna bas msgid "You can also enter your username." msgstr "Kullanıcı adınızı da girebilirsiniz." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "İçerik oluşturmanıza yardımcı olması için OpenAI API'sinden yararlanabilir veya özgeçmişinizi oluştururken yazınızı geliştirebilirsiniz." @@ -1692,7 +1687,7 @@ msgstr "İçerik oluşturmanıza yardımcı olması için OpenAI API'sinden yara msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Herkese açık paylaşımı etkinleştirerek özgeçmişinizin kaç görüntüleme aldığını veya kaç kişinin özgeçmişinizi indirdiğini takip edebilirsiniz." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "<0>Kendi OpenAI API anahtarınızı edinme seçeneğiniz vardır. Bu anahtar, API'den uygun gördüğünüz şekilde yararlanmanızı sağlar. Alternatif olarak, Reaktif Özgeçmiş'teki yapay zeka özelliklerini tamamen devre dışı bırakmak isterseniz, anahtarı ayarlarınızdan kaldırabilirsiniz." @@ -1709,7 +1704,7 @@ msgstr "E-postanız var!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Hesabınız ve tüm verileriniz başarıyla silindi. Güle güle!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "API anahtarınız tarayıcının yerel depolama alanında güvenli bir şekilde saklanır ve yalnızca OpenAI'ye resmi SDK'ları aracılığıyla istekte bulunurken kullanılır. OpenAI'nin hizmetleriyle etkileşim dışında anahtarınızın herhangi bir harici sunucuya iletilmediğinden emin olabilirsiniz." @@ -1732,3 +1727,4 @@ msgstr "Yakınlaştır" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Uzaklaştır" + diff --git a/apps/client/src/locales/uk-UA/messages.po b/apps/client/src/locales/uk-UA/messages.po index e4767d37..db53d398 100644 --- a/apps/client/src/locales/uk-UA/messages.po +++ b/apps/client/src/locales/uk-UA/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: uk\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -20,7 +20,7 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "Ви успішно ввімкнули двофакторну автентифікацію." +msgstr "Ви успішно ввімкнули двофакторну аутентифікацію." #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" @@ -32,19 +32,19 @@ msgstr "{value, plural, one {Колонка} other {Стовпчики}}" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20 msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give." -msgstr "<0>Я побудував Reactive Resume переважно під час мого вільного часу, за допомогою багатьох помічників з відкритим вихідним кодом. /0><1>Якщо вам подобається додаток і ви хочете підтримати його безкоштовною назавжди, будь ласка, пожертвуйте на все, що ви можете дозволити." +msgstr "<0>Я створив Reactive Resume здебільшого сам у вільний час, з великою допомогою інших чудових розробників з відкритим вихідним кодом.<1>Якщо вам подобається додаток і ви хочете, щоб він залишався безкоштовним назавжди, будь ласка, пожертвуйте будь-яку суму, яку ви можете собі дозволити." #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51 msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "<0>Я впевнений, що програма не ідеальна, але я хотів би, щоб вона була. /0><1>Якщо ви зіткнулися з будь-якими проблемами при створенні своєї відновлення, або ідея, яка допоможе вам та іншим користувачам створювати своє резюме легше, видалити проблему в репозиторії або надіслати мені по електронній пошті про неї. /1>" +msgstr "<0>Я впевнений, що додаток не ідеальний, але я хотів би, щоб він був ідеальним.<1>Якщо ви зіткнулися з будь-якими проблемами при створенні резюме, або у вас є ідея, яка допоможе вам та іншим користувачам легше створювати резюме, напишіть про це в репозиторій або надішліть мені листа на електронну пошту." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "<0>Примітка: Використовуючи API OpenAI, ви визнаєте та приймаєте <1>умови використання та <2>конфіденційну політику обмежену OpenAI. Будь ласка, зверніть увагу, що Реактивний Відновити не несе ніякої відповідальності за несанкціоноване або несанкціоноване використання сервісу, і наслідки або зобов'язання, що виникають виключно для користувача." +msgstr "<0>Примітка: Використовуючи OpenAI API, ви визнаєте і приймаєте <1>умови використання і <2>політику конфіденційності, викладені OpenAI. Зверніть увагу, що Reactive Resume не несе відповідальності за будь-яке неналежне або несанкціоноване використання сервісу, і будь-які наслідки або зобов'язання, що випливають з цього, покладаються виключно на користувача." #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85 msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "<0>Спільнота витратила багато часу, написавши документацію про реактивне оновлення, і я впевнений, що це допоможе вам почати з додатку. /0><1>Існує ще багато прикладів що допоможуть вам почати, і особливості, про які ви не знаєте, які можуть допомогти вам створити ідеальну презентацію. /1>" +msgstr "<0>Спільнота витратила багато часу на написання документації для Reactive Resume, і я впевнений, що вона допоможе вам почати роботу з додатком.<1>У ній також є багато прикладів, які допоможуть вам розпочати роботу, а також функції, про які ви, можливо, не знали, але які допоможуть вам створити ідеальне резюме." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." @@ -52,17 +52,17 @@ msgstr "<0>Двофакторна аутентифікація наразі ви #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "<0>Двофакторна аутентифікація включена. Вас буде запропоновано вводити код при вході." +msgstr "<0>Двофакторна аутентифікація ввімкнена. Вам буде запропоновано ввести код при кожному вході в систему." #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 msgid "A free and open-source resume builder" -msgstr "Безкоштовний і відкритий код відновлення" +msgstr "Безкоштовний конструктор резюме з відкритим вихідним кодом" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "Безкоштовний і відкритий вихідний код будівництва який спрощує процес створення, оновлення і обмін резюме ." +msgstr "Безкоштовний конструктор резюме з відкритим вихідним кодом, який спрощує процес створення, оновлення та поширення вашого резюме." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 @@ -71,7 +71,7 @@ msgstr "Посилання скопійовано до буфера обміну #: apps/client/src/components/copyright.tsx:29 msgid "A passion project by <0>Amruth Pillai" -msgstr "Проект пристрасті <0>Pillai" +msgstr "Пристрасний проект <0>Амрут Піллай" #: apps/client/src/pages/auth/forgot-password/page.tsx:57 msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." @@ -98,12 +98,12 @@ msgstr "Приймаються тільки файли {accept}" msgid "Account" msgstr "Обліковий запис" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" -msgstr "Додати поле" +msgstr "Додати кастомне поле" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Додайте новий елемент" @@ -115,7 +115,7 @@ msgstr "Додайте новий елемент" #: apps/client/src/pages/builder/sidebars/left/index.tsx:146 #: apps/client/src/pages/builder/sidebars/left/index.tsx:263 msgid "Add a new section" -msgstr "Додати секцію" +msgstr "Додати новий розділ" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:271 msgid "Add New Page" @@ -139,28 +139,28 @@ msgstr "та багато іншого..." #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 msgid "Anyone with the link can view and download the resume." -msgstr "Усі, хто має посилання можуть переглядати та завантажувати скидання." +msgstr "Будь-хто, хто має посилання, може переглянути та завантажити резюме." #: apps/client/src/pages/builder/_components/toolbar.tsx:54 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "Усі, хто має це посилання можуть переглядати та завантажувати продовження. Поділіться цим у вашому профілі або з рекрутерами." +msgstr "Будь-хто за цим посиланням може переглянути та завантажити резюме. Поділіться ним у своєму профілі або з рекрутерами." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" -msgstr "Ви впевнені, що бажаєте видалити цей елемент?" +msgstr "Ви впевнені, що ви хочете видалити цей елемент?" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:147 msgid "Are you sure you want to delete your resume?" -msgstr "Ви впевнені, що бажаєте видалити цю версію?" +msgstr "Ви впевнені, що хочете видалити своє резюме?" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125 msgid "Are you sure you want to disable two-factor authentication?" -msgstr "Ви впевнені, що хочете відключити двофакторну автентифікацію?" +msgstr "Ви впевнені, що хочете вимкнути двоетапну перевірку?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 msgid "Are you sure you want to lock this resume?" -msgstr "Ви впевнені, що хочете заблокувати цю резюме?" +msgstr "Ви впевнені, що хочете заблокувати це резюме?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 msgid "Are you sure you want to unlock this resume?" @@ -173,11 +173,11 @@ msgstr "Ви впевнені?" #. For example, Computer Science or Business Administration #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 msgid "Area of Study" -msgstr "Площа навчання" +msgstr "Область вивчення" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:85 msgid "Aspect Ratio" -msgstr "Відношення сторін" +msgstr "Співвідношення сторін" #: apps/client/src/pages/home/sections/features/index.tsx:51 msgid "Available in {languagesCount} languages" @@ -205,9 +205,9 @@ msgstr "Резервний код" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Резервні коди можуть містити тільки малі букви або цифри, і повинні бути точно 10 символів." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "Базова URL-адреса" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "Побудований з" msgid "By the community, for the community." msgstr "Спільнотою, для спільноти." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Підтвердити новий пароль" msgid "Continue" msgstr "Продовжити" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Скопіювати" @@ -318,7 +318,7 @@ msgstr "Скопіювати посилання до резюме" msgid "Copy to Clipboard" msgstr "Копіювати до буфера обміну" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Створити" @@ -328,7 +328,7 @@ msgstr "Створити" msgid "Create a new account" msgstr "Створити новий обліковий запис" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Створити новий елемент" @@ -385,9 +385,9 @@ msgstr "Дата" msgid "Date or Date Range" msgstr "Дата або проміжок часу" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Завантажити в PDF" msgid "Downloads" msgstr "Завантажень" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Дублювати" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Дублювати існуючий елемент" @@ -478,7 +478,7 @@ msgstr "Дублювати існуючий елемент" msgid "Duplicate an existing resume" msgstr "Дублювати існуючу резюме" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Редагувати" @@ -508,7 +508,7 @@ msgstr "Введіть один з 10 резервних кодів, які ви #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "Введіть значок фосфору" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." @@ -575,7 +575,7 @@ msgstr "Font Variants" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Наприклад, інформація про компанії, до яких компаній ви відправили резюме або посилання на опис роботи, може бути відзначена тут." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Забути" @@ -658,8 +658,8 @@ msgstr "Тут ви можете оновити відомості про обл msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Тут ви можете оновити свій профіль, щоб налаштувати і персоналізувати свій досвід." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Hidden" @@ -690,7 +690,7 @@ msgstr "Проведіть Вашу резюме публічно" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Я завжди люблю дізнаватися від користувачів реактивного відновлення з зворотним зв'язком або підтримкою. Декілька повідомлень, які я отримав. Якщо у вас є зворотний зв'язок, то можете позбутися від мене листа з <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Іконка" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Ключові слова" @@ -809,7 +809,7 @@ msgstr "Мітка" msgid "Language" msgstr "Мова:" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Востаннє оновлено {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Місцезнаходження" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "березня 2023 - Представлений" msgid "Margin" msgstr "Відступ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "Максимальна кількість токенів" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "Ліцензія MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "Модель" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Ім'я" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Ім'я" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Мережа" @@ -969,10 +969,6 @@ msgstr "Примітка: Це зробить ваш обліковий запи msgid "Notes" msgstr "Нотатки" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Одноразовий пароль" @@ -984,7 +980,7 @@ msgstr "Одноразовий пароль" msgid "Oops, the server returned an error." msgstr "Ой, сервер повернув помилку." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Відкриті" msgid "Open Source" msgstr "Відкритий вихідний код" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI не вернув жодного вибору вашого тексту." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Інтеграція OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Позиція" msgid "Powered by" msgstr "Працює на" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Працює на основі <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Репер процвітає завдяки яскравому спів msgid "Redo" msgstr "Повторити дію" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Видалити" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Видалити сторінку" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "Багаті функції не в ціні." msgid "Rounded" msgstr "Округлі" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Зберегти зміни" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "Зберегти локально" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "Збережено" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1284,7 +1283,7 @@ msgstr "Надіслати мені повідомлення" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "Окремі посилання" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 @@ -1351,7 +1350,7 @@ msgstr "Зареєструватися" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "Вхід через електронну пошту наразі відключений адміністратором." #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "Відгуки" msgid "Text Color" msgstr "Колір тексту" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Це не схоже на дійсний ключ API OpenAI." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Введені паролі не співпадають." @@ -1475,7 +1466,7 @@ msgstr "Тема" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Помилка підключення до браузера. Будь ласка, переконайтеся, що 'chrome' працює і доступний." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Цю дію можна буде відкотити, натиснувши на кнопку скасувати в плаваючій панелі інструментів." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Скасувати" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Розблокування резюме дозволить вам вно msgid "Unverified" msgstr "Неперевірений" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Оновити існуючий елемент" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Користувач не має пов'язаного з цим запису секретів. Будь ласка, повідомте про цю проблему на GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Ім'я користувача" @@ -1618,7 +1609,7 @@ msgstr "Validate" msgid "Validated" msgstr "Перевірено" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Цінність" @@ -1643,10 +1634,14 @@ msgstr "Версія 4" msgid "Views" msgstr "Перегляди" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Видимий" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Підтверджуємо вашу електронну адресу лише для того, щоб ми могли відправити вам посилання для зміни пароля." @@ -1656,7 +1651,7 @@ msgstr "Підтверджуємо вашу електронну адресу л #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Вебсторінка" msgid "What's new in the latest version" msgstr "Що нового в останній версії" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Ви можете додати декілька ключових слів, розділивши їх комою або натиснувши Enter." @@ -1680,11 +1675,11 @@ msgstr "Ви можете додати декілька ключових слі msgid "You can also enter your username." msgstr "Також ви можете ввести своє ім'я користувача." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Ви можете використовувати OpenAI API, щоб допомогти вам згенерувати контент, або покращити свій запис під час створення свого резюме." @@ -1692,7 +1687,7 @@ msgstr "Ви можете використовувати OpenAI API, щоб до msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Ви можете відслідковувати кількість переглядів, які ви подали або як багато людей завантажили резюме, дозволяючи спільне поширення." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "У вас є можливість <0>отримати власний ключ API OpenAI . Цей ключ дає вам можливість використовувати API як ви бачите на підході. Або ж, якщо ви хочете вимкнути функцію ШІ в самих умовах реактивного відновлення, ви можете просто видалити ключ у ваших налаштуваннях." @@ -1709,7 +1704,7 @@ msgstr "Ви отримали листа!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Ваш обліковий запис і всі ваші дані було успішно видалено." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Ваш ключ API надійно зберігається в локальній пам'яті браузера і використовує лише при обробці запитів до OpenAI через свій офіційний SDK. Решту запевнили, що ваш ключ не передається на будь-який зовнішній сервер, за винятком взаємодії з сервісами OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Збільшити" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Зменшити" + diff --git a/apps/client/src/locales/uz-UZ/messages.po b/apps/client/src/locales/uz-UZ/messages.po index 7aba319b..0a21659b 100644 --- a/apps/client/src/locales/uz-UZ/messages.po +++ b/apps/client/src/locales/uz-UZ/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: uz\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Uzbek\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -38,7 +38,7 @@ msgstr "" msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "" @@ -98,12 +98,12 @@ msgstr "Faqat {accept} fayllarini qabul qiladi" msgid "Account" msgstr "Hisob" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Maxsus maydon qo'shish" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Yangi narsa qo'shish" @@ -146,11 +146,7 @@ msgstr "Ushbu havolaga ega bo'lgan ixtiyoriy shaxs tarjimai holni ko'rishi va yu msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Ushbu havolaga ega bo'lgan ixtiyoriy shaxs tarjimai holni ko'rishi va yuklab olishi mumkin. Uni hisobingizda yoki ish beruvchilar bilan ulashing." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83 -msgid "API Key" -msgstr "API kalit" - -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Haqiqatan ham buni oʻchirmoqchimisiz?" @@ -209,6 +205,10 @@ msgstr "Zaxira kodi" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Zaxira kodlari faqat kichik harflar yoki raqamlardan iborat bo'lishi mumkin va aynan 10 belgidan iborat bo'lishi kerak." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 +msgid "Base URL" +msgstr "" + #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." msgid "Basics" @@ -235,7 +235,7 @@ msgstr "Bu bilan qurilgan" msgid "By the community, for the community." msgstr "Jamiyat tomonidan, jamiyat uchun." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Yangi parolni tasdiqlang" msgid "Continue" msgstr "Davom etish" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Nusxalash" @@ -318,7 +318,7 @@ msgstr "Tarjimai hol uchun Havoladan nusxa oling" msgid "Copy to Clipboard" msgstr "Hotiraga nusxalash" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Yasash" @@ -328,7 +328,7 @@ msgstr "Yasash" msgid "Create a new account" msgstr "Yangi hisob yasang" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Yangi buyum yasang" @@ -385,9 +385,9 @@ msgstr "Sana" msgid "Date or Date Range" msgstr "Sana yoki sana oralig'i" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "PDF yuklab olish" msgid "Downloads" msgstr "Yuklab olish" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Nusxalash" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Mavjud buyumni nusxalash" @@ -478,7 +478,7 @@ msgstr "Mavjud buyumni nusxalash" msgid "Duplicate an existing resume" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "" @@ -537,15 +537,15 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/index.tsx:111 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 msgid "Export" -msgstr "" +msgstr "Eksport" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 msgid "File" -msgstr "" +msgstr "Fayl" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 msgid "Filetype" -msgstr "" +msgstr "Fayl turi" #: apps/client/src/pages/home/sections/hero/index.tsx:38 msgid "Finally," @@ -575,17 +575,17 @@ msgstr "" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "" #: apps/client/src/pages/auth/login/page.tsx:126 msgid "Forgot Password?" -msgstr "" +msgstr "Parolni unutdingizmi?" #: apps/client/src/pages/auth/forgot-password/page.tsx:68 msgid "Forgot your password?" -msgstr "" +msgstr "Parolingizni unutdingizmi?" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 @@ -598,7 +598,7 @@ msgstr "" #: apps/client/src/pages/home/sections/features/index.tsx:46 msgid "Free, forever" -msgstr "" +msgstr "Bepul, har doim" #: apps/client/src/components/ai-actions.tsx:121 #: apps/client/src/components/ai-actions.tsx:124 @@ -615,7 +615,7 @@ msgstr "" #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:32 msgid "Get Started" -msgstr "" +msgstr "Boshlash" #: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" @@ -658,15 +658,15 @@ msgstr "" msgid "Here, you can update your profile to customize and personalize your experience." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" -msgstr "" +msgstr "Yashirilgan" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:105 msgid "Hide" -msgstr "" +msgstr "Yashirish" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:178 msgid "Hide Icons" @@ -690,7 +690,7 @@ msgstr "" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "" @@ -736,7 +736,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/right/index.tsx:125 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117 msgid "Information" -msgstr "" +msgstr "Ma'lumot" #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 msgid "Institution" @@ -777,28 +777,28 @@ msgstr "" #: apps/client/src/pages/auth/register/page.tsx:101 msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." msgid "John Doe" -msgstr "" +msgstr "Azizov Aziz" #: apps/client/src/pages/auth/register/page.tsx:122 msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." msgid "john.doe" -msgstr "" +msgstr "aziz.azizov" #: apps/client/src/pages/auth/register/page.tsx:143 msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish." msgid "john.doe@example.com" -msgstr "" +msgstr "aziz.azizov@pochta.uz" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" -msgstr "" +msgstr "Kalit so’zlar" #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:41 #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:51 @@ -809,7 +809,7 @@ msgstr "" msgid "Language" msgstr "" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "" @@ -865,7 +865,7 @@ msgid "Location" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,10 +914,18 @@ msgstr "" msgid "Margin" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 +msgid "Max Tokens" +msgstr "" + #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 +msgid "Model" +msgstr "" + #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48 @@ -926,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "" @@ -936,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "" @@ -972,7 +980,7 @@ msgstr "Bir martalik parol" msgid "Oops, the server returned an error." msgstr "Afsuski, serverda xatolik yuz berdi." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -982,17 +990,24 @@ msgstr "Ochiq" msgid "Open Source" msgstr "" -#: apps/client/src/services/openai/change-tone.ts:30 -#: apps/client/src/services/openai/fix-grammar.ts:28 -#: apps/client/src/services/openai/improve-writing.ts:28 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1077,7 +1092,7 @@ msgstr "" msgid "Powered by" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "" @@ -1151,7 +1166,7 @@ msgstr "" msgid "Redo" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "" @@ -1161,7 +1176,7 @@ msgid "Remove Page" msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1192,7 +1207,7 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/page.tsx:20 #: apps/client/src/pages/dashboard/resumes/page.tsx:37 msgid "Resumes" -msgstr "" +msgstr "Rezyumelar" #: apps/client/src/pages/home/sections/statistics/index.tsx:14 msgid "Resumes Generated" @@ -1206,12 +1221,20 @@ msgstr "" msgid "Rounded" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" -msgstr "" +msgstr "O'zgarishlarni saqlash" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Save Locally" +msgstr "Mahalliy saqlash" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 +msgid "Saved" +msgstr "Saqlandi" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1376,18 +1399,10 @@ msgstr "" msgid "Statistics are available only for public resumes." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Store Locally" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:162 msgid "Store your backup codes securely" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Stored" -msgstr "" - #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:128 @@ -1433,10 +1448,6 @@ msgstr "" msgid "Text Color" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "" @@ -1455,7 +1466,7 @@ msgstr "" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "" @@ -1537,7 +1548,7 @@ msgid "Undo" msgstr "" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1551,7 +1562,7 @@ msgstr "" msgid "Unverified" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "" @@ -1581,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "" @@ -1598,7 +1609,7 @@ msgstr "" msgid "Validated" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "" @@ -1623,10 +1634,14 @@ msgstr "" msgid "Views" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "" @@ -1636,7 +1651,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1649,9 +1664,9 @@ msgstr "" msgid "What's new in the latest version" msgstr "" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "" @@ -1660,7 +1675,11 @@ msgstr "" msgid "You can also enter your username." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "" @@ -1668,7 +1687,7 @@ msgstr "" msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "" @@ -1685,7 +1704,7 @@ msgstr "" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "" diff --git a/apps/client/src/locales/vi-VN/messages.po b/apps/client/src/locales/vi-VN/messages.po index 9e8c4406..4e37e19c 100644 --- a/apps/client/src/locales/vi-VN/messages.po +++ b/apps/client/src/locales/vi-VN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: vi\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:14\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -38,7 +38,7 @@ msgstr "<0>Tôi xây dựng Reactive Resume trong thời gian rảnh rỗi với msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>Tôi chắc chắn rằng ứng dụng này không hoàn hảo nhưng tôi muốn nó như vậy. <1>Nếu bạn gặp phải bất kỳ vấn đề nào khi tạo sơ yếu lý lịch của mình hoặc có ý tưởng có thể giúp bạn và những người dùng khác tạo sơ yếu lý lịch của bạn dễ dàng hơn, hãy gửi vấn đề đó vào kho lưu trữ hoặc gửi email cho tôi về vấn đề đó." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>Lưu ý: Bằng cách sử dụng API OpenAI, bạn thừa nhận và chấp nhận <1>điều khoản sử dụng và <2>chính sách quyền riêng tư được phác thảo bởi OpenAI. Xin lưu ý rằng Reactive Resume không chịu trách nhiệm đối với bất kỳ việc sử dụng dịch vụ không đúng cách hoặc trái phép nào và mọi hậu quả hoặc trách nhiệm pháp lý phát sinh chỉ thuộc về người dùng." @@ -98,12 +98,12 @@ msgstr "Chỉ chấp nhận tệp {accept}" msgid "Account" msgstr "Tài khoản" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "Thêm một trường tùy chỉnh" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "Thêm mục mới" @@ -146,7 +146,7 @@ msgstr "Bất kỳ ai có liên kết đều có thể xem và tải xuống sơ msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "Bất kỳ ai có liên kết này đều có thể xem và tải xuống sơ yếu lý lịch. Chia sẻ nó trên hồ sơ của bạn hoặc với nhà tuyển dụng." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "Bạn có chắc bạn muốn xóa mục này?" @@ -205,7 +205,7 @@ msgstr "Mã Backup" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "Mã backup chỉ có thể chứa chữ cái viết thường hoặc số và phải có chính xác 10 ký tự." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" msgstr "" @@ -235,7 +235,7 @@ msgstr "Xây dựng với" msgid "By the community, for the community." msgstr "Bởi cộng đồng, vì cộng đồng." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -306,7 +306,7 @@ msgstr "Xác nhận mật khẩu mới" msgid "Continue" msgstr "Tiếp tục" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "Sao chép" @@ -318,7 +318,7 @@ msgstr "Sao chép Liên kết đến Sơ yếu lý lịch" msgid "Copy to Clipboard" msgstr "Sao chép vào bộ nhớ tạm" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "Tạo" @@ -328,7 +328,7 @@ msgstr "Tạo" msgid "Create a new account" msgstr "Tạo tài khoản mới" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "Tạo mục mới" @@ -385,9 +385,9 @@ msgstr "Ngày" msgid "Date or Date Range" msgstr "Ngày hoặc Khoảng ngày" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "Tải xuống PDF" msgid "Downloads" msgstr "Tải về" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "Tạo bản sao" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "Sao chép một mục hiện có" @@ -478,7 +478,7 @@ msgstr "Sao chép một mục hiện có" msgid "Duplicate an existing resume" msgstr "Sao chép sơ yếu lý lịch hiện có" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "Chỉnh sửa" @@ -575,7 +575,7 @@ msgstr "Biến thể Font" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "Ví dụ: thông tin về công ty bạn đã gửi bản lý lịch này đến hoặc các liên kết đến mô tả công việc có thể được ghi lại ở đây." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "Quên" @@ -658,8 +658,8 @@ msgstr "Tại đây, bạn có thể cập nhật thông tin tài khoản của msgid "Here, you can update your profile to customize and personalize your experience." msgstr "Tại đây, bạn có thể cập nhật hồ sơ của mình để tùy chỉnh và cá nhân hóa trải nghiệm của mình." -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "Ẩn" @@ -690,7 +690,7 @@ msgstr "Lưu trữ sơ yếu lý lịch của bạn một cách công khai" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "Tôi luôn mong muốn nhận được phản hồi hoặc hỗ trợ từ người dùng Reactive Resume. Dưới đây là một số tin nhắn tôi đã nhận được. Nếu bạn có bất kỳ phản hồi nào, vui lòng gửi email cho tôi theo địa chỉ <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "Icon" @@ -793,9 +793,9 @@ msgstr "john.doe@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "Từ khóa" @@ -809,7 +809,7 @@ msgstr "Nhãn" msgid "Language" msgstr "Ngôn ngữ" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "Cập nhật lần cuối {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "Vị trí" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,7 +914,7 @@ msgstr "03/2023 - Hiện tại" msgid "Margin" msgstr "Lề" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "MIT License" msgstr "Giấy phép MIT" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" msgstr "" @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "Tên" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "Tên" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "Mạng" @@ -969,10 +969,6 @@ msgstr "Lưu ý: Điều này sẽ làm cho tài khoản của bạn ít an toà msgid "Notes" msgstr "Ghi chú" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "Mật khẩu sử dụng một lần" @@ -984,7 +980,7 @@ msgstr "Mật khẩu sử dụng một lần" msgid "Oops, the server returned an error." msgstr "Rất tiếc, máy chủ đã trả về lỗi." -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "Mở" msgid "Open Source" msgstr "Mã nguồn mở" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI không trả về bất kỳ phản hồi nào cho văn bản của bạn." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "Tích hợp OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1093,7 +1092,7 @@ msgstr "Vị trí" msgid "Powered by" msgstr "Chạy trên nền tảng" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "Được hỗ trợ bởi <0>Simple Icons" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume phát triển mạnh nhờ cộng đồng sôi động. msgid "Redo" msgstr "Làm lại" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "Xóa" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "Xóa trang" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,18 +1221,18 @@ msgstr "Tính năng phong phú, không quan trọng giá cả." msgid "Rounded" msgstr "Làm tròn" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "Lưu thay đổi" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" msgstr "" @@ -1449,14 +1448,6 @@ msgstr "Lời nhận xét" msgid "Text Color" msgstr "Màu chữ" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "Có vẻ như đó không phải là Key API OpenAI hợp lệ." - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "Mật khẩu bạn đã nhập không khớp." @@ -1475,7 +1466,7 @@ msgstr "Chủ đề" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "Đã xảy ra lỗi khi kết nối với trình duyệt. Hãy đảm bảo rằng 'chrome' đang chạy và có thể truy cập được." -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "Hành động này có thể được hoàn nguyên bằng cách nhấp vào nút hoàn tác trên thanh công cụ nổi." @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "Hoàn tác" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "Mở khóa sơ yếu lý lịch sẽ cho phép bạn điều chỉnh tha msgid "Unverified" msgstr "Chưa xác minh" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "Cập nhật một mục hiện có" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "Người dùng không có bản ghi 'bí mật' liên quan. Vui lòng báo cáo vấn đề này trên GitHub." #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "Tên Người Dùng" @@ -1618,7 +1609,7 @@ msgstr "Xác thực" msgid "Validated" msgstr "Đã xác thực" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "Giá trị" @@ -1643,10 +1634,14 @@ msgstr "Phiên bản 4" msgid "Views" msgstr "Lượt xem" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "Hiện" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "Chúng tôi chỉ xác minh địa chỉ email của bạn để đảm bảo rằng chúng tôi có thể gửi cho bạn liên kết đặt lại mật khẩu trong trường hợp bạn quên mật khẩu." @@ -1656,7 +1651,7 @@ msgstr "Chúng tôi chỉ xác minh địa chỉ email của bạn để đảm #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "Trang web" msgid "What's new in the latest version" msgstr "Có gì mới trong phiên bản mới nhất" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng bằng dấu phẩy hoặc nhấn enter." @@ -1680,11 +1675,11 @@ msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng msgid "You can also enter your username." msgstr "Bạn cũng có thể nhập tên người dùng của bạn." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "Bạn có thể sử dụng API OpenAI để giúp bạn tạo nội dung hoặc cải thiện khả năng viết của mình trong khi soạn sơ yếu lý lịch." @@ -1692,7 +1687,7 @@ msgstr "Bạn có thể sử dụng API OpenAI để giúp bạn tạo nội dun msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "Bạn có thể theo dõi số lượt xem sơ yếu lý lịch của bạn hoặc số người đã tải xuống bằng cách bật chia sẻ công khai." -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "Bạn có tùy chọn <0>lấy Key API OpenAI của bạn. Key này cho phép bạn tận dụng API phù hợp với bạn. Ngoài ra, nếu bạn muốn tắt hoàn toàn các tính năng AI trong Reactive Resume, bạn chỉ cần xóa Key khỏi cài đặt của mình." @@ -1709,7 +1704,7 @@ msgstr "Bạn vừa nhận thư!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "Tài khoản của bạn và tất cả dữ liệu của bạn đã được xóa thành công. Tạm biệt!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "Key API của bạn được lưu trữ an toàn trong bộ nhớ cục bộ của trình duyệt và chỉ được sử dụng khi gửi yêu cầu tới OpenAI thông qua SDK chính thức của họ. Hãy yên tâm rằng Key của bạn không được truyền đến bất kỳ máy chủ bên ngoài nào ngoại trừ khi tương tác với các dịch vụ của OpenAI." @@ -1732,3 +1727,4 @@ msgstr "Phóng to" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "Thu nhỏ" + diff --git a/apps/client/src/locales/zh-CN/messages.po b/apps/client/src/locales/zh-CN/messages.po index 4f3f4c64..281e4fe2 100644 --- a/apps/client/src/locales/zh-CN/messages.po +++ b/apps/client/src/locales/zh-CN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -24,7 +24,7 @@ msgstr "您已成功启用双重身份认证。" #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" -msgstr "{templatesCount} 可供选择的简历模板" +msgstr "{templatesCount} 个简历模板可供选择" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:141 msgid "{value, plural, one {Column} other {Columns}}" @@ -38,7 +38,7 @@ msgstr "<0>我花费了大量业余时间,独立开发了 Reactive Resume, msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>我知道这个应用程序并不完美,但我希望它能日趋完善。 <1>如果您在创建简历时遇到任何问题,或者有有助于您和其他用户更轻松地创建简历的想法,请在仓库中提出问题或向我发送有关的电子邮件。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>注意:使用 OpenAI API 即表示您承认并接受 OpenAI 的<1>使用条款和<2>隐私政策。请注意,Reactive Resume 对任何不当或未经授权的服务使用不承担任何责任,由此产生的任何影响或责任仅由用户承担。" @@ -98,12 +98,12 @@ msgstr "仅接受 {accept} 文件" msgid "Account" msgstr "账户" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" msgstr "添加自定义字段" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "增加一项" @@ -146,7 +146,7 @@ msgstr "任何人都可以通过此链接查看或下载简历。" msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." msgstr "任何人都可以通过此链接查看或下载简历。您可以在个人资料中附上此链接,或分享给招聘人员。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" msgstr "您确定要删除此项目吗?" @@ -205,9 +205,9 @@ msgstr "备份码" msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." msgstr "备份码只包含小写字母或数字,而且必须正好是 10 个字符。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "基础 URL" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -235,7 +235,7 @@ msgstr "构建于" msgid "By the community, for the community." msgstr "来自社区,服务社区。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -266,7 +266,7 @@ msgstr "想改名字了?取个新名字吧。" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 msgid "Check your email for the confirmation link to update your email address." -msgstr "检查您的电子邮件中的确认链接以更新您的电子邮件地址。" +msgstr "检查您收件箱中的确认链接,以更新您的电子邮件地址。" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:150 msgid "Circle" @@ -306,7 +306,7 @@ msgstr "确认新密码" msgid "Continue" msgstr "继续" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "复制" @@ -318,7 +318,7 @@ msgstr "复制链接到简历" msgid "Copy to Clipboard" msgstr "复制到剪贴板" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" msgstr "创建" @@ -328,7 +328,7 @@ msgstr "创建" msgid "Create a new account" msgstr "创建账户" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" msgstr "创建新条目" @@ -385,9 +385,9 @@ msgstr "日期" msgid "Date or Date Range" msgstr "日期或日期范围" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" @@ -462,15 +462,15 @@ msgstr "下载 PDF" msgid "Downloads" msgstr "下载" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" msgstr "复制" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" msgstr "复制现有项目" @@ -478,7 +478,7 @@ msgstr "复制现有项目" msgid "Duplicate an existing resume" msgstr "复制现有简历" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "编辑" @@ -575,7 +575,7 @@ msgstr "字体变体" msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." msgstr "例如,您可以在此处注明您发送给的公司或者职位描述的链接。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "遗弃" @@ -658,8 +658,8 @@ msgstr "在这里,您可以更新您的账户信息,比如资料图片、姓 msgid "Here, you can update your profile to customize and personalize your experience." msgstr "在这里,您可以更新个人资料,定制个性化的体验。" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" msgstr "隐藏" @@ -690,7 +690,7 @@ msgstr "公开展示您的简历" msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." msgstr "我们十分欢迎用户对于 Reactive Resume 的反馈和支持。这是我们收到的一些信息,如果您有任何反馈,请随时发送邮件至 <0>{email}。" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" msgstr "图标" @@ -793,9 +793,9 @@ msgstr "zhangsan@example.com" msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" msgstr "关键词" @@ -809,7 +809,7 @@ msgstr "标签" msgid "Language" msgstr "语言" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" msgstr "最后更新 {lastUpdated}" @@ -865,7 +865,7 @@ msgid "Location" msgstr "位置" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" @@ -914,17 +914,17 @@ msgstr "2023 年 3 月至今" msgid "Margin" msgstr "边距" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "最大 Token 数" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" msgstr "MIT 许可证" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "模型" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,7 +934,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" msgstr "名称" @@ -944,7 +944,7 @@ msgctxt "Name of the Certification" msgid "Name" msgstr "名称" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" msgstr "网络" @@ -969,10 +969,6 @@ msgstr "注意:这会降低您账户的安全性。" msgid "Notes" msgstr "注释" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" - #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" msgstr "一次性密码" @@ -984,7 +980,7 @@ msgstr "一次性密码" msgid "Oops, the server returned an error." msgstr "糟糕,服务器返回错误。" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" @@ -994,21 +990,24 @@ msgstr "打开" msgid "Open Source" msgstr "开源" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." msgstr "OpenAI 没有为您的文本返回任何选项。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" msgstr "集成 OpenAI" +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" +msgstr "" + #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" @@ -1030,7 +1029,7 @@ msgstr "页面" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 msgid "Page {0}" -msgstr "第{0} 页" +msgstr "第 {0} 页" #: apps/client/src/pages/auth/login/page.tsx:105 #: apps/client/src/pages/auth/register/page.tsx:161 @@ -1093,7 +1092,7 @@ msgstr "职位" msgid "Powered by" msgstr "技术支持:" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" msgstr "由 <0>Simple Icons 支持" @@ -1167,7 +1166,7 @@ msgstr "Reactive Resume 的蓬勃发展得益于其充满活力的社区。这 msgid "Redo" msgstr "恢复" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" msgstr "移除" @@ -1177,7 +1176,7 @@ msgid "Remove Page" msgstr "删除页面" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" @@ -1222,20 +1221,20 @@ msgstr "物美价廉。" msgid "Rounded" msgstr "圆角" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" msgstr "保存更改" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "保存到本地" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "已保存" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." @@ -1351,7 +1350,7 @@ msgstr "注册" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "湖南大学毕业" +msgstr "目前管理员已禁用电子邮件登录。" #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." @@ -1449,14 +1448,6 @@ msgstr "客户评价" msgid "Text Color" msgstr "文本颜色" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "这看起来不像有效的 OpenAI API 密钥。" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" - #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." msgstr "您输入的密码不匹配。" @@ -1475,7 +1466,7 @@ msgstr "主题" msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." msgstr "连接浏览器时出现错误。请确保谷歌浏览器正在运行并可连接。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." msgstr "单击浮动工具栏中的撤消按钮即可恢复此操作。" @@ -1557,7 +1548,7 @@ msgid "Undo" msgstr "撤销" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" @@ -1571,7 +1562,7 @@ msgstr "解锁简历将允许您再次对其进行更改。" msgid "Unverified" msgstr "未验证" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" msgstr "更新现有项目" @@ -1601,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss msgstr "用户没有关联的“秘密”记录。请在 GitHub 上报告此问题。" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" msgstr "用户名" @@ -1618,7 +1609,7 @@ msgstr "验证" msgid "Validated" msgstr "已验证" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" msgstr "值" @@ -1641,12 +1632,16 @@ msgstr "第 4 版" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 msgid "Views" -msgstr "视图" +msgstr "查看" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" msgstr "可见" +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" +msgstr "" + #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码时能向您发送密码重置链接。" @@ -1656,7 +1651,7 @@ msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 @@ -1669,9 +1664,9 @@ msgstr "网站" msgid "What's new in the latest version" msgstr "最新版本的新功能" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." msgstr "您可以通过用逗号或回车分隔来添加多个关键字。" @@ -1680,11 +1675,11 @@ msgstr "您可以通过用逗号或回车分隔来添加多个关键字。" msgid "You can also enter your username." msgstr "您还可以输入您的用户名。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." msgstr "您可以利用 OpenAI API 来帮助您生成内容,或在撰写简历时提高写作水平。" @@ -1692,7 +1687,7 @@ msgstr "您可以利用 OpenAI API 来帮助您生成内容,或在撰写简历 msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." msgstr "您可以跟踪简历的浏览量,或通过启用公开共享功能跟踪有多少人下载了简历。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." msgstr "您可以选择<0>获取您自己的 OpenAI API 密钥,此密钥使您能够根据需要使用 API。或者,如果您希望完全禁用 Reactive Resume 中的 AI 功能,只需从设置中删除密钥即可。" @@ -1709,7 +1704,7 @@ msgstr "您有新邮件!" msgid "Your account and all your data has been deleted successfully. Goodbye!" msgstr "已成功删除您的账户和所有数据。再见!" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." msgstr "您的 API 密钥安全地存储在浏览器的本地存储中,并且仅会在通过官方 SDK 向 OpenAI 发出请求时使用。请放心,除非与 OpenAI 进行服务交互,否则您的密钥不会传输到任何外部服务器。" @@ -1732,3 +1727,4 @@ msgstr "放大" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" msgstr "缩小" + diff --git a/apps/client/src/locales/zh-TW/messages.po b/apps/client/src/locales/zh-TW/messages.po index 798d2d02..5e768272 100644 --- a/apps/client/src/locales/zh-TW/messages.po +++ b/apps/client/src/locales/zh-TW/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-02 10:08\n" +"PO-Revision-Date: 2025-01-12 12:13\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -20,11 +20,11 @@ msgstr "" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171 msgid "You have enabled two-factor authentication successfully." -msgstr "您已成功啟用雙重認證。" +msgstr "您已成功啟用雙因子驗證。" #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "{templatesCount} resume templates to choose from" -msgstr "{templatesCount} 個履歷模板可以選擇" +msgstr "{templatesCount} 個履歷範本可以選擇" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:141 msgid "{value, plural, one {Column} other {Columns}}" @@ -38,7 +38,7 @@ msgstr "<0>我花費了自己大量的業餘時間開發了 Reactive Resume, msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." msgstr "<0>我相信這隻應用程式還不夠完美,但希望它能夠與日俱進。<1>如果您在創建簡歷時遇到任何問題,或者有其他可以幫助您和其他人的想法讓使用者可以更輕鬆地創建履歷,請在 Repository 發送 issue 或將相關問題的 email 寄送給我。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." msgstr "<0>注意:使用 OpenAI API 即表示您承認並接受<1>使用條款和<2>隱私權政策OpenAI 概述。請注意,Reactive Resume 對任何不當或未經授權的服務使用不承擔任何責任,由此產生的任何影響或責任僅由使用者承擔。" @@ -48,11 +48,11 @@ msgstr "<0>社群花了大量時間編寫 Reactive Resume 的文檔,我相信 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "<0>目前已停用雙因素驗證。 您可以通過將驗證器應用程式添加到您的帳戶來啟用它。" +msgstr "<0>目前已停用雙因子驗證。 您可以透過驗證器應用程式的新增來啟用它。" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "<0>启用双重认证。每次登入時都會要求您輸入代碼。" +msgstr "<0>已啟用雙因子驗證。每次登入時,系統都會要求您輸入驗證碼。" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 @@ -62,20 +62,20 @@ msgstr "一個免費且開源的簡歷建立工具" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "一個免費且開源的簡歷生成器,簡化了創建、更新和分享您的簡歷的過程。" +msgstr "一個免費且開放原始碼的履歷建立工具,可簡化建立、更新及分享履歷的程序。" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 msgid "A link has been copied to your clipboard." -msgstr "链接已複製到您的剪貼簿。" +msgstr "連接已複製到您的剪貼簿。" #: apps/client/src/components/copyright.tsx:29 msgid "A passion project by <0>Amruth Pillai" -msgstr "后期老罗认为是一個优秀的項目,作者:<0>Amruth Pillai" +msgstr "一個由 <0>Amruth Pillai 的熱血專案" #: apps/client/src/pages/auth/forgot-password/page.tsx:57 msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "如果您提供的電子郵件地址存在帳戶,則密碼重設連結應該已傳送到您的收件匣。" +msgstr "如果您提供的電子郵件帳號存在,密碼重設連結應已發送到您的收件匣。" #: apps/client/src/services/errors/translate-error.ts:43 msgid "A resume with this slug already exists, please pick a different unique identifier." @@ -92,18 +92,18 @@ msgstr "A4" #. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json. #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:272 msgid "Accepts only {accept} files" -msgstr "僅接受 {accept} 文件" +msgstr "只接受 {accept} 檔案" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104 msgid "Account" msgstr "帳號" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175 msgid "Add a custom field" -msgstr "新增自訂字段" +msgstr "新增自訂欄位" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117 -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:164 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167 msgctxt "For example, add a new work experience, or add a new profile." msgid "Add a new item" msgstr "新增項目" @@ -115,11 +115,11 @@ msgstr "新增項目" #: apps/client/src/pages/builder/sidebars/left/index.tsx:146 #: apps/client/src/pages/builder/sidebars/left/index.tsx:263 msgid "Add a new section" -msgstr "新增一個新的部分" +msgstr "新增段落" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:271 msgid "Add New Page" -msgstr "添加新頁" +msgstr "新增頁面" #: apps/client/src/components/ai-actions.tsx:79 msgid "AI" @@ -131,7 +131,7 @@ msgstr "已經有一個帳戶?" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:146 msgid "An error occurred while validating the file." -msgstr "驗證文件時發生錯誤。" +msgstr "驗證檔案時發生錯誤。" #: apps/client/src/pages/home/sections/features/index.tsx:134 msgid "and many more..." @@ -139,32 +139,32 @@ msgstr "還有很多..." #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57 msgid "Anyone with the link can view and download the resume." -msgstr "任何有連結的人都可以查看並下載簡歷。" +msgstr "任何擁有連結的人都可以檢視和下載履歷。" #: apps/client/src/pages/builder/_components/toolbar.tsx:54 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30 msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters." -msgstr "任何人都可以使用此鏈接查看並下載履歷。在您的個人資料上或與招聘人員分享。" +msgstr "任何人都可以使用此鏈接檢視並下載履歷。在您的個人資料上或與招聘人員分享。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 msgid "Are you sure you want to delete this item?" -msgstr "您确定要删除此项目吗?" +msgstr "確定要刪除此項目嗎?" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:147 msgid "Are you sure you want to delete your resume?" -msgstr "您確定要刪除您的簡歷嗎?" +msgstr "您確定要刪除您的履歷嗎?" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125 msgid "Are you sure you want to disable two-factor authentication?" -msgstr "您確定要停用雙重身分驗證?" +msgstr "您確定要停用雙因子驗證?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 msgid "Are you sure you want to lock this resume?" -msgstr "您确定要锁定此简历吗?" +msgstr "您確定要鎖定這份履歷嗎?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 msgid "Are you sure you want to unlock this resume?" -msgstr "您确定要解鎖此簡歷嗎?" +msgstr "您確定要解鎖這份履歷嗎?" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Are you sure?" @@ -177,7 +177,7 @@ msgstr "學習領域" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:85 msgid "Aspect Ratio" -msgstr "長寬比" +msgstr "顯示比例" #: apps/client/src/pages/home/sections/features/index.tsx:51 msgid "Available in {languagesCount} languages" @@ -203,11 +203,11 @@ msgstr "備份代碼" #: apps/client/src/pages/auth/backup-otp/page.tsx:80 msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "備份代碼只能包含小寫字母或數字,並且必須正好是10個字符。" +msgstr "備份碼只能包含小寫字母或數字,且必須正好為 10 個字元。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:133 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132 msgid "Base URL" -msgstr "" +msgstr "網站網址:" #: apps/client/src/pages/builder/sidebars/left/index.tsx:55 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." @@ -220,11 +220,11 @@ msgstr "基本資料" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:197 msgid "Border" -msgstr "邊界" +msgstr "邊框" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:130 msgid "Border Radius" -msgstr "邊界半徑" +msgstr "邊框弧度" #: apps/client/src/pages/public/page.tsx:92 msgid "Built with" @@ -235,7 +235,7 @@ msgstr "使用建立" msgid "By the community, for the community." msgstr "來自社區,服務社區。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 @@ -262,11 +262,11 @@ msgstr "改變音調" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:184 msgid "Changed your mind about the name? Give it a new one." -msgstr "改變了對名稱的看法嗎?給它一個新名字。" +msgstr "改變了對名稱的想法嗎?給它一個新名字。" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 msgid "Check your email for the confirmation link to update your email address." -msgstr "檢查您的電子郵件以獲取確認鏈接,以更新您的電子郵件地址。" +msgstr "查看電子郵件中的確認連結,以更新您的電子郵件地址。" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:150 msgid "Circle" @@ -306,7 +306,7 @@ msgstr "確認新密碼" msgid "Continue" msgstr "繼續" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96 msgid "Copy" msgstr "複製" @@ -318,34 +318,34 @@ msgstr "複製連結到簡歷" msgid "Copy to Clipboard" msgstr "複製到剪貼簿" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242 msgid "Create" -msgstr "創建" +msgstr "建立" #: apps/client/src/pages/auth/register/page.tsx:64 #: apps/client/src/pages/auth/register/page.tsx:69 msgid "Create a new account" -msgstr "創建一個新帳戶" +msgstr "建立一個新帳戶" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 msgid "Create a new item" -msgstr "創建新項目" +msgstr "建立新項目" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:176 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:28 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:18 msgid "Create a new resume" -msgstr "創建新簡歷" +msgstr "建立新履歷" #: apps/client/src/pages/auth/login/page.tsx:65 msgctxt "This is a link to create a new account" msgid "Create one now" -msgstr "立即創建" +msgstr "立即建立" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:257 msgid "Create Sample Resume" -msgstr "創建履歷表範本" +msgstr "建立履歷表範本" #: apps/client/src/pages/home/sections/features/index.tsx:62 msgid "Custom resume sections" @@ -361,21 +361,21 @@ msgstr "可自訂的調色板" #: apps/client/src/pages/home/sections/features/index.tsx:61 msgid "Customisable layouts" -msgstr "" +msgstr "可自訂排版" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 msgid "Danger Zone" -msgstr "" +msgstr "危險操作" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:87 msgid "Dark" -msgstr "" +msgstr "暗色" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 msgid "Date" -msgstr "" +msgstr "日期" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:86 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110 @@ -383,20 +383,20 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 msgid "Date or Date Range" -msgstr "" +msgstr "日期或日期範圍" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172 msgid "Delete" -msgstr "" +msgstr "刪除" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Delete Account" -msgstr "" +msgstr "刪除帳號" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:72 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50 @@ -404,87 +404,87 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63 msgid "Description" -msgstr "" +msgstr "詳細資訊" #: apps/client/src/pages/home/sections/features/index.tsx:58 msgid "Design single/multi page resumes" -msgstr "" +msgstr "設計單頁/多頁履歷表" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:139 msgid "Disable" -msgstr "" +msgstr "停用" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160 msgid "Disable 2FA" -msgstr "" +msgstr "停用雙因子驗證(2FA)" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:304 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 msgid "Discard" -msgstr "" +msgstr "放棄" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105 msgid "Documentation" -msgstr "" +msgstr "文件" #: apps/client/src/pages/auth/login/page.tsx:62 msgid "Don't have an account?" -msgstr "" +msgstr "還沒有帳號嗎?" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83 msgid "Don't know where to begin? Hit the docs!" -msgstr "" +msgstr "不知道從何著手?點擊文件!" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107 msgid "Don't see your language? <0>Help translate the app." -msgstr "" +msgstr "沒有見到您的語言?<0>幫忙翻譯應用程式。" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40 msgid "Donate to Reactive Resume" -msgstr "" +msgstr "捐助 Reactive Resume" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" +msgstr "下載簡歷的 JSON 快照。此檔案可用於將來匯入您的履歷,甚至可以與他人分享以進行協作。" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" +msgstr "下載 PDF 簡歷。此檔案可用於列印您的履歷、傳送給招募人員或上傳至就業入口網站。" #: apps/client/src/pages/builder/_components/toolbar.tsx:158 #: apps/client/src/pages/public/page.tsx:104 msgid "Download PDF" -msgstr "" +msgstr "下載 PDF" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 msgid "Downloads" -msgstr "" +msgstr "下載" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156 msgid "Duplicate" -msgstr "" +msgstr "複製" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 msgid "Duplicate an existing item" -msgstr "" +msgstr "複製現有項目" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:178 msgid "Duplicate an existing resume" -msgstr "" +msgstr "複製現有簡歷" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92 msgid "Edit" msgstr "編輯" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:175 msgid "Effects" -msgstr "" +msgstr "效果" #: apps/client/src/pages/auth/forgot-password/page.tsx:82 #: apps/client/src/pages/auth/login/page.tsx:90 @@ -492,27 +492,27 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180 msgid "Email" -msgstr "郵箱" +msgstr "電子郵件" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169 msgid "Enable 2FA" -msgstr "啟用雙重驗證" +msgstr "啟用雙因子驗證" #: apps/client/src/pages/auth/reset-password/page.tsx:67 msgid "Enter a new password below, and make sure it's secure." -msgstr "" +msgstr "在下方輸入新密碼,並確保其安全性。" #: apps/client/src/pages/auth/backup-otp/page.tsx:59 msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" +msgstr "輸入您在啟用雙因子驗證時儲存的 10 個備份代碼之一。" #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63 msgid "Enter Phosphor Icon" -msgstr "" +msgstr "輸入螢光粉圖示" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" +msgstr "輸入驗證器應用程式中的 6 位數代碼,以驗證 2FA 設定是否正確。" #: apps/client/src/pages/auth/verify-otp/page.tsx:60 msgid "Enter the one-time password provided by your authenticator app below." @@ -520,7 +520,7 @@ msgstr "在下面輸入您的身份驗證器應用程式提供的一次性密碼 #: apps/client/src/pages/auth/forgot-password/page.tsx:70 msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" +msgstr "輸入您的電子郵件地址,如果帳戶存在,我們將向您發送重置密碼的網址。" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:285 msgid "Errors" @@ -541,11 +541,11 @@ msgstr "導出" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:257 msgid "File" -msgstr "文件" +msgstr "檔案" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:223 msgid "Filetype" -msgstr "文件類型" +msgstr "檔案類型" #: apps/client/src/pages/home/sections/hero/index.tsx:38 msgid "Finally," @@ -553,7 +553,7 @@ msgstr "最後," #: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" -msgstr "修復拼字和文法" +msgstr "修正拼字和語法" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:93 msgid "Font Family" @@ -569,13 +569,13 @@ msgstr "字體子集" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:120 msgid "Font Variants" -msgstr "字體變體" +msgstr "字型變體" #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:35 msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "例如,有關您將此簡歷發送給哪些公司的信息或職位描述的連結可以在此處註明。" +msgstr "例如,您將這份履歷寄給哪些公司的相關資訊,或是工作說明的連結,都可以在這裡記下來。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:186 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182 msgid "Forget" msgstr "略過" @@ -585,299 +585,299 @@ msgstr "忘記密碼?" #: apps/client/src/pages/auth/forgot-password/page.tsx:68 msgid "Forgot your password?" -msgstr "" +msgstr "忘記密碼?" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 msgid "Format" -msgstr "" +msgstr "格式" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49 msgid "Found a bug, or have an idea for a new feature?" -msgstr "" +msgstr "發現錯誤或有新功能的想法?" #: apps/client/src/pages/home/sections/features/index.tsx:46 msgid "Free, forever" -msgstr "" +msgstr "永久免費" #: apps/client/src/components/ai-actions.tsx:121 #: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" -msgstr "" +msgstr "友善" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 msgid "Full Name" -msgstr "" +msgstr "全名" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:200 msgid "Generate a random title for your resume" -msgstr "" +msgstr "隨機產生簡歷標題" #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:32 msgid "Get Started" -msgstr "" +msgstr "開始使用" #: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" -msgstr "" +msgstr "GitHub" #: apps/client/src/pages/home/sections/statistics/index.tsx:12 msgid "GitHub Stars" -msgstr "" +msgstr "GitHub 點讚數" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:185 msgid "Give your old resume a new name." -msgstr "" +msgstr "為您的舊履歷起個新名字。" #: apps/client/src/pages/auth/verify-email/page.tsx:67 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 msgid "Go to Dashboard" -msgstr "" +msgstr "前往儀表板" #: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" -msgstr "" +msgstr "Google" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:208 msgid "Grayscale" -msgstr "" +msgstr "灰階" #: apps/client/src/pages/dashboard/resumes/page.tsx:43 msgid "Grid" -msgstr "" +msgstr "網格" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43 msgid "Headline" -msgstr "" +msgstr "標題" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:106 msgid "Here, you can update your account information such as your profile picture, name and username." -msgstr "" +msgstr "在這裡,您可以更新您的帳戶資訊,例如個人檔案圖片、姓名和使用者名稱。" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:68 msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" +msgstr "在這裡,您可以更新個人資料,根據個人喜好定制和個人化使用體驗。" -#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78 -#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92 +#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186 msgid "Hidden" -msgstr "" +msgstr "隱藏" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:105 msgid "Hide" -msgstr "" +msgstr "隱藏" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:178 msgid "Hide Icons" -msgstr "" +msgstr "隱藏圖示" #: apps/client/src/pages/auth/login/page.tsx:110 #: apps/client/src/pages/auth/register/page.tsx:166 #: apps/client/src/pages/auth/reset-password/page.tsx:88 msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" +msgstr "按住 <0>Ctrl 暫時顯示您的密碼。" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:99 msgid "Horizontal" -msgstr "" +msgstr "橫向" #: apps/client/src/pages/home/sections/features/index.tsx:67 msgid "Host your resume publicly" -msgstr "" +msgstr "公開您的履歷" #: apps/client/src/pages/home/sections/testimonials/index.tsx:70 msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." -msgstr "" +msgstr "我總是很喜歡聽到 Reactive Resume 使用者的回饋或支援。以下是我收到的一些訊息。如果您有任何回饋,請隨時寫電子郵件到 <0>{email}." -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83 #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53 msgid "Icon" -msgstr "" +msgstr "頭像" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:47 msgid "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form." -msgstr "" +msgstr "如果此應用程式對您的求職有幫助,請透過 <0>聯絡表單 告訴我。" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:128 msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" +msgstr "如果停用雙因子驗證,登入時將不再需要輸入驗證碼。" #: apps/client/src/pages/home/sections/support/index.tsx:59 msgid "If you're multilingual, we'd love your help in bringing the app to more languages and communities. Don't worry if you don't see your language on the list - just give me a shout-out on GitHub, and I'll make sure to include it. Ready to get started? Jump into translation over at Crowdin by clicking the link below." -msgstr "" +msgstr "如果您使用多種語言,我們希望您能協助我們將應用程式帶到更多語言和社群中。如果您沒有在清單上看到您的語言,也不用擔心,只要在 GitHub 上喊我一聲,我就會確保把您的語言納入其中。準備好開始了嗎?請點選以下連結,加入 Crowdin 的翻譯工作。" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:311 msgid "Import" -msgstr "" +msgstr "匯入" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:210 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:28 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:17 msgid "Import an existing resume" -msgstr "" +msgstr "匯入現有履歷" #: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" -msgstr "" +msgstr "改善寫作" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:188 msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" +msgstr "如果您無法掃描此 QR 代碼,也可以將此連結複製貼到您的驗證器應用程式中。" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70 msgid "In this section, you can change your password and enable/disable two-factor authentication." -msgstr "" +msgstr "在這部份,您可以變更密碼和啟用/停用雙因子驗證。" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:64 msgid "In this section, you can delete your account and all the data associated to your user, but please keep in mind that <0>this action is irreversible." -msgstr "" +msgstr "在這部分,您可以刪除您的帳戶以及與您的使用者相關的所有資料,但請記住 <0>此動作是不可逆的。" #: apps/client/src/pages/builder/sidebars/right/index.tsx:125 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117 msgid "Information" -msgstr "" +msgstr "詳細資訊" #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 msgid "Institution" -msgstr "" +msgstr "機構" #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 msgid "Issuer" -msgstr "" +msgstr "發行者" #: apps/client/src/services/errors/translate-error.ts:7 msgid "It doesn't look like a user exists with the credentials you provided." -msgstr "" +msgstr "似乎沒有任何使用者與你提供的憑證資訊相符。" #: apps/client/src/services/errors/translate-error.ts:37 msgid "It looks like the backup code you provided is invalid or used. Please try again." -msgstr "" +msgstr "您提供的備份代碼似乎無效或已使用。請再試一次。" #: apps/client/src/services/errors/translate-error.ts:19 msgid "It looks like the reset token you provided is invalid. Please try restarting the password reset process again." -msgstr "" +msgstr "您提供的重置代碼似乎無效。請嘗試重新啟動密碼重置程序。" #: apps/client/src/services/errors/translate-error.ts:46 msgid "It looks like the resume you're looking for doesn't exist." -msgstr "" +msgstr "看起來您要找的履歷並不存在。" #: apps/client/src/services/errors/translate-error.ts:34 msgid "It looks like the two-factor authentication code you provided is invalid. Please try again." -msgstr "" +msgstr "您提供的雙因子驗證碼似乎無效。請再試一次。" #: apps/client/src/services/errors/translate-error.ts:22 msgid "It looks like the verification token you provided is invalid. Please try restarting the verification process again." -msgstr "" +msgstr "您提供的驗證代碼似乎無效。請嘗試重新啟動驗證程序。" #: apps/client/src/services/errors/translate-error.ts:25 msgid "It looks like your email address has already been verified." -msgstr "" +msgstr "看來您的電子郵件已通過驗證。" #: apps/client/src/pages/auth/register/page.tsx:101 msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." msgid "John Doe" -msgstr "" +msgstr "無名氏" #: apps/client/src/pages/auth/register/page.tsx:122 msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." msgid "john.doe" -msgstr "" +msgstr "john.doe" #: apps/client/src/pages/auth/register/page.tsx:143 msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish." msgid "john.doe@example.com" -msgstr "" +msgstr "john.doe@example.com" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 msgid "JSON" msgstr "JSON" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109 msgid "Keywords" -msgstr "" +msgstr "關鍵詞" #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:41 #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:51 msgid "Label" -msgstr "" +msgstr "標籤" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:101 msgid "Language" msgstr "語言" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139 msgid "Last updated {lastUpdated}" -msgstr "" +msgstr "最後更新 {lastUpdated}" #: apps/client/src/pages/builder/sidebars/right/index.tsx:69 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 msgid "Layout" -msgstr "" +msgstr "版面配置" #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:38 msgid "Learn more" -msgstr "" +msgstr "瞭解更多" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 msgid "Letter" -msgstr "" +msgstr "信件" #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77 msgid "Level" -msgstr "" +msgstr "等級" #: apps/client/src/components/copyright.tsx:16 msgid "Licensed under <0>MIT" -msgstr "" +msgstr "以 <0>MIT 授權" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:86 msgid "Light" -msgstr "" +msgstr "亮色" #: apps/client/src/pages/home/sections/features/index.tsx:69 msgid "Light or dark theme" -msgstr "" +msgstr "亮色或暗色主題" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:151 msgid "Line Height" -msgstr "" +msgstr "線條高度" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:33 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:22 msgid "LinkedIn, JSON Resume, etc." -msgstr "" +msgstr "LinkedIn、JSON Resume 等。" #: apps/client/src/pages/dashboard/resumes/page.tsx:47 msgid "List" -msgstr "" +msgstr "列表" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:100 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93 msgid "Location" -msgstr "" +msgstr "地點" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166 msgid "Lock" -msgstr "" +msgstr "鎖定" #: apps/client/src/pages/home/sections/features/index.tsx:64 msgid "Lock a resume to prevent editing" -msgstr "" +msgstr "鎖定履歷以防止編輯" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" +msgstr "鎖定履歷可防止任何進一步的變更。當您已經將簡歷分享給他人,而您不想意外地對其進行任何變更時,這將非常有用。" #: apps/client/src/components/user-options.tsx:38 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 @@ -886,45 +886,45 @@ msgstr "登出" #: apps/client/src/pages/auth/verify-otp/page.tsx:64 msgid "Lost your device?" -msgstr "" +msgstr "遺失裝置?" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:257 msgid "Main" -msgstr "" +msgstr "主要" #: apps/client/src/pages/home/sections/features/index.tsx:59 msgid "Manage multiple resumes" -msgstr "" +msgstr "管理多份履歷" #. The month and year should be uniform across all languages. #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 msgid "March 2023" -msgstr "" +msgstr "2023 年 3 月" #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 msgid "March 2023 - Present" -msgstr "" +msgstr "2023 年 3 月至今" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 msgid "Margin" -msgstr "" +msgstr "邊界" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:159 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158 msgid "Max Tokens" -msgstr "" +msgstr "最大 Token" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "MIT License" -msgstr "" +msgstr "MIT 授權" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:146 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145 msgid "Model" -msgstr "" +msgstr "模型" #: apps/client/src/pages/auth/register/page.tsx:98 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:58 @@ -934,19 +934,19 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49 -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" -msgstr "" +msgstr "名稱" #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 msgctxt "Name of the Certification" msgid "Name" -msgstr "" +msgstr "名稱" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40 msgid "Network" -msgstr "" +msgstr "網路" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 msgid "New Password" @@ -954,83 +954,82 @@ msgstr "新密碼" #: apps/client/src/components/locale-combobox.tsx:45 msgid "No results found" -msgstr "" +msgstr "找不到相符的結果" #: apps/client/src/pages/home/sections/features/index.tsx:49 msgid "No user tracking or advertising" -msgstr "" +msgstr "無使用者追蹤或廣告" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:133 msgid "Note: This will make your account less secure." -msgstr "" +msgstr "注意:這會降低您帳戶的安全性。" #: apps/client/src/pages/builder/sidebars/right/index.tsx:118 #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 msgid "Notes" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 -msgid "Ollama Integration" -msgstr "" +msgstr "注意事項" #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" -msgstr "" +msgstr "一次性密碼" #: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:29 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:190 #: apps/client/src/services/resume/print.tsx:26 msgid "Oops, the server returned an error." -msgstr "" +msgstr "哎呀,伺服器傳回錯誤。" -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148 msgid "Open" -msgstr "" +msgstr "開啟" #: apps/client/src/pages/home/sections/features/index.tsx:47 msgid "Open Source" -msgstr "" +msgstr "開放原始碼" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120 -msgid "OpenAI / Ollama API Key" -msgstr "" - -#: apps/client/src/services/openai/change-tone.ts:34 -#: apps/client/src/services/openai/fix-grammar.ts:32 -#: apps/client/src/services/openai/improve-writing.ts:32 +#: apps/client/src/services/openai/change-tone.ts:35 +#: apps/client/src/services/openai/fix-grammar.ts:33 +#: apps/client/src/services/openai/improve-writing.ts:33 msgid "OpenAI did not return any choices for your text." -msgstr "" +msgstr "OpenAI 沒有為您的文字傳回任何選項。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:77 #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "OpenAI Integration" +msgstr "OpenAI 整合" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119 +msgid "OpenAI/Ollama API Key" +msgstr "" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +msgid "OpenAI/Ollama Integration" msgstr "" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168 msgid "Options" -msgstr "" +msgstr "選項" #: apps/client/src/pages/auth/layout.tsx:47 msgctxt "The user can either login with email/password, or continue with GitHub or Google." msgid "or continue with" -msgstr "" +msgstr "或繼續使用" #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 msgid "Organization" -msgstr "" +msgstr "組織" #: apps/client/src/pages/builder/sidebars/right/index.tsx:90 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 msgid "Page" -msgstr "" +msgstr "頁" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 msgid "Page {0}" -msgstr "" +msgstr "第 {0} 頁" #: apps/client/src/pages/auth/login/page.tsx:105 #: apps/client/src/pages/auth/register/page.tsx:161 @@ -1045,88 +1044,88 @@ msgstr "PDF" #: apps/client/src/pages/home/sections/features/index.tsx:63 msgid "Personal notes for each resume" -msgstr "" +msgstr "每份履歷的個人備註" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81 msgid "Phone" -msgstr "" +msgstr "電話" #: apps/client/src/pages/auth/layout.tsx:76 msgid "Photograph by Patrick Tomasso" -msgstr "" +msgstr "攝影師 Patrick Tomasso" #: apps/client/src/pages/home/sections/features/index.tsx:66 msgid "Pick any font from Google Fonts" -msgstr "" +msgstr "從 Google Fonts 挑選任何字型" #: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:69 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 msgid "Picture" -msgstr "" +msgstr "圖片" #: apps/client/src/pages/auth/verify-email/page.tsx:59 msgid "Please note that this step is completely optional." -msgstr "" +msgstr "請注意,這一步驟是完全可選的。" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:227 msgid "Please select a file type" -msgstr "" +msgstr "請選擇檔案類型" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:228 msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" +msgstr "請將您的備份代碼存放在安全的地方。您可以使用其中一個一次性使用代碼登入,以防萬一遺失驗證器應用程式的存取權。" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:105 msgid "Portrait" -msgstr "" +msgstr "肖像" #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 msgctxt "Position held at a company, for example, Software Engineer" msgid "Position" -msgstr "" +msgstr "職位" #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 msgid "Position" -msgstr "" +msgstr "職位" #: apps/client/src/pages/home/sections/features/index.tsx:96 msgid "Powered by" -msgstr "" +msgstr "提供者為" -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94 msgid "Powered by <0>Simple Icons" -msgstr "" +msgstr "由 <0> 圖標 提供" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 msgid "Primary Color" -msgstr "" +msgstr "主要顏色" #: apps/client/src/pages/home/components/footer.tsx:50 #: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10 #: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23 msgid "Privacy Policy" -msgstr "" +msgstr "隱私政策" #: apps/client/src/components/ai-actions.tsx:109 #: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" -msgstr "" +msgstr "專業" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:66 msgid "Profile" -msgstr "" +msgstr "個人設置" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 msgid "Public" -msgstr "" +msgstr "公開" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 msgid "Publisher" -msgstr "" +msgstr "發行者" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69 msgid "Raise an issue" -msgstr "" +msgstr "提出問題" #: apps/client/src/components/copyright.tsx:35 #: apps/client/src/pages/auth/backup-otp/page.tsx:52 @@ -1145,264 +1144,264 @@ msgstr "" #: apps/client/src/pages/public/page.tsx:73 #: apps/client/src/pages/public/page.tsx:94 msgid "Reactive Resume" -msgstr "" +msgstr "Reactive Resume" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 msgid "Reactive Resume has helped people land jobs at these great companies:" -msgstr "" +msgstr "Reactive Resume 已經幫助許多人在這些很棒的公司找到工作:" #: apps/client/src/pages/home/sections/support/index.tsx:12 msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe." -msgstr "" +msgstr "Reactive Resume 是一個免費且開放原始碼的專案,主要由我親手打造,非常感謝您的支持。如果您有貢獻的意願,也只有在您負擔得起的情況下,請考慮透過任何一個列出的平台捐款。此外,透過 Open Collective 對 Reactive Resume 的捐款是免稅的,因為該專案是由 Open Collective Europe 負責財務管理。" #: apps/client/src/pages/home/sections/features/index.tsx:107 msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection." -msgstr "" +msgstr "Reactive Resume 是一個經過 3 年多努力的熱情專案,隨著這個過程誕生了一系列反覆琢磨的想法和功能,已經 (趨近) 完美。" #: apps/client/src/pages/home/sections/contributors/index.tsx:22 msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience." -msgstr "" +msgstr "Reactive Resume 的茁壯成長有賴於其充滿活力的社群。這個專案的進展要歸功於許多投入時間與技術的個人。以下,我們讚揚在 GitHub 上強化其功能的程式設計師,以及在 Crowdin 上進行翻譯的語言學家,他們的努力讓更多人可以使用 Reactive Resume。" #: apps/client/src/pages/builder/_components/toolbar.tsx:79 msgid "Redo" -msgstr "" +msgstr "重做" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156 msgid "Remove" -msgstr "" +msgstr "刪除" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:241 msgid "Remove Page" -msgstr "" +msgstr "刪除頁面" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152 msgid "Rename" -msgstr "" +msgstr "重新命名" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198 msgid "Resend email confirmation link" -msgstr "" +msgstr "重新傳送電子郵件確認連結" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:151 msgid "Reset" -msgstr "" +msgstr "重置" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 msgid "Reset Layout" -msgstr "" +msgstr "重設版面配置" #: apps/client/src/pages/auth/reset-password/page.tsx:60 #: apps/client/src/pages/auth/reset-password/page.tsx:65 msgid "Reset your password" -msgstr "" +msgstr "重置密碼" #: apps/client/src/pages/builder/_components/toolbar.tsx:106 msgid "Reset Zoom" -msgstr "" +msgstr "重設縮放" #: apps/client/src/pages/dashboard/_components/sidebar.tsx:86 #: apps/client/src/pages/dashboard/resumes/page.tsx:20 #: apps/client/src/pages/dashboard/resumes/page.tsx:37 msgid "Resumes" -msgstr "" +msgstr "履歷表" #: apps/client/src/pages/home/sections/statistics/index.tsx:14 msgid "Resumes Generated" -msgstr "" +msgstr "生成的履歷表" #: apps/client/src/pages/home/sections/features/index.tsx:105 msgid "Rich in features, not in pricing." -msgstr "" +msgstr "功能豐富,價格卻不便宜。" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:144 msgid "Rounded" -msgstr "" +msgstr "圓角" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131 msgid "Save Changes" -msgstr "" +msgstr "儲存變更" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Save Locally" -msgstr "" +msgstr "儲存至本機" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:180 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176 msgid "Saved" -msgstr "" +msgstr "已儲存" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" +msgstr "使用驗證器應用程式掃描下面的 QR 代碼,在您的帳戶上設定 2FA。" #. Score or honors for the degree, for example, CGPA or magna cum laude #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92 msgid "Score" -msgstr "" +msgstr "評分" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:97 msgid "Search for a font family" -msgstr "" +msgstr "搜尋字型系列" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:112 msgid "Search for a font subset" -msgstr "" +msgstr "搜尋字型的部分字元集合" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:125 msgid "Search for a font variant" -msgstr "" +msgstr "搜尋字型變體" #: apps/client/src/components/locale-combobox.tsx:41 msgid "Search for a language" -msgstr "" +msgstr "搜尋語言" #: apps/client/src/pages/home/sections/features/index.tsx:56 msgid "Secure with two-factor authentication" -msgstr "" +msgstr "透過雙因子驗證確保安全" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 msgid "Security" -msgstr "" +msgstr "安全性" #: apps/client/src/pages/home/sections/features/index.tsx:50 msgid "Self-host with Docker" -msgstr "" +msgstr "使用 Docker 自行託管" #: apps/client/src/pages/auth/forgot-password/page.tsx:104 msgid "Send Email" -msgstr "" +msgstr "傳送電子郵件" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74 msgid "Send me a message" -msgstr "" +msgstr "傳送訊息給我" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:96 msgid "Separate Links" -msgstr "" +msgstr "獨立連結" #: apps/client/src/components/user-options.tsx:32 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 #: apps/client/src/pages/dashboard/settings/page.tsx:16 #: apps/client/src/pages/dashboard/settings/page.tsx:26 msgid "Settings" -msgstr "" +msgstr "設定" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159 msgid "Setup two-factor authentication on your account" -msgstr "" +msgstr "在您的帳戶上設定雙因子驗證" #: apps/client/src/pages/builder/sidebars/right/index.tsx:97 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 msgid "Sharing" -msgstr "" +msgstr "分享" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:105 msgid "Show" -msgstr "" +msgstr "顯示" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 msgid "Show Break Line" -msgstr "" +msgstr "顯示分隔線" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 msgid "Show Page Numbers" -msgstr "" +msgstr "顯示頁碼" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:258 msgid "Sidebar" -msgstr "" +msgstr "側邊欄" #: apps/client/src/pages/auth/backup-otp/page.tsx:102 #: apps/client/src/pages/auth/login/page.tsx:122 #: apps/client/src/pages/auth/verify-otp/page.tsx:92 msgid "Sign in" -msgstr "" +msgstr "登入" #: apps/client/src/pages/auth/register/page.tsx:74 msgid "Sign in now" -msgstr "" +msgstr "立即登入" #: apps/client/src/pages/auth/login/page.tsx:55 #: apps/client/src/pages/auth/login/page.tsx:60 msgid "Sign in to your account" -msgstr "" +msgstr "登入您的帳戶" #: apps/client/src/pages/home/sections/features/index.tsx:55 msgid "Sign in with Email" -msgstr "" +msgstr "用電子郵件登入" #: apps/client/src/pages/home/sections/features/index.tsx:53 msgid "Sign in with GitHub" -msgstr "" +msgstr "用 GitHub 帳號登入" #: apps/client/src/pages/home/sections/features/index.tsx:54 msgid "Sign in with Google" -msgstr "" +msgstr "使用 Google 帳號登入" #: apps/client/src/pages/auth/register/page.tsx:177 msgid "Sign up" -msgstr "" +msgstr "註冊" #: apps/client/src/pages/auth/login/page.tsx:74 msgid "Signing in via email is currently disabled by the administrator." -msgstr "" +msgstr "目前管理員已停用透過電子郵件登入。" #: apps/client/src/pages/auth/register/page.tsx:82 msgid "Signups are currently disabled by the administrator." -msgstr "" +msgstr "目前管理員已停用註冊功能。" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:71 msgid "Size (in px)" -msgstr "" +msgstr "尺寸 (以 px 為單位)" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:226 msgid "Slug" -msgstr "" +msgstr "標示碼" #: apps/client/src/services/errors/translate-error.ts:55 msgid "Something went wrong while grabbing a preview your resume. Please try again later or raise an issue on GitHub." -msgstr "" +msgstr "在抓取預覽您的簡歷時出了問題。請稍後再試,或在 GitHub 上提出問題。" #: apps/client/src/services/errors/translate-error.ts:52 msgid "Something went wrong while printing your resume. Please try again later or raise an issue on GitHub." -msgstr "" +msgstr "列印您的履歷時出了問題。請稍後再試,或在 GitHub 上提出問題。" #: apps/client/src/services/errors/translate-error.ts:58 msgid "Something went wrong while processing your request. Please try again later or raise an issue on GitHub." -msgstr "" +msgstr "在處理您的請求時出了問題。請稍後再試,或在 GitHub 上提出問題。" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:93 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:138 msgid "Square" -msgstr "" +msgstr "方形" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:33 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:23 msgid "Start building from scratch" -msgstr "" +msgstr "從零開始建立" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:183 msgid "Start building your resume by giving it a name." -msgstr "" +msgstr "為您的履歷命名,開始建立您的履歷。" #: apps/client/src/pages/builder/sidebars/right/index.tsx:104 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 msgid "Statistics" -msgstr "" +msgstr "統計資料" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 msgid "Statistics are available only for public resumes." -msgstr "" +msgstr "統計資料只適用於公開履歷。" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:162 msgid "Store your backup codes securely" -msgstr "" +msgstr "安全儲存您的備份代碼" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 @@ -1414,321 +1413,318 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 msgid "Summary" -msgstr "" +msgstr "摘要" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 msgid "Support the app by donating what you can!" -msgstr "" +msgstr "請盡您所能捐款支持此應用程式!" #: apps/client/src/pages/home/sections/support/index.tsx:9 msgid "Supporting Reactive Resume" -msgstr "" +msgstr "支持 Reactive Resume" #: apps/client/src/pages/home/sections/features/index.tsx:65 msgid "Supports A4/Letter page formats" -msgstr "" +msgstr "支援 A4/Letter 頁面格式" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85 msgid "System" -msgstr "" +msgstr "系統" #: apps/client/src/pages/builder/sidebars/right/index.tsx:62 #: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19 msgid "Template" -msgstr "" +msgstr "範本" #: apps/client/src/pages/home/sections/templates/index.tsx:9 msgid "Templates" -msgstr "" +msgstr "範本" #: apps/client/src/pages/home/sections/testimonials/index.tsx:68 msgid "Testimonials" -msgstr "" +msgstr "用戶評價" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 msgid "Text Color" -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:26 -msgid "That doesn't look like a valid OpenAI API key." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:30 -msgid "That doesn't look like a valid URL" -msgstr "" +msgstr "字型色彩" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." -msgstr "" +msgstr "您輸入的密碼不符。" #: apps/client/src/services/errors/translate-error.ts:49 msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it." -msgstr "" +msgstr "您要更新的履歷已鎖定,若要對其進行任何變更,請解除鎖定。" #: apps/client/src/pages/builder/sidebars/right/index.tsx:83 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79 msgid "Theme" -msgstr "" +msgstr "佈景主題" #: apps/client/src/services/errors/translate-error.ts:40 msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." -msgstr "" +msgstr "連接瀏覽器時發生錯誤。請確定 'chrome' 正在執行並且可以連線。" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" +msgstr "按一下浮動工具列上的撤消按鈕,即可還原此動作。" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:149 msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" +msgstr "此動作無法撤銷。這將永久刪除您的履歷,且無法復原。" #: apps/client/src/services/errors/translate-error.ts:16 msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider." -msgstr "" +msgstr "此電子郵件地址與 OAuth 帳戶相關聯。請使用您的 OAuth 供應商登入。" #: apps/client/src/pages/builder/_components/header.tsx:57 msgid "This resume is locked, please unlock to make further changes." -msgstr "" +msgstr "此履歷表已鎖定,請解除鎖定以進一步變更。" #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" +msgstr "這部分專門用於你在這份履歷上做個人筆記。這裡的內容屬於私密,不會與其他人分享。" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:214 msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" +msgstr "祕訣: 您可以參考您申請的職位為履歷命名。" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 msgctxt "Name of the Award" msgid "Title" -msgstr "" +msgstr "職稱" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:194 msgid "Title" -msgstr "" +msgstr "職稱" #: apps/client/src/pages/builder/_components/toolbar.tsx:120 msgid "Toggle Page Break Line" -msgstr "" +msgstr "切換分頁線" #: apps/client/src/pages/builder/_components/toolbar.tsx:132 msgid "Toggle Page Numbers" -msgstr "" +msgstr "切換頁碼" #: apps/client/src/pages/home/sections/features/index.tsx:68 msgid "Track views and downloads" -msgstr "" +msgstr "追蹤檢視與下載" #: apps/client/src/pages/auth/verify-otp/page.tsx:52 #: apps/client/src/pages/auth/verify-otp/page.tsx:57 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 msgid "Two-Factor Authentication" -msgstr "" +msgstr "雙因子驗證" #: apps/client/src/services/errors/translate-error.ts:31 msgid "Two-factor authentication is already enabled for this account." -msgstr "" +msgstr "此帳戶已啟用雙因子驗證。" #: apps/client/src/services/errors/translate-error.ts:28 msgid "Two-factor authentication is not enabled for this account." -msgstr "" +msgstr "此帳戶未啟用雙因子驗證。" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 msgid "Type <0>delete to confirm deleting your account." -msgstr "" +msgstr "輸入 <0>delete 確認刪除您的帳戶。" #. For example, Bachelor's Degree or Master's Degree #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 msgid "Type of Study" -msgstr "" +msgstr "研究類型" #: apps/client/src/pages/builder/sidebars/right/index.tsx:76 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:65 msgid "Typography" -msgstr "" +msgstr "字體樣式" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:189 msgid "Underline Links" -msgstr "" +msgstr "底線超連結" #: apps/client/src/pages/builder/_components/toolbar.tsx:66 msgid "Undo" -msgstr "" +msgstr "復原" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 -#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103 +#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161 msgid "Unlock" -msgstr "" +msgstr "解鎖" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" +msgstr "解除鎖定履歷可讓您再次對其進行變更。" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191 msgid "Unverified" -msgstr "" +msgstr "未驗證" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 msgid "Update an existing item" -msgstr "" +msgstr "更新現有項目" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:177 msgid "Update an existing resume" -msgstr "" +msgstr "更新現有履歷" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:214 msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" +msgstr "從一個可接受的來源上傳檔案,以解析現有資料,並將其匯入 Reactive Resume 以方便編輯。" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 msgid "URL" -msgstr "" +msgstr "URL" #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:60 msgid "URL must start with https://" -msgstr "" +msgstr "URL 必須以 https:// 開頭" #: apps/client/src/pages/auth/backup-otp/page.tsx:52 #: apps/client/src/pages/auth/backup-otp/page.tsx:57 msgid "Use your backup code" -msgstr "" +msgstr "使用您的備份代碼" #: apps/client/src/services/errors/translate-error.ts:13 msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub." -msgstr "" +msgstr "使用者沒有相關的 'secrets' 記錄。請在 GitHub 上報告此問題。" #: apps/client/src/pages/auth/register/page.tsx:119 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" -msgstr "" +msgstr "使用者名稱" #: apps/client/src/pages/home/sections/statistics/index.tsx:13 msgid "Users Signed Up" -msgstr "" +msgstr "已註冊使用者" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:298 msgid "Validate" -msgstr "" +msgstr "確認" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:316 msgid "Validated" -msgstr "" +msgstr "已驗證" -#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81 +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97 msgid "Value" -msgstr "" +msgstr "數值" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191 msgid "Verified" -msgstr "" +msgstr "已驗證" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:161 msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" +msgstr "確認已正確設定雙因子驗證" #: apps/client/src/pages/auth/verify-email/page.tsx:43 #: apps/client/src/pages/auth/verify-email/page.tsx:48 msgid "Verify your email address" -msgstr "" +msgstr "確認你的電子郵件地址" #: apps/client/src/pages/home/sections/hero/index.tsx:26 msgid "Version 4" -msgstr "" +msgstr "版本 4" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 msgid "Views" -msgstr "" +msgstr "查閱" -#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86 +#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87 msgid "Visible" +msgstr "可見的" + +#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70 +msgid "Visit <0>Phosphor Icons for a list of available icons" msgstr "" #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" +msgstr "我們驗證您的電子郵件地址,只是為了確保您忘記密碼時,我們可以寄送密碼重設連結給您。" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114 #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100 -#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80 +#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69 msgid "Website" -msgstr "" +msgstr "個人網站" #: apps/client/src/pages/home/sections/hero/index.tsx:32 msgid "What's new in the latest version" -msgstr "" +msgstr "最新版本的新功能" -#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157 +#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68 -#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137 +#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114 msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" +msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。" #: apps/client/src/pages/auth/login/page.tsx:94 msgid "You can also enter your username." +msgstr "您也可以輸入您的使用者名稱。" + +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103 +msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference." msgstr "" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:105 -msgid "You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens." -msgstr "" - -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" +msgstr "您可以利用 OpenAI API 協助您生成內容,或在撰寫履歷時改善您的文筆。" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" +msgstr "您可以追蹤履歷的檢視次數,或透過啟用公開分享功能追蹤有多少人下載了履歷。" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:85 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" +msgstr "您可以選擇 <0>取得自己的 OpenAI API 金鑰 。此金鑰可讓您隨心所欲地使用 API。或者,如果您想要完全停用 Reactive Resume 中的 AI 功能,您可以直接從設定中移除金鑰。" #: apps/client/src/pages/auth/verify-email/page.tsx:50 msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" +msgstr "您應該已經收到一封來自 <0>Reactive Resume 的電子郵件,其中附有驗證您帳戶的連結。" #: apps/client/src/pages/auth/forgot-password/page.tsx:49 #: apps/client/src/pages/auth/forgot-password/page.tsx:54 msgid "You've got mail!" -msgstr "" +msgstr "你有新郵件" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" +msgstr "您的帳戶和所有資料已成功刪除。再見" -#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:195 +#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" +msgstr "您的 API 密鑰會安全地儲存在瀏覽器的本機儲存空間中,並且僅會在透過官方 SDK 向 OpenAI 提出請求時使用。請放心,除了與 OpenAI 的服務互動時,您的金鑰不會傳送到任何外部伺服器。" #: apps/client/src/pages/auth/verify-email/page.tsx:28 msgid "Your email address has been verified successfully." -msgstr "" +msgstr "您的電子郵件地址已成功驗證。" #: apps/client/src/services/openai/client.ts:11 msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" +msgstr "您的 OpenAI API 密鑰尚未設定。請前往您的帳戶設定啟用 OpenAI 整合。" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 msgid "Your password has been updated successfully." -msgstr "" +msgstr "您的密碼已成功更新。" #: apps/client/src/pages/builder/_components/toolbar.tsx:94 msgid "Zoom In" -msgstr "" +msgstr "放大" #: apps/client/src/pages/builder/_components/toolbar.tsx:100 msgid "Zoom Out" -msgstr "" +msgstr "缩小" + diff --git a/apps/client/src/pages/auth/backup-otp/page.tsx b/apps/client/src/pages/auth/backup-otp/page.tsx index 9730a251..606f7602 100644 --- a/apps/client/src/pages/auth/backup-otp/page.tsx +++ b/apps/client/src/pages/auth/backup-otp/page.tsx @@ -77,6 +77,7 @@ export const BackupOtpPage = () => { diff --git a/apps/client/src/pages/auth/forgot-password/page.tsx b/apps/client/src/pages/auth/forgot-password/page.tsx index 6d34edd1..ebad0d6d 100644 --- a/apps/client/src/pages/auth/forgot-password/page.tsx +++ b/apps/client/src/pages/auth/forgot-password/page.tsx @@ -81,7 +81,7 @@ export const ForgotPasswordPage = () => { {t`Email`} - + diff --git a/apps/client/src/pages/auth/login/page.tsx b/apps/client/src/pages/auth/login/page.tsx index 557e7109..708895aa 100644 --- a/apps/client/src/pages/auth/login/page.tsx +++ b/apps/client/src/pages/auth/login/page.tsx @@ -89,7 +89,12 @@ export const LoginPage = () => { {t`Email`} - + {t`You can also enter your username.`} @@ -104,7 +109,7 @@ export const LoginPage = () => { {t`Password`} - + diff --git a/apps/client/src/pages/auth/register/page.tsx b/apps/client/src/pages/auth/register/page.tsx index f5a8dc32..5e7fe1fb 100644 --- a/apps/client/src/pages/auth/register/page.tsx +++ b/apps/client/src/pages/auth/register/page.tsx @@ -119,6 +119,7 @@ export const RegisterPage = () => { {t`Username`} { {t`Email`} { {t`Password`} - + diff --git a/apps/client/src/pages/auth/verify-otp/page.tsx b/apps/client/src/pages/auth/verify-otp/page.tsx index bbae6ca5..2ad06bcf 100644 --- a/apps/client/src/pages/auth/verify-otp/page.tsx +++ b/apps/client/src/pages/auth/verify-otp/page.tsx @@ -81,7 +81,7 @@ export const VerifyOtpPage = () => { {t`One-Time Password`} - + diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx index 969d14c0..04973795 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx @@ -104,7 +104,13 @@ export const AwardsDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx index 99004fa2..93c30e28 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx @@ -98,7 +98,13 @@ export const CertificationsDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx index 6485e38e..e47fc459 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx @@ -131,7 +131,13 @@ export const CustomSectionDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx index bf301adb..85550053 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx @@ -141,7 +141,13 @@ export const EducationDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx index eb737ece..ec522b95 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx @@ -117,7 +117,13 @@ export const ExperienceDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx index b80d7953..5176ad33 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx @@ -74,10 +74,10 @@ export const LanguagesDialog = () => { }} /> - {field.value === 0 ? ( - {t`Hidden`} - ) : ( + {field.value > 0 ? ( {field.value} + ) : ( + {t`Hidden`} )}
diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx index db089251..ebbd6f3e 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx @@ -3,7 +3,6 @@ import { t, Trans } from "@lingui/macro"; import { defaultProfile, profileSchema } from "@reactive-resume/schema"; import { Avatar, - AvatarImage, FormControl, FormDescription, FormField, @@ -12,11 +11,11 @@ import { FormMessage, Input, } from "@reactive-resume/ui"; -import { useCallback } from "react"; import { useForm } from "react-hook-form"; -import { useDebounceValue } from "usehooks-ts"; import { z } from "zod"; +import { BrandIcon } from "@/client/components/brand-icon"; + import { SectionDialog } from "../sections/shared/section-dialog"; import { URLInput } from "../sections/shared/url-input"; @@ -30,16 +29,6 @@ export const ProfilesDialog = () => { resolver: zodResolver(formSchema), }); - const [iconSrc, setIconSrc] = useDebounceValue("", 400); - - const handleIconChange = useCallback((event: React.ChangeEvent) => { - if (event.target.value === "") { - setIconSrc(""); - } else { - setIconSrc(`https://cdn.simpleicons.org/${event.target.value}`); - } - }, []); - return ( id="profiles" form={form} defaultValues={defaultProfile}>
@@ -51,7 +40,7 @@ export const ProfilesDialog = () => { {t`Network`} {/* eslint-disable-next-line lingui/no-unlocalized-strings */} - + @@ -79,7 +68,7 @@ export const ProfilesDialog = () => { {t`Website`} - + @@ -94,18 +83,10 @@ export const ProfilesDialog = () => { {t`Icon`}
- - {iconSrc && } + + - { - field.onChange(event); - handleIconChange(event); - }} - /> +
diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx index af1f7c2a..923aa226 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx @@ -111,7 +111,13 @@ export const ProjectsDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx index d42d7526..c1c1651a 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx @@ -98,7 +98,13 @@ export const PublicationsDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx index 71ad8ca6..617e58a9 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx @@ -84,7 +84,13 @@ export const ReferencesDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx index 8fc14741..cda2e5eb 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx @@ -88,10 +88,10 @@ export const SkillsDialog = () => { }} /> - {field.value === 0 ? ( - {t`Hidden`} - ) : ( + {field.value > 0 ? ( {field.value} + ) : ( + {t`Hidden`} )}
diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx index 96285fb8..4bfa244a 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx @@ -112,7 +112,13 @@ export const VolunteerDialog = () => { {...field} content={field.value} footer={(editor) => ( - + { + editor.commands.setContent(value, true); + field.onChange(value); + }} + /> )} onChange={(value) => { field.onChange(value); diff --git a/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx b/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx index 5a618474..edba64c8 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx @@ -1,4 +1,4 @@ -import { t } from "@lingui/macro"; +import { t, Trans } from "@lingui/macro"; import { createId } from "@paralleldrive/cuid2"; import { DotsSixVertical, Envelope, Plus, X } from "@phosphor-icons/react"; import { CustomField as ICustomField } from "@reactive-resume/schema"; @@ -37,10 +37,10 @@ export const CustomField = ({ field, onChange, onRemove }: CustomFieldProps) => animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: -50 }} > -
+
- + onChange({ ...field, icon: event.target.value }); }} /> + +

+ + Visit{" "} + + Phosphor Icons + {" "} + for a list of available icons + +

{ handleChange("name", event.target.value); }} /> { @@ -87,8 +103,8 @@ export const CustomField = ({ field, onChange, onRemove }: CustomFieldProps) =>
+ + + + {children} diff --git a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx index 10085e3a..39f271d5 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx @@ -3,11 +3,12 @@ import { CSS } from "@dnd-kit/utilities"; import { t } from "@lingui/macro"; import { CopySimple, DotsSixVertical, PencilSimple, TrashSimple } from "@phosphor-icons/react"; import { - ContextMenu, - ContextMenuCheckboxItem, - ContextMenuContent, - ContextMenuItem, - ContextMenuTrigger, + DropdownMenu, + DropdownMenuCheckboxItem, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuSeparator, + DropdownMenuTrigger, } from "@reactive-resume/ui"; import { cn } from "@reactive-resume/utils"; import { motion } from "framer-motion"; @@ -68,8 +69,8 @@ export const SectionListItem = ({
{/* List Item */} - - + +
{title} {description &&

{description}

}
-
- - + + + {t`Visible`} - - + + + {t`Edit`} - - + + {t`Copy`} - - + + {t`Remove`} - - -
+ + +
); diff --git a/apps/client/src/pages/builder/sidebars/left/sections/summary.tsx b/apps/client/src/pages/builder/sidebars/left/sections/summary.tsx index fe5fb766..1009dc97 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/summary.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/summary.tsx @@ -32,7 +32,13 @@ export const SummarySection = () => { ( - + { + editor.commands.setContent(value, true); + setValue("sections.summary.content", value); + }} + /> )} onChange={(value) => { setValue("sections.summary.content", value); diff --git a/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/base-card.tsx b/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/base-card.tsx index 6f619f75..2b1bfee1 100644 --- a/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/base-card.tsx +++ b/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/base-card.tsx @@ -1,5 +1,6 @@ import { Card } from "@reactive-resume/ui"; import { cn } from "@reactive-resume/utils"; +import { forwardRef } from "react"; import Tilt from "react-parallax-tilt"; import { defaultTiltProps } from "@/client/constants/parallax-tilt"; @@ -10,16 +11,19 @@ type Props = { children?: React.ReactNode; }; -export const BaseCard = ({ children, className, onClick }: Props) => ( - - - {children} - - +export const BaseCard = forwardRef( + ({ children, className, onClick }, ref) => ( + + + {children} + + + ), ); diff --git a/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx b/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx index f1da2fd9..4eefd04c 100644 --- a/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx +++ b/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx @@ -9,11 +9,11 @@ import { } from "@phosphor-icons/react"; import { ResumeDto } from "@reactive-resume/dto"; import { - ContextMenu, - ContextMenuContent, - ContextMenuItem, - ContextMenuSeparator, - ContextMenuTrigger, + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuSeparator, + DropdownMenuTrigger, } from "@reactive-resume/ui"; import { cn } from "@reactive-resume/utils"; import dayjs from "dayjs"; @@ -33,6 +33,7 @@ export const ResumeCard = ({ resume }: Props) => { const { open } = useDialog("resume"); const { open: lockOpen } = useDialog("lock"); + const template = resume.data.metadata.template; const lastUpdated = dayjs().to(resume.updatedAt); const onOpen = () => { @@ -56,9 +57,9 @@ export const ResumeCard = ({ resume }: Props) => { }; return ( - - - + + + {resume.locked && ( {

{resume.title}

{t`Last updated ${lastUpdated}`}

- - - - + {template} + + + + + {t`Open`} - - + + {t`Rename`} - - + + {t`Duplicate`} - + {resume.locked ? ( - + {t`Unlock`} - + ) : ( - + {t`Lock`} - + )} - - + + {t`Delete`} - - - + + + ); }; diff --git a/apps/client/src/pages/dashboard/settings/_sections/account.tsx b/apps/client/src/pages/dashboard/settings/_sections/account.tsx index 3fab2e18..6e904964 100644 --- a/apps/client/src/pages/dashboard/settings/_sections/account.tsx +++ b/apps/client/src/pages/dashboard/settings/_sections/account.tsx @@ -151,7 +151,7 @@ export const AccountSettings = () => { {t`Name`} - + @@ -165,7 +165,7 @@ export const AccountSettings = () => { {t`Username`} - + @@ -179,7 +179,7 @@ export const AccountSettings = () => { {t`Email`} - + { // On the second click, delete the account if (count === 1) { - await Promise.all([deleteUser, logout]); + await Promise.all([deleteUser(), logout()]); toast({ variant: "success", diff --git a/apps/client/src/pages/dashboard/settings/_sections/openai.tsx b/apps/client/src/pages/dashboard/settings/_sections/openai.tsx index 6830e8a0..c0dc6aa2 100644 --- a/apps/client/src/pages/dashboard/settings/_sections/openai.tsx +++ b/apps/client/src/pages/dashboard/settings/_sections/openai.tsx @@ -12,22 +12,23 @@ import { FormMessage, Input, } from "@reactive-resume/ui"; -import { cn } from "@reactive-resume/utils"; import { useForm } from "react-hook-form"; import { z } from "zod"; -import { useOpenAiStore } from "@/client/stores/openai"; import { DEFAULT_MAX_TOKENS, DEFAULT_MODEL } from "@/client/constants/llm"; +import { useOpenAiStore } from "@/client/stores/openai"; const formSchema = z.object({ apiKey: z .string() - // eslint-disable-next-line lingui/t-call-in-function - .regex(/^sk-.+$/, t`That doesn't look like a valid OpenAI API key.`) + // eslint-disable-next-line lingui/no-unlocalized-strings + .regex(/^sk-.+$/, "That doesn't look like a valid OpenAI API key.") .default(""), baseURL: z .string() - .regex(/https?:\/\/[^\/]+\/?v1$/, t`That doesn't look like a valid URL`) + // eslint-disable-next-line lingui/no-unlocalized-strings + .regex(/https?:\/\/[^/]+\/?v1$/, "That doesn't look like a valid URL") + .or(z.literal("")) .default(""), model: z.string().default(DEFAULT_MODEL), maxTokens: z.number().default(DEFAULT_MAX_TOKENS), @@ -38,7 +39,8 @@ type FormValues = z.infer; export const OpenAISettings = () => { const { apiKey, setApiKey, baseURL, setBaseURL, model, setModel, maxTokens, setMaxTokens } = useOpenAiStore(); - const isEnabled = !!apiKey || !!baseURL || !!model || !!maxTokens; + + const isEnabled = !!apiKey; const form = useForm({ resolver: zodResolver(formSchema), @@ -74,7 +76,7 @@ export const OpenAISettings = () => { return (
-

{t`OpenAI Integration`}

+

{t`OpenAI/Ollama Integration`}

{t`You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume.`}

@@ -96,16 +98,13 @@ export const OpenAISettings = () => { from your settings.

-
-

{t`Ollama Integration`}

- -

- You can integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and - the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and - choose models and set the max tokens. + You can also integrate with Ollama simply by setting the API key to + `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. + `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens + as per your preference.

@@ -117,7 +116,7 @@ export const OpenAISettings = () => { control={form.control} render={({ field }) => ( - {t`OpenAI / Ollama API Key`} + {t`OpenAI/Ollama API Key`} @@ -162,19 +161,16 @@ export const OpenAISettings = () => { type="number" placeholder={`${DEFAULT_MAX_TOKENS}`} {...field} - onChange={(e) => field.onChange(e.target.valueAsNumber)} + onChange={(e) => { + field.onChange(e.target.valueAsNumber); + }} /> )} /> -
+