mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-11 04:52:36 +10:00
Compare commits
52 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 890875ad9d | |||
| 11953af700 | |||
| 3c774102cf | |||
| fbf92160a3 | |||
| a798845865 | |||
| 7db57e04c0 | |||
| b23efa773f | |||
| 3b41b32f09 | |||
| 5513b909e7 | |||
| c1a50d4125 | |||
| 7babde2d62 | |||
| 08a6415ba8 | |||
| 1ee9478200 | |||
| bbe8fb6655 | |||
| 6405102cab | |||
| 32445a5cd7 | |||
| 5494d93e1d | |||
| ad9647a3f4 | |||
| 9ee7e3195b | |||
| 53dfd4cb09 | |||
| 7ceb0f6e39 | |||
| 7496461618 | |||
| b47b7824ff | |||
| ec77d13ebd | |||
| c8f7989c1f | |||
| ec612f0902 | |||
| 10b2ca8bf2 | |||
| 995b1e627b | |||
| f1d4ebb504 | |||
| 6c97c880b3 | |||
| 8fc3c25714 | |||
| 19c4d31710 | |||
| b17919e909 | |||
| 4c1c17c693 | |||
| df99470df8 | |||
| a92528cdb7 | |||
| 219e6999df | |||
| 95ee77f65c | |||
| 71d3cea100 | |||
| befc5a67fc | |||
| 5a2c222d61 | |||
| 6a3c75c15c | |||
| b6162d7bb0 | |||
| 269f4c8b4d | |||
| 21fe2e195c | |||
| 33168aa535 | |||
| f30d299949 | |||
| fdfcd37061 | |||
| 5d146ca86e | |||
| 8e8b695cbc | |||
| 37a869fa24 | |||
| 176cac4fbe |
@ -1,4 +1,4 @@
|
||||
name: Lint, Test and Build
|
||||
name: Lint and Build
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -35,7 +35,6 @@ jobs:
|
||||
pnpm exec nx-cloud record -- pnpm exec nx format:check
|
||||
parallel-commands-on-agents: |
|
||||
pnpm exec nx affected --target=lint --parallel=3
|
||||
pnpm exec nx affected --target=test --parallel=3 --ci --code-coverage
|
||||
pnpm exec nx affected --target=build --parallel=3
|
||||
|
||||
agents:
|
||||
@ -2,4 +2,6 @@
|
||||
/coverage
|
||||
/.nx/cache
|
||||
stats.html
|
||||
pnpm-lock.yaml
|
||||
pnpm-lock.yaml
|
||||
compose-dev.yml
|
||||
compose.yml
|
||||
@ -49,17 +49,10 @@ export const ArtboardPage = () => {
|
||||
|
||||
// Typography Options
|
||||
useEffect(() => {
|
||||
if (metadata.typography.hideIcons) {
|
||||
document.querySelector("#root")!.classList.add("hide-icons");
|
||||
} else {
|
||||
document.querySelector("#root")!.classList.remove("hide-icons");
|
||||
}
|
||||
|
||||
if (metadata.typography.underlineLinks) {
|
||||
document.querySelector("#root")!.classList.add("underline-links");
|
||||
} else {
|
||||
document.querySelector("#root")!.classList.remove("underline-links");
|
||||
}
|
||||
document.querySelectorAll(`[data-page]`).forEach((el) => {
|
||||
el.classList.toggle("hide-icons", metadata.typography.hideIcons);
|
||||
el.classList.toggle("underline-links", metadata.typography.underlineLinks);
|
||||
});
|
||||
}, [metadata]);
|
||||
|
||||
return <Outlet />;
|
||||
|
||||
@ -12,14 +12,14 @@
|
||||
@apply antialiased;
|
||||
}
|
||||
|
||||
#root.hide-icons .ph {
|
||||
[data-page].hide-icons .ph {
|
||||
@apply hidden;
|
||||
}
|
||||
|
||||
#root.underline-links a {
|
||||
[data-page].underline-links a {
|
||||
@apply underline underline-offset-2;
|
||||
}
|
||||
|
||||
.wysiwyg {
|
||||
@apply prose max-w-none text-current prose-headings:mt-0 prose-headings:mb-2 prose-p:mt-0 prose-p:mb-2 prose-ul:mt-0 prose-ul:mb-2 prose-li:mt-0 prose-li:mb-2 prose-ol:mt-0 prose-ol:mb-2 prose-img:mt-0 prose-img:mb-2 prose-hr:mt-0 prose-hr:mb-2 prose-p:leading-normal prose-li:leading-normal;
|
||||
@apply prose max-w-none text-current prose-headings:mt-0 prose-headings:mb-2 prose-p:mt-0 prose-p:mb-2 prose-ul:mt-0 prose-ul:mb-2 prose-li:mt-0 prose-li:mb-2 prose-ol:mt-0 prose-ol:mb-2 prose-img:mt-0 prose-img:mb-2 prose-hr:mt-0 prose-hr:mb-2 prose-p:leading-normal prose-li:leading-normal prose-a:break-all;
|
||||
}
|
||||
|
||||
@ -5,14 +5,14 @@
|
||||
"esModuleInterop": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"types": ["vite/client"],
|
||||
"types": ["vite/client"]
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.app.json",
|
||||
},
|
||||
"path": "./tsconfig.app.json"
|
||||
}
|
||||
],
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"extends": "../../tsconfig.base.json"
|
||||
}
|
||||
|
||||
@ -7,6 +7,7 @@ import {
|
||||
CommandGroup,
|
||||
CommandInput,
|
||||
CommandItem,
|
||||
CommandList,
|
||||
Popover,
|
||||
PopoverContent,
|
||||
PopoverTrigger,
|
||||
@ -40,36 +41,40 @@ export const LocaleCombobox = ({ value, onValueChange }: Props) => {
|
||||
onValueChange={setSearch}
|
||||
placeholder={t`Search for a language`}
|
||||
/>
|
||||
<CommandEmpty>{t`No results found`}</CommandEmpty>
|
||||
<CommandGroup>
|
||||
<ScrollArea orientation="vertical">
|
||||
<div className="max-h-60">
|
||||
{options.map(({ original }) => (
|
||||
<CommandItem
|
||||
key={original.locale}
|
||||
value={original.locale.trim().toLowerCase()}
|
||||
onSelect={async (selectedValue) => {
|
||||
const result = options.find(
|
||||
({ original }) => original.locale.trim().toLowerCase() === selectedValue,
|
||||
);
|
||||
<CommandList>
|
||||
<CommandEmpty>{t`No results found`}</CommandEmpty>
|
||||
<CommandGroup>
|
||||
<ScrollArea orientation="vertical">
|
||||
<div className="max-h-60">
|
||||
{options.map(({ original }) => (
|
||||
<CommandItem
|
||||
disabled={false}
|
||||
key={original.locale}
|
||||
value={original.locale.trim()}
|
||||
onSelect={async (selectedValue) => {
|
||||
const result = options.find(
|
||||
({ original }) => original.locale.trim() === selectedValue,
|
||||
);
|
||||
|
||||
if (!result) return null;
|
||||
if (!result) return null;
|
||||
|
||||
onValueChange(result.original.locale);
|
||||
}}
|
||||
>
|
||||
<Check
|
||||
className={cn(
|
||||
"mr-2 size-4 opacity-0",
|
||||
value === original.locale && "opacity-100",
|
||||
)}
|
||||
/>
|
||||
{original.name} <span className="ml-1 text-xs opacity-50">({original.locale})</span>
|
||||
</CommandItem>
|
||||
))}
|
||||
</div>
|
||||
</ScrollArea>
|
||||
</CommandGroup>
|
||||
onValueChange(result.original.locale);
|
||||
}}
|
||||
>
|
||||
<Check
|
||||
className={cn(
|
||||
"mr-2 size-4 opacity-0",
|
||||
value === original.locale && "opacity-100",
|
||||
)}
|
||||
/>
|
||||
{original.name}{" "}
|
||||
<span className="ml-1 text-xs opacity-50">({original.locale})</span>
|
||||
</CommandItem>
|
||||
))}
|
||||
</div>
|
||||
</ScrollArea>
|
||||
</CommandGroup>
|
||||
</CommandList>
|
||||
</Command>
|
||||
);
|
||||
};
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: af\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: am\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amharic\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ar\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bg\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bengali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "আইকন"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "নাম"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "নেটওয়ার্ক"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "নেটওয়ার্ক"
|
||||
msgid "New Password"
|
||||
msgstr "নতুন পাসওয়ার্ড"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "কোন ফলাফল খুঁজে পাওয়া যায়নি"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "অবস্থান"
|
||||
msgid "Powered by"
|
||||
msgstr "দ্বারা চালিত"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "<0>সাধারণ আইকন</0> দ্বারা চালিত"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ca\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: cs\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: da\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikon"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Netværk"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Netværk"
|
||||
msgid "New Password"
|
||||
msgstr "Ny adgangskode"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Ingen resultater fundet"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Stilling"
|
||||
msgid "Powered by"
|
||||
msgstr "Drevet af"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Drevet af <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Søg efter et skrifttypeundersæt"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Søg efter en skrifttypevariant"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Søg efter et sprog"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Brugernavn"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Zoom ind"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Zoom ud"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: de\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Symbol"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Netzwerk"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Netzwerk"
|
||||
msgid "New Password"
|
||||
msgstr "Neues Passwort"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Keine Ergebnisse gefunden"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Position"
|
||||
msgid "Powered by"
|
||||
msgstr "Powered by"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Powered by <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Nach einem Schriftart-Subset suchen"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Nach einer Schriftvariante suchen"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Nach einer Sprache suchen"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Benutzername"
|
||||
@ -1616,7 +1616,7 @@ msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Hineinzoomen"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Herauszoomen"
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icon"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Network"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Network"
|
||||
msgid "New Password"
|
||||
msgstr "New Password"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "No results found"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Position"
|
||||
msgid "Powered by"
|
||||
msgstr "Powered by"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Powered by <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Search for a font subset"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Search for a font variant"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Search for a language"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Username"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icono"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Red"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Red"
|
||||
msgid "New Password"
|
||||
msgstr "Nueva contraseña"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "No se han encontrado resultados"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Posición"
|
||||
msgid "Powered by"
|
||||
msgstr "Impulsado por"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Impulsado por <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Buscar un subconjunto de fuentes"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Buscar una variante de fuente"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Buscar un idioma"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Usuario"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Aumentar"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Disminuir"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fa\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Persian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icône"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Réseau"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Réseau"
|
||||
msgid "New Password"
|
||||
msgstr "Nouveau mot de passe"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Aucun résultat trouvé"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Poste"
|
||||
msgid "Powered by"
|
||||
msgstr "Propulsé par"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Réalisé par <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Rechercher un sous-ensemble de polices"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Rechercher une variante de police"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Rechercher une langue"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nom d’utilisateur"
|
||||
@ -1616,7 +1616,7 @@ msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Zoomer"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Dézoomer"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: he\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr "תמיד מעניין אותי לשמוע ממשתמשי Reactive Resume בנוגע למשוב שלהם. הנה חלק מההודעות שקיבלתי. אם יש לך משוב, אשמח לקבל ממך הודעה בדוא״ל אל <0>{email}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "סמל"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "רשת"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "רשת"
|
||||
msgid "New Password"
|
||||
msgstr "סיסמה חדשה"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "לא נמצאו תוצאות"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "תפקיד"
|
||||
msgid "Powered by"
|
||||
msgstr "מופעל על גבי"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "נעזר ב־<0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "חיפוש תת־קבוצת גופנים"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "חיפוש הגוון גופן"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "חיפוש שפה"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "שם משתמש"
|
||||
@ -1616,7 +1616,7 @@ msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לו
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "התקרבות"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "התרחקות"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr "मुझे हमेशा रिएक्टिव रेज़्यूमे के उपयोगकर्ताओं से प्रतिक्रिया या समर्थन सुनना अच्छा लगता है। यहां कुछ संदेश हैं जो मुझे प्राप्त हुए हैं। यदि आपके पास कोई प्रतिक्रिया है, तो बेझिझक मुझे <0>{email} पर एक ईमेल भेजें</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "आइकॉन"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "नाम"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "नेटवर्क"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "नेटवर्क"
|
||||
msgid "New Password"
|
||||
msgstr "नया पासवर्ड"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "कोई परिणाम नहीं मिला"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "स्थान"
|
||||
msgid "Powered by"
|
||||
msgstr "द्वारा संचालित"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "<0>सिंपल आइकॉन</0> द्वारा संचालित"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "फ़ॉन्ट उपसमुच्चय खोजें"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "फ़ॉन्ट प्रकार खोजें"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "एक भाषा के लिए खोज करे"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr "उपयोगकर्ता के पास कोई संबद्ध 'रहस्य' रिकॉर्ड नहीं है. कृपया इस समस्या की रिपोर्ट GitHub पर करें।"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "उपयोगकर्ता नाम"
|
||||
@ -1616,7 +1616,7 @@ msgstr "हम आपके ईमेल पते को केवल यह
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "ज़ूम इन"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "ज़ूम आउट"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hu\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: id\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-24 00:07\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icona"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rete"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Rete"
|
||||
msgid "New Password"
|
||||
msgstr "Nuova Password"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nessun risultato trovato"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Posizione"
|
||||
msgid "Powered by"
|
||||
msgstr "Offerto da"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Offerto da <0>Icone semplici</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Cerca un sottoinsieme di caratteri"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Cerca una variante del carattere"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Cerca una lingua"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nome utente"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Ingrandisci"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Rimpicciolisci"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ja\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "アイコン"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: km\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Khmer\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: kn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kannada\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr "ಪ್ರತಿಕ್ರಿಯೆ ಅಥವಾ ಬೆಂಬಲದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ ಬಳಕೆದಾರರಿಂದ ಕೇಳಲು ನಾನು ಯಾವಾಗಲೂ ಇಷ್ಟಪಡುತ್ತೇನೆ. ನಾನು ಸ್ವೀಕರಿಸಿದ ಕೆಲವು ಸಂದೇಶಗಳು ಇಲ್ಲಿವೆ. ನೀವು ಯಾವುದೇ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, <0>{email} ನಲ್ಲಿ ನನಗೆ ಇಮೇಲ್ ಅನ್ನು ಡ್ರಾಪ್ ಮಾಡಲು ಹಿಂಜರಿಯಬೇಡಿ</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "ಐಕಾನ್"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "ಹೆಸರು"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "ನೆಟ್ವರ್ಕ್"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "ನೆಟ್ವರ್ಕ್"
|
||||
msgid "New Password"
|
||||
msgstr "ಹೊಸ ಪಾಸ್ವರ್ಡ್"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬರಲಿಲ್ಲ"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "ಸ್ಥಾನ"
|
||||
msgid "Powered by"
|
||||
msgstr "ಇವರಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "<0>ಸರಳ ಐಕಾನ್ಗಳಿಂದ</0> ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕ
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "ಭಾಷೆಗಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr "ಬಳಕೆದಾರರು ಸಂಬಂಧಿತ 'ರಹಸ್ಯ' ದಾಖಲೆಯನ್ನು ಹೊಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಈ ಸಮಸ್ಯೆಯನ್ನು GitHub ನಲ್ಲಿ ವರದಿ ಮಾಡಿ."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "ಬಳಕೆದಾರರ ಹೆಸರು"
|
||||
@ -1616,7 +1616,7 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವ
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "ಗಾತ್ರ ಹಿಗ್ಗಿಸಿ"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "ಗಾತ್ರ ಕುಗ್ಗಿಸಿ"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ko\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikona"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Vardas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Tinklas"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Tinklas"
|
||||
msgid "New Password"
|
||||
msgstr "Naujas slaptažodis"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Rezultatų nerasta"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Pozicija"
|
||||
msgid "Powered by"
|
||||
msgstr "Sukurta naudojant"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Sukurta naudojant <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Šrifto poaibio paieška"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Šrifto varianto paieška"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Kalbos paieška"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Vartotojo vardas"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Priartinti"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Tolinti"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lv\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-13 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Latvian\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==0 ? 0 : n%10==1 && n%100!=11 ? 1 : 2);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ml\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Malayalam\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: mr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marathi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "नाव"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "नेटवर्क"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "नेटवर्क"
|
||||
msgid "New Password"
|
||||
msgstr "नवीन पासवर्ड"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "कोणतेही परिणाम आढळले नाहीत"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "फाँट उपसंचाचा शोध घ्या"
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "भाषेचा शोध घ्या"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "वापरकर्तानाव"
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ne\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Nepali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: no\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-14 00:07\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: or\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Odia\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikona"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Sieć"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Sieć"
|
||||
msgid "New Password"
|
||||
msgstr "Nowe Hasło"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Brak wyników"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr "Napędzane przez"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Napędzane przez <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Wyszukaj podzbiór czcionek"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Wyszukaj wariant czcionki"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Wyszukaj język"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nazwa Użytkownika"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Powiększ"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Pomniejsz"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-03-01 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ícone"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rede"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Rede"
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nenhum resultado encontrado"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Posição"
|
||||
msgid "Powered by"
|
||||
msgstr "Desenvolvido por"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Desenvolvido por <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Procure um subconjunto de fontes"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure uma variante de fonte"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Selecionar idioma"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuário"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1634,19 +1634,19 @@ msgstr "O que há de novo na versão mais recente"
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:88
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
msgstr "Você também pode inserir seu nome de usuário."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr ""
|
||||
msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhorar seus textos ao escrever seu currículo."
|
||||
|
||||
#: 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 "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:60
|
||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||
@ -1675,11 +1675,11 @@ 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 "Sua chave de API OpenAI ainda não foi definida. Acesse as configurações da sua conta para ativar a integração com a OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
msgstr "Sua senha foi atualizada com sucesso."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:80
|
||||
msgid "Zoom In"
|
||||
@ -1688,3 +1688,4 @@ msgstr "Aumentar zoom"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Diminuir o Zoom"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ícone"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rede Social"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Rede Social"
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nenhum resultado encontrado"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Cargo"
|
||||
msgid "Powered by"
|
||||
msgstr "Desenvolvido em"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Desenvolvido em <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Procure por um subconjunto de fontes"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure por uma variante de fonte"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Pesquise por uma língua"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuário"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Ampliar"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Afastar"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ro\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Iconiță"
|
||||
|
||||
@ -772,9 +772,7 @@ msgstr "Se pare că adresa dumneavoastră de e-mail a fost deja verificată."
|
||||
#: apps/client/src/pages/auth/register/page.tsx:109
|
||||
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:130
|
||||
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
|
||||
@ -933,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rețea"
|
||||
|
||||
@ -941,7 +939,7 @@ msgstr "Rețea"
|
||||
msgid "New Password"
|
||||
msgstr "Parola Nouă"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nu s-a găsit niciun rezultat"
|
||||
|
||||
@ -1074,7 +1072,7 @@ msgstr "Poziție"
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1224,7 +1222,7 @@ msgstr "Căutați un subset de fonturi"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Căutați o variantă de font"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Căutați o limbă"
|
||||
|
||||
@ -1563,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nume utilizator"
|
||||
@ -1618,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1690,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ru\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr "Мне всегда нравится получать отзывы и поддержку от пользователей Reactive Resume. Вот некоторые из полученных мною сообщений. Если вы хотите оставить отзыв, не стесняйтесь написать мне по адресу <0>{email}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Иконка"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Имя"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Сеть"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Сеть"
|
||||
msgid "New Password"
|
||||
msgstr "Новый пароль"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Результатов не найдено"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Позиция"
|
||||
msgid "Powered by"
|
||||
msgstr "Разработан с помощью"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Разработано с помощью <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Поиск подгруппы шрифта"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Поиск варианта шрифта"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Поиск языка"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Имя пользователя"
|
||||
@ -1616,7 +1616,7 @@ msgstr "Мы подтверждаем ваш адрес эл. почты, тол
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Увеличить"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Уменьшить"
|
||||
|
||||
|
||||
1691
apps/client/src/locales/sq-AL/messages.po
Normal file
1691
apps/client/src/locales/sq-AL/messages.po
Normal file
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sv\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikon"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Nätverk"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Nätverk"
|
||||
msgid "New Password"
|
||||
msgstr "Nytt lösenord"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Inga resultat hittades"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Position"
|
||||
msgid "Powered by"
|
||||
msgstr "Drivs av"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Drivs av <0>Simple Icons</0>"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "Sök efter en typsnittsundergrupp"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Sök efter en typsnittsvariant"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Sök efter ett språk"
|
||||
|
||||
@ -1561,7 +1561,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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Användarnamn"
|
||||
@ -1616,7 +1616,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:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Zooma in"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Zooma ut"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ta\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tamil\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: te\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: th\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Thai\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: tr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
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.</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Simge"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "İsim"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Sosyal Ağlar"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Sosyal Ağlar"
|
||||
msgid "New Password"
|
||||
msgstr "Yeni Şifre"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Hiçbir sonuç bulunamadı"
|
||||
|
||||
@ -1049,7 +1049,7 @@ msgstr "Bu adımın tamamen isteğe bağlı olduğunu lütfen unutmayın."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:225
|
||||
msgid "Please select a file type"
|
||||
msgstr ""
|
||||
msgstr "Lütfen bir dosya türü seçin"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:226
|
||||
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."
|
||||
@ -1072,7 +1072,7 @@ msgstr "Konum"
|
||||
msgid "Powered by"
|
||||
msgstr "Destekleyen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "<0>Simple Icons</0> tarafından desteklenmektedir"
|
||||
|
||||
@ -1137,7 +1137,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:72
|
||||
msgid "Redo"
|
||||
msgstr ""
|
||||
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-options.tsx:129
|
||||
@ -1146,7 +1146,7 @@ msgstr "Kaldır"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:241
|
||||
msgid "Remove Page"
|
||||
msgstr ""
|
||||
msgstr "Sayfayı Kaldır"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:83
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:128
|
||||
@ -1222,7 +1222,7 @@ msgstr "Yazı tipi alt kümesini arayın"
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Dili arayın"
|
||||
|
||||
@ -1272,11 +1272,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91
|
||||
msgid "Show Page Numbers"
|
||||
msgstr ""
|
||||
msgstr "Sayfa numaralarını göster"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:256
|
||||
msgid "Sidebar"
|
||||
msgstr ""
|
||||
msgstr "Kenar Çubuğu"
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:96
|
||||
#: apps/client/src/pages/auth/login/page.tsx:116
|
||||
@ -1341,20 +1341,20 @@ msgstr "Kare"
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24
|
||||
msgid "Start building from scratch"
|
||||
msgstr ""
|
||||
msgstr "Sıfırdan oluşturmaya başlayın"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:184
|
||||
msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
msgstr "Bir ad vererek özgeçmişinizi oluşturmaya başlayın."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
msgstr "İstatistikler"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38
|
||||
msgid "Statistics are available only for public resumes."
|
||||
msgstr ""
|
||||
msgstr "İstatistikler yalnızca herkese açık özgeçmişler için mevcuttur."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101
|
||||
msgid "Store Locally"
|
||||
@ -1378,7 +1378,7 @@ 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 "Özet"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
||||
msgid "Support the app by donating what you can!"
|
||||
@ -1394,20 +1394,20 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
msgstr "Sistem"
|
||||
|
||||
#: 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 "Şablon"
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:9
|
||||
msgid "Templates"
|
||||
msgstr ""
|
||||
msgstr "Şablonlar"
|
||||
|
||||
#: apps/client/src/pages/home/sections/testimonials/index.tsx:68
|
||||
msgid "Testimonials"
|
||||
msgstr ""
|
||||
msgstr "Görüşler"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103
|
||||
msgid "Text Color"
|
||||
@ -1423,7 +1423,7 @@ msgstr "Girdiğiniz şifreler eşleşmiyor."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:35
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
msgstr "Güncellemek istediğiniz özgeçmiş kilitli, herhangi bir değişiklik yapmak istiyorsanız lütfen kilidini açın."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
@ -1433,7 +1433,7 @@ msgstr "Tema"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:29
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
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:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
@ -1510,34 +1510,34 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
msgstr "Altı Çizili Bağlantılar"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:66
|
||||
msgid "Undo"
|
||||
msgstr ""
|
||||
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:137
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:112
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:187
|
||||
msgid "Unlock"
|
||||
msgstr ""
|
||||
msgstr "Kilidi aç"
|
||||
|
||||
#: 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 "Bir özgeçmişin kilidini açmak, üzerinde tekrar değişiklik yapmanıza olanak tanır."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
msgstr "Doğrulanmamış"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
msgstr "Mevcut bir öğeyi güncelle"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:178
|
||||
msgid "Update an existing resume"
|
||||
msgstr ""
|
||||
msgstr "Mevcut bir özgeçmişi güncelle"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:212
|
||||
msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing."
|
||||
@ -1545,7 +1545,7 @@ msgstr ""
|
||||
|
||||
#: 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:56
|
||||
msgid "URL must start with https://"
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Kullanıcı adı"
|
||||
@ -1584,11 +1584,11 @@ msgstr "Değer"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
|
||||
msgid "Verified"
|
||||
msgstr ""
|
||||
msgstr "Doğrulanmış"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159
|
||||
msgid "Verify that two-factor authentication has been setup correctly"
|
||||
msgstr ""
|
||||
msgstr "İki faktörlü kimlik doğrulamanın doğru şekilde kurulduğunu doğrulayın"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:48
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1638,7 +1638,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:88
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
msgstr "Kullanıcı adınızı da girebilirsiniz."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
@ -1659,7 +1659,7 @@ 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 "E-postanız var!"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
@ -1683,8 +1683,9 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:80
|
||||
msgid "Zoom In"
|
||||
msgstr ""
|
||||
msgstr "Yakınlaştır"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
msgstr "Uzaklaştır"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: uk\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-18 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\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"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "Збільшити"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "Зменшити"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: uz\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-19 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Uzbek\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr "Yangi parol"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Hech qanday natija topilmadi"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: vi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Tên Người Dùng"
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
|
||||
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"
|
||||
@ -48,7 +48,7 @@ msgstr "<0>社区花费了大量时间编写 Reactive Resume 的文档,我相
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>目前双因素身份验证已禁用。</0>您可以将身份验证器应用程序添加到您的账户来启用。"
|
||||
msgstr "<0>现已禁用双重身份验证。</0>您可以将身份验证程序添加到您的账户来启用。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr "我们十分欢迎用户对于 Reactive Resume 的反馈和支持。这是我们收到的一些信息,如果您有任何反馈,请随时发送邮件至 <0>{email}</0>。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "图标"
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "网络"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "网络"
|
||||
msgid "New Password"
|
||||
msgstr "新密码"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "没找到结果"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "位置"
|
||||
msgid "Powered by"
|
||||
msgstr "技术支持:"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "由 <0>Simple Icons</0> 支持"
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr "搜索字体子集"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "搜索字体变体"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "搜索语言"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr "用户没有关联的“秘密”记录。请在 GitHub 上报告此问题。"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "用户名"
|
||||
@ -1616,7 +1616,7 @@ msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr "放大"
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr "缩小"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-02-01 09:12\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -686,7 +686,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}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1616,7 +1616,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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
|
||||
@ -1688,3 +1688,4 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -12,11 +12,13 @@ import {
|
||||
FormMessage,
|
||||
Input,
|
||||
} from "@reactive-resume/ui";
|
||||
import { useForm } from "react-hook-form";
|
||||
import { ControllerRenderProps, useForm } from "react-hook-form";
|
||||
import { z } from "zod";
|
||||
|
||||
import { SectionDialog } from "../sections/shared/section-dialog";
|
||||
import { URLInput } from "../sections/shared/url-input";
|
||||
import { useDebounceValue } from "usehooks-ts";
|
||||
import { useCallback } from "react";
|
||||
|
||||
const formSchema = profileSchema;
|
||||
|
||||
@ -28,6 +30,18 @@ export const ProfilesDialog = () => {
|
||||
resolver: zodResolver(formSchema),
|
||||
});
|
||||
|
||||
const [iconSrc, setIconSrc] = useDebounceValue("", 400)
|
||||
|
||||
const handleIconChange = useCallback((event: React.ChangeEvent<HTMLInputElement>) => {
|
||||
if (event.target.value === "") {
|
||||
setIconSrc("");
|
||||
} else {
|
||||
setIconSrc(`https://cdn.simpleicons.org/${event.target.value}`);
|
||||
}
|
||||
}, []);
|
||||
|
||||
|
||||
|
||||
return (
|
||||
<SectionDialog<FormValues> id="profiles" form={form} defaultValues={defaultProfile}>
|
||||
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
||||
@ -83,14 +97,17 @@ export const ProfilesDialog = () => {
|
||||
<FormControl>
|
||||
<div className="flex items-center gap-x-2">
|
||||
<Avatar className="size-8 bg-white">
|
||||
{field.value && (
|
||||
{iconSrc && (
|
||||
<AvatarImage
|
||||
className="p-1.5"
|
||||
src={`https://cdn.simpleicons.org/${field.value}`}
|
||||
src={iconSrc}
|
||||
/>
|
||||
)}
|
||||
</Avatar>
|
||||
<Input {...field} id="iconSlug" placeholder="linkedin" />
|
||||
<Input {...field} id="iconSlug" placeholder="linkedin" onChange={(event) => {
|
||||
field.onChange(event)
|
||||
handleIconChange(event)
|
||||
}} />
|
||||
</div>
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
|
||||
@ -79,7 +79,7 @@ export const ThemeSection = () => {
|
||||
style={{ backgroundColor: theme.background }}
|
||||
/>
|
||||
</PopoverTrigger>
|
||||
<PopoverContent asChild className="rounded-lg border-none bg-transparent p-0">
|
||||
<PopoverContent className="rounded-lg border-none bg-transparent p-0">
|
||||
<HexColorPicker
|
||||
color={theme.background}
|
||||
onChange={(color) => {
|
||||
@ -109,7 +109,7 @@ export const ThemeSection = () => {
|
||||
style={{ backgroundColor: theme.text }}
|
||||
/>
|
||||
</PopoverTrigger>
|
||||
<PopoverContent asChild className="rounded-lg border-none bg-transparent p-0">
|
||||
<PopoverContent className="rounded-lg border-none bg-transparent p-0">
|
||||
<HexColorPicker
|
||||
color={theme.text}
|
||||
onChange={(color) => {
|
||||
|
||||
@ -72,7 +72,7 @@ type ValidationResult =
|
||||
export const ImportDialog = () => {
|
||||
const { toast } = useToast();
|
||||
const { isOpen, close } = useDialog("import");
|
||||
const { importResume, loading, error: importError } = useImportResume();
|
||||
const { importResume, loading } = useImportResume();
|
||||
|
||||
const [validationResult, setValidationResult] = useState<ValidationResult | null>(null);
|
||||
|
||||
@ -182,11 +182,11 @@ export const ImportDialog = () => {
|
||||
}
|
||||
|
||||
close();
|
||||
} catch (error) {
|
||||
} catch (error: unknown) {
|
||||
toast({
|
||||
variant: "error",
|
||||
title: t`Oops, the server returned an error.`,
|
||||
description: importError?.message,
|
||||
description: error instanceof Error ? error.message : undefined,
|
||||
});
|
||||
}
|
||||
};
|
||||
@ -256,7 +256,7 @@ export const ImportDialog = () => {
|
||||
<FormControl>
|
||||
<Input
|
||||
type="file"
|
||||
key={accept}
|
||||
key={`${accept}-${filetype}`}
|
||||
accept={accept}
|
||||
onChange={(event) => {
|
||||
if (!event.target.files || !event.target.files.length) return;
|
||||
@ -291,7 +291,7 @@ export const ImportDialog = () => {
|
||||
|
||||
<DialogFooter>
|
||||
<AnimatePresence presenceAffectsLayout>
|
||||
{(!validationResult ?? false) && (
|
||||
{(!validationResult || false) && (
|
||||
<Button type="button" onClick={onValidate}>
|
||||
{t`Validate`}
|
||||
</Button>
|
||||
|
||||
@ -178,7 +178,7 @@ export const TwoFactorDialog = () => {
|
||||
<FormItem>
|
||||
<FormControl>
|
||||
<div className="space-y-4">
|
||||
<QRCodeSVG value={field.value!} size={256} className="mx-auto" />
|
||||
<QRCodeSVG value={field.value ?? ""} size={256} className="mx-auto" />
|
||||
<Input readOnly {...field} className="opacity-75" />
|
||||
</div>
|
||||
</FormControl>
|
||||
|
||||
23
apps/client/src/pages/home/components/donation-banner.tsx
Normal file
23
apps/client/src/pages/home/components/donation-banner.tsx
Normal file
@ -0,0 +1,23 @@
|
||||
/* eslint-disable lingui/no-unlocalized-strings */
|
||||
|
||||
import { HandHeart } from "@phosphor-icons/react";
|
||||
import { motion } from "framer-motion";
|
||||
|
||||
export const DonationBanner = () => {
|
||||
return (
|
||||
<a href="https://opencollective.com/Reactive-Resume" target="_blank" rel="noreferrer">
|
||||
<motion.div
|
||||
whileHover={{ height: 48 }}
|
||||
initial={{ opacity: 0, y: -50, height: 32 }}
|
||||
animate={{ opacity: 1, y: 0, transition: { duration: 0.3 } }}
|
||||
className="flex w-screen items-center justify-center gap-x-2 bg-zinc-800 text-xs font-bold leading-relaxed text-zinc-50"
|
||||
>
|
||||
<HandHeart weight="bold" size={14} className="shrink-0" />
|
||||
<span>
|
||||
If this project has helped you, please consider donating to Reactive Resume as we're
|
||||
running out of server resources with the increasing number of users.
|
||||
</span>
|
||||
</motion.div>
|
||||
</a>
|
||||
);
|
||||
};
|
||||
@ -3,7 +3,7 @@ import { Link } from "react-router-dom";
|
||||
|
||||
import { Logo } from "@/client/components/logo";
|
||||
|
||||
import { ProductHuntBanner } from "./product-hunt-banner";
|
||||
import { DonationBanner } from "./donation-banner";
|
||||
|
||||
export const Header = () => (
|
||||
<motion.header
|
||||
@ -11,7 +11,7 @@ export const Header = () => (
|
||||
initial={{ opacity: 0, y: -50 }}
|
||||
animate={{ opacity: 1, y: 0, transition: { delay: 0.3, duration: 0.3 } }}
|
||||
>
|
||||
<ProductHuntBanner />
|
||||
<DonationBanner />
|
||||
|
||||
<div className="bg-gradient-to-b from-background to-transparent py-3">
|
||||
<div className="container flex items-center justify-between">
|
||||
|
||||
@ -1,31 +0,0 @@
|
||||
/* eslint-disable lingui/no-unlocalized-strings */
|
||||
|
||||
import { RocketLaunch } from "@phosphor-icons/react";
|
||||
import dayjs from "dayjs";
|
||||
import { motion } from "framer-motion";
|
||||
|
||||
export const ProductHuntBanner = () => {
|
||||
const timezonePST = "America/Los_Angeles";
|
||||
|
||||
const startTime = dayjs.tz("2023-11-24 00:01", timezonePST);
|
||||
const endTime = dayjs.tz("2023-11-25 00:00", timezonePST);
|
||||
const currentTime = dayjs().tz(timezonePST);
|
||||
|
||||
const isLaunchDay = currentTime.isAfter(startTime) && currentTime.isBefore(endTime);
|
||||
|
||||
if (!isLaunchDay) return null;
|
||||
|
||||
return (
|
||||
<a href="https://www.producthunt.com/posts/reactive-resume-v4" target="_blank" rel="noreferrer">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: -50, height: 32 }}
|
||||
animate={{ opacity: 1, y: 0, transition: { delay: 0.9, duration: 0.3 } }}
|
||||
whileHover={{ height: 48 }}
|
||||
className="flex w-screen items-center justify-center gap-x-1.5 bg-orange-600 text-xs font-bold leading-relaxed text-orange-50"
|
||||
>
|
||||
<RocketLaunch weight="bold" size={12} />
|
||||
<span>Support Reactive Resume on Product Hunt today!</span>
|
||||
</motion.div>
|
||||
</a>
|
||||
);
|
||||
};
|
||||
@ -9,9 +9,9 @@ type Statistic = {
|
||||
|
||||
export const StatisticsSection = () => {
|
||||
const stats: Statistic[] = [
|
||||
{ name: t`GitHub Stars`, value: 12800 },
|
||||
{ name: t`Users Signed Up`, value: 300000 },
|
||||
{ name: t`Resumes Generated`, value: 400000 },
|
||||
{ name: t`GitHub Stars`, value: 19500 },
|
||||
{ name: t`Users Signed Up`, value: 500000 },
|
||||
{ name: t`Resumes Generated`, value: 700000 },
|
||||
];
|
||||
|
||||
return (
|
||||
|
||||
@ -18,12 +18,8 @@ export const LocaleProvider = ({ children }: Props) => {
|
||||
const userLocale = useAuthStore((state) => state.user?.locale);
|
||||
|
||||
useEffect(() => {
|
||||
const detectedLocale = detect(
|
||||
fromUrl("locale"),
|
||||
fromStorage("locale"),
|
||||
userLocale,
|
||||
defaultLocale,
|
||||
)!;
|
||||
const detectedLocale =
|
||||
detect(fromUrl("locale"), fromStorage("locale"), userLocale, defaultLocale) ?? defaultLocale;
|
||||
|
||||
// Activate the locale only if it's supported
|
||||
if (languages.some((lang) => lang.locale === detectedLocale)) {
|
||||
|
||||
@ -10,7 +10,7 @@ export const findResumeStatisticsById = async (data: { id: string }) => {
|
||||
return response.data;
|
||||
};
|
||||
|
||||
export const useResumeStatistics = (id: string, enabled: boolean = false) => {
|
||||
export const useResumeStatistics = (id: string, enabled = false) => {
|
||||
const {
|
||||
error,
|
||||
isPending: loading,
|
||||
|
||||
1
apps/client/src/vite-env.d.ts
vendored
1
apps/client/src/vite-env.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
|
||||
declare const appVersion: string;
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface ImportMetaEnv {}
|
||||
|
||||
interface ImportMeta {
|
||||
|
||||
@ -5,17 +5,17 @@
|
||||
"esModuleInterop": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"types": ["vite/client", "vitest"],
|
||||
"types": ["vite/client", "vitest"]
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.app.json",
|
||||
"path": "./tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
],
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"extends": "../../tsconfig.base.json"
|
||||
}
|
||||
|
||||
@ -48,7 +48,7 @@ export class AuthController {
|
||||
private readonly utils: UtilsService,
|
||||
) {}
|
||||
|
||||
private async exchangeToken(id: string, email: string, isTwoFactorAuth: boolean = false) {
|
||||
private async exchangeToken(id: string, email: string, isTwoFactorAuth = false) {
|
||||
try {
|
||||
const payload = payloadSchema.parse({ id, isTwoFactorAuth });
|
||||
|
||||
@ -67,8 +67,8 @@ export class AuthController {
|
||||
private async handleAuthenticationResponse(
|
||||
user: UserWithSecrets,
|
||||
response: Response,
|
||||
isTwoFactorAuth: boolean = false,
|
||||
redirect: boolean = false,
|
||||
isTwoFactorAuth = false,
|
||||
redirect = false,
|
||||
) {
|
||||
let status = "authenticated";
|
||||
|
||||
|
||||
@ -31,10 +31,12 @@ export class GitHubStrategy extends PassportStrategy(Strategy, "github") {
|
||||
|
||||
let user: User | null = null;
|
||||
|
||||
if (!email) throw new BadRequestException();
|
||||
if (!email || !username) throw new BadRequestException();
|
||||
|
||||
try {
|
||||
const user = await this.userService.findOneByIdentifier(email);
|
||||
const user =
|
||||
(await this.userService.findOneByIdentifier(email)) ||
|
||||
(await this.userService.findOneByIdentifier(username));
|
||||
|
||||
if (!user) throw new UnauthorizedException();
|
||||
|
||||
|
||||
@ -4,13 +4,13 @@
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.app.json",
|
||||
"path": "./tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
],
|
||||
"compilerOptions": {
|
||||
"esModuleInterop": true,
|
||||
},
|
||||
"esModuleInterop": true
|
||||
}
|
||||
}
|
||||
|
||||
1
compose-dev.yml
Symbolic link
1
compose-dev.yml
Symbolic link
@ -0,0 +1 @@
|
||||
./tools/compose/development.yml
|
||||
1
compose.yml
Symbolic link
1
compose.yml
Symbolic link
@ -0,0 +1 @@
|
||||
./tools/compose/simple.yml
|
||||
@ -9,7 +9,7 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@swc/helpers": "~0.5.2",
|
||||
"@swc/helpers": "~0.5.6",
|
||||
"nestjs-zod": "^3.0.0",
|
||||
"@reactive-resume/utils": "*",
|
||||
"@reactive-resume/schema": "*"
|
||||
|
||||
@ -15,7 +15,7 @@ export const usernameSchema = z
|
||||
|
||||
export const userSchema = z.object({
|
||||
id: idSchema,
|
||||
name: z.string().min(3).max(255),
|
||||
name: z.string().min(1).max(255),
|
||||
picture: z.literal("").or(z.null()).or(z.string().url()),
|
||||
username: usernameSchema,
|
||||
email: z.string().email(),
|
||||
|
||||
@ -7,16 +7,16 @@
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json",
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
],
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -5,17 +5,17 @@
|
||||
"esModuleInterop": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"types": ["vite/client", "vitest"],
|
||||
"types": ["vite/client", "vitest"]
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json",
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
],
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"extends": "../../tsconfig.base.json"
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@swc/helpers": "~0.5.2",
|
||||
"@swc/helpers": "~0.5.6",
|
||||
"@reactive-resume/schema": "*",
|
||||
"nestjs-zod": "^3.0.0",
|
||||
"zod": "^3.22.4",
|
||||
|
||||
@ -56,6 +56,11 @@ export class LinkedInParser implements Parser<JSZip, LinkedIn> {
|
||||
convert(data: LinkedIn) {
|
||||
const result = JSON.parse(JSON.stringify(defaultResumeData)) as ResumeData;
|
||||
|
||||
const avoidTooShort = (name: string, len: number) => {
|
||||
if (!name || name.length < len) return "Unknown";
|
||||
return name;
|
||||
};
|
||||
|
||||
// Profile
|
||||
if (data.Profile && data.Profile.length > 0) {
|
||||
const profile = data.Profile[0];
|
||||
@ -109,9 +114,9 @@ export class LinkedInParser implements Parser<JSZip, LinkedIn> {
|
||||
result.sections.education.items.push({
|
||||
...defaultEducation,
|
||||
id: createId(),
|
||||
institution: education["School Name"],
|
||||
studyType: education["Degree Name"],
|
||||
summary: education.Notes ?? "",
|
||||
institution: avoidTooShort(education["School Name"], 2),
|
||||
studyType: avoidTooShort(education["Degree Name"], 2),
|
||||
summary: avoidTooShort(education.Notes ?? "", 2),
|
||||
date: `${education["Start Date"]} - ${education["End Date"] ?? "Present"}`,
|
||||
});
|
||||
}
|
||||
|
||||
@ -7,16 +7,16 @@
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json",
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
],
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@swc/helpers": "~0.5.2",
|
||||
"@swc/helpers": "~0.5.6",
|
||||
"zod": "^3.22.4",
|
||||
"@reactive-resume/utils": "*",
|
||||
"@paralleldrive/cuid2": "^2.2.2"
|
||||
|
||||
@ -7,16 +7,16 @@
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json",
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
],
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -3,9 +3,15 @@ import { cn } from "@reactive-resume/utils";
|
||||
import { forwardRef, useState } from "react";
|
||||
|
||||
import { Button } from "./button";
|
||||
import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem } from "./command";
|
||||
import {
|
||||
Command,
|
||||
CommandEmpty,
|
||||
CommandGroup,
|
||||
CommandInput,
|
||||
CommandItem,
|
||||
CommandList,
|
||||
} from "./command";
|
||||
import { Popover, PopoverContent, PopoverTrigger } from "./popover";
|
||||
import { ScrollArea } from "./scroll-area";
|
||||
|
||||
export interface ComboboxOption {
|
||||
value: string;
|
||||
@ -93,43 +99,41 @@ export const Combobox = forwardRef(
|
||||
ref={ref}
|
||||
placeholder={props.searchPlaceholder ?? "Search for an option"}
|
||||
/>
|
||||
<CommandEmpty>{props.emptyText ?? "No results found"}</CommandEmpty>
|
||||
<CommandGroup>
|
||||
<ScrollArea orientation="vertical">
|
||||
<div className="max-h-60">
|
||||
{props.options.map((option) => (
|
||||
<CommandItem
|
||||
key={option.value}
|
||||
value={option.value.toLowerCase().trim()}
|
||||
onSelect={(selectedValue) => {
|
||||
const option = props.options.find(
|
||||
(option) => option.value.toLowerCase().trim() === selectedValue,
|
||||
);
|
||||
<CommandList>
|
||||
<CommandEmpty>{props.emptyText ?? "No results found"}</CommandEmpty>
|
||||
<CommandGroup>
|
||||
{props.options.map((option) => (
|
||||
<CommandItem
|
||||
key={option.value}
|
||||
value={option.value.toLowerCase().trim()}
|
||||
onSelect={(selectedValue) => {
|
||||
const option = props.options.find(
|
||||
(option) => option.value.toLowerCase().trim() === selectedValue,
|
||||
);
|
||||
|
||||
if (!option) return null;
|
||||
if (!option) return null;
|
||||
|
||||
if (props.multiple) {
|
||||
handleMultipleSelect(props, option);
|
||||
} else {
|
||||
handleSingleSelect(props, option);
|
||||
if (props.multiple) {
|
||||
handleMultipleSelect(props, option);
|
||||
} else {
|
||||
handleSingleSelect(props, option);
|
||||
|
||||
setOpen(false);
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Check
|
||||
className={cn(
|
||||
"mr-2 size-4 opacity-0",
|
||||
!props.multiple && props.value === option.value && "opacity-100",
|
||||
props.multiple && props.value?.includes(option.value) && "opacity-100",
|
||||
)}
|
||||
/>
|
||||
{option.label}
|
||||
</CommandItem>
|
||||
))}
|
||||
</div>
|
||||
</ScrollArea>
|
||||
</CommandGroup>
|
||||
setOpen(false);
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Check
|
||||
className={cn(
|
||||
"mr-2 size-4 opacity-0",
|
||||
!props.multiple && props.value === option.value && "opacity-100",
|
||||
props.multiple && props.value?.includes(option.value) && "opacity-100",
|
||||
)}
|
||||
/>
|
||||
{option.label}
|
||||
</CommandItem>
|
||||
))}
|
||||
</CommandGroup>
|
||||
</CommandList>
|
||||
</Command>
|
||||
</PopoverContent>
|
||||
</Popover>
|
||||
|
||||
@ -19,7 +19,7 @@ export const Command = forwardRef<
|
||||
|
||||
Command.displayName = CommandPrimitive.displayName;
|
||||
|
||||
interface CommandDialogProps extends DialogProps {}
|
||||
type CommandDialogProps = DialogProps;
|
||||
|
||||
export const CommandDialog = ({ children, ...props }: CommandDialogProps) => (
|
||||
<Dialog {...props}>
|
||||
@ -108,7 +108,7 @@ export const CommandItem = forwardRef<
|
||||
<CommandPrimitive.Item
|
||||
ref={ref}
|
||||
className={cn(
|
||||
"relative flex cursor-default select-none items-center rounded px-2 py-1.5 text-sm outline-none aria-selected:bg-secondary/40 aria-selected:text-secondary-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
||||
"relative flex cursor-default select-none items-center rounded px-2 py-1.5 text-sm outline-none aria-selected:bg-secondary/40 aria-selected:text-secondary-foreground data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50",
|
||||
className,
|
||||
)}
|
||||
{...props}
|
||||
|
||||
@ -440,7 +440,12 @@ export const RichInput = forwardRef<Editor, RichInputProps>(
|
||||
Image,
|
||||
Underline,
|
||||
Highlight,
|
||||
Link.configure({ openOnClick: false }),
|
||||
Link.extend({
|
||||
inclusive: false,
|
||||
addKeyboardShortcuts: () => ({
|
||||
"Mod-k": () => setLink(),
|
||||
}),
|
||||
}).configure({ openOnClick: false }),
|
||||
TextAlign.configure({ types: ["heading", "paragraph"] }),
|
||||
],
|
||||
editorProps: {
|
||||
@ -456,6 +461,24 @@ export const RichInput = forwardRef<Editor, RichInputProps>(
|
||||
onUpdate: ({ editor }) => onChange?.(editor.getHTML()),
|
||||
});
|
||||
|
||||
const setLink = useCallback(() => {
|
||||
if (!editor) return false;
|
||||
|
||||
const previousUrl = editor.getAttributes("link").href;
|
||||
const url = window.prompt("URL", previousUrl);
|
||||
|
||||
// cancelled
|
||||
if (url === null) return false;
|
||||
|
||||
// empty
|
||||
if (url === "") {
|
||||
return editor.chain().focus().extendMarkRange("link").unsetLink().run();
|
||||
}
|
||||
|
||||
// update link
|
||||
return editor.chain().focus().extendMarkRange("link").setLink({ href: url }).run();
|
||||
}, [editor]);
|
||||
|
||||
if (!editor) {
|
||||
return (
|
||||
<div className="space-y-2">
|
||||
|
||||
@ -5,17 +5,17 @@
|
||||
"esModuleInterop": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"types": ["vite/client", "vitest"],
|
||||
"types": ["vite/client", "vitest"]
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json",
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
],
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"extends": "../../tsconfig.base.json"
|
||||
}
|
||||
|
||||
@ -9,10 +9,10 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@swc/helpers": "~0.5.2",
|
||||
"@swc/helpers": "~0.5.6",
|
||||
"dayjs": "^1.11.10",
|
||||
"clsx": "^2.0.0",
|
||||
"tailwind-merge": "^2.0.0",
|
||||
"clsx": "^2.1.0",
|
||||
"tailwind-merge": "^2.2.1",
|
||||
"papaparse": "^5.4.1",
|
||||
"unique-names-generator": "^4.7.1"
|
||||
}
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
export const hexToRgb = (hex: string, alpha: number = 0) => {
|
||||
export const hexToRgb = (hex: string, alpha = 0) => {
|
||||
const r = parseInt(hex.slice(1, 3), 16),
|
||||
g = parseInt(hex.slice(3, 5), 16),
|
||||
b = parseInt(hex.slice(5, 7), 16);
|
||||
|
||||
@ -14,6 +14,12 @@ export const languages: Language[] = [
|
||||
editorCode: "af",
|
||||
locale: "af-ZA",
|
||||
},
|
||||
{
|
||||
id: "sq",
|
||||
name: "Albanian",
|
||||
editorCode: "sq",
|
||||
locale: "sq-AL",
|
||||
},
|
||||
{
|
||||
id: "am",
|
||||
name: "Amharic",
|
||||
@ -26,24 +32,36 @@ export const languages: Language[] = [
|
||||
editorCode: "ar",
|
||||
locale: "ar-SA",
|
||||
},
|
||||
{
|
||||
id: "bg",
|
||||
name: "Bulgarian",
|
||||
editorCode: "bg",
|
||||
locale: "bg-BG",
|
||||
},
|
||||
{
|
||||
id: "bn",
|
||||
name: "Bengali",
|
||||
editorCode: "bn",
|
||||
locale: "bn-BD",
|
||||
},
|
||||
{
|
||||
id: "bg",
|
||||
name: "Bulgarian",
|
||||
editorCode: "bg",
|
||||
locale: "bg-BG",
|
||||
},
|
||||
{
|
||||
id: "ca",
|
||||
name: "Catalan",
|
||||
editorCode: "ca",
|
||||
locale: "ca-ES",
|
||||
},
|
||||
{
|
||||
id: "zh-CN",
|
||||
name: "Chinese Simplified",
|
||||
editorCode: "zhcn",
|
||||
locale: "zh-CN",
|
||||
},
|
||||
{
|
||||
id: "zh-TW",
|
||||
name: "Chinese Traditional",
|
||||
editorCode: "zhtw",
|
||||
locale: "zh-TW",
|
||||
},
|
||||
{
|
||||
id: "cs",
|
||||
name: "Czech",
|
||||
@ -57,16 +75,10 @@ export const languages: Language[] = [
|
||||
locale: "da-DK",
|
||||
},
|
||||
{
|
||||
id: "de",
|
||||
name: "German",
|
||||
editorCode: "de",
|
||||
locale: "de-DE",
|
||||
},
|
||||
{
|
||||
id: "el",
|
||||
name: "Greek",
|
||||
editorCode: "el",
|
||||
locale: "el-GR",
|
||||
id: "nl",
|
||||
name: "Dutch",
|
||||
editorCode: "nl",
|
||||
locale: "nl-NL",
|
||||
},
|
||||
{
|
||||
id: "en",
|
||||
@ -74,18 +86,6 @@ export const languages: Language[] = [
|
||||
editorCode: "en",
|
||||
locale: "en-US",
|
||||
},
|
||||
{
|
||||
id: "es-ES",
|
||||
name: "Spanish",
|
||||
editorCode: "es",
|
||||
locale: "es-ES",
|
||||
},
|
||||
{
|
||||
id: "fa",
|
||||
name: "Persian",
|
||||
editorCode: "fa",
|
||||
locale: "fa-IR",
|
||||
},
|
||||
{
|
||||
id: "fi",
|
||||
name: "Finnish",
|
||||
@ -98,6 +98,18 @@ export const languages: Language[] = [
|
||||
editorCode: "fr",
|
||||
locale: "fr-FR",
|
||||
},
|
||||
{
|
||||
id: "de",
|
||||
name: "German",
|
||||
editorCode: "de",
|
||||
locale: "de-DE",
|
||||
},
|
||||
{
|
||||
id: "el",
|
||||
name: "Greek",
|
||||
editorCode: "el",
|
||||
locale: "el-GR",
|
||||
},
|
||||
{
|
||||
id: "he",
|
||||
name: "Hebrew",
|
||||
@ -134,24 +146,30 @@ export const languages: Language[] = [
|
||||
editorCode: "ja",
|
||||
locale: "ja-JP",
|
||||
},
|
||||
{
|
||||
id: "km",
|
||||
name: "Khmer",
|
||||
editorCode: "km",
|
||||
locale: "km-KH",
|
||||
},
|
||||
{
|
||||
id: "kn",
|
||||
name: "Kannada",
|
||||
editorCode: "kn",
|
||||
locale: "kn-IN",
|
||||
},
|
||||
{
|
||||
id: "km",
|
||||
name: "Khmer",
|
||||
editorCode: "km",
|
||||
locale: "km-KH",
|
||||
},
|
||||
{
|
||||
id: "ko",
|
||||
name: "Korean",
|
||||
editorCode: "ko",
|
||||
locale: "ko-KR",
|
||||
},
|
||||
{
|
||||
id: "lv",
|
||||
name: "Latvian",
|
||||
editorCode: "lv",
|
||||
locale: "lv-LV",
|
||||
},
|
||||
{
|
||||
id: "lt",
|
||||
name: "Lithuanian",
|
||||
@ -176,12 +194,6 @@ export const languages: Language[] = [
|
||||
editorCode: "nenp",
|
||||
locale: "ne-NP",
|
||||
},
|
||||
{
|
||||
id: "nl",
|
||||
name: "Dutch",
|
||||
editorCode: "nl",
|
||||
locale: "nl-NL",
|
||||
},
|
||||
{
|
||||
id: "no",
|
||||
name: "Norwegian",
|
||||
@ -194,24 +206,30 @@ export const languages: Language[] = [
|
||||
editorCode: "or",
|
||||
locale: "or-IN",
|
||||
},
|
||||
{
|
||||
id: "fa",
|
||||
name: "Persian",
|
||||
editorCode: "fa",
|
||||
locale: "fa-IR",
|
||||
},
|
||||
{
|
||||
id: "pl",
|
||||
name: "Polish",
|
||||
editorCode: "pl",
|
||||
locale: "pl-PL",
|
||||
},
|
||||
{
|
||||
id: "pt-BR",
|
||||
name: "Portuguese, Brazilian",
|
||||
editorCode: "ptbr",
|
||||
locale: "pt-BR",
|
||||
},
|
||||
{
|
||||
id: "pt-PT",
|
||||
name: "Portuguese",
|
||||
editorCode: "pt",
|
||||
locale: "pt-PT",
|
||||
},
|
||||
{
|
||||
id: "pt-BR",
|
||||
name: "Portuguese, Brazilian",
|
||||
editorCode: "ptbr",
|
||||
locale: "pt-BR",
|
||||
},
|
||||
{
|
||||
id: "ro",
|
||||
name: "Romanian",
|
||||
@ -230,6 +248,12 @@ export const languages: Language[] = [
|
||||
editorCode: "sr",
|
||||
locale: "sr-SP",
|
||||
},
|
||||
{
|
||||
id: "es-ES",
|
||||
name: "Spanish",
|
||||
editorCode: "es",
|
||||
locale: "es-ES",
|
||||
},
|
||||
{
|
||||
id: "sv-SE",
|
||||
name: "Swedish",
|
||||
@ -266,22 +290,16 @@ export const languages: Language[] = [
|
||||
editorCode: "uk",
|
||||
locale: "uk-UA",
|
||||
},
|
||||
{
|
||||
id: "uz",
|
||||
name: "Uzbek",
|
||||
editorCode: "uz",
|
||||
locale: "uz-UZ",
|
||||
},
|
||||
{
|
||||
id: "vi",
|
||||
name: "Vietnamese",
|
||||
editorCode: "vi",
|
||||
locale: "vi-VN",
|
||||
},
|
||||
{
|
||||
id: "zh-CN",
|
||||
name: "Chinese Simplified",
|
||||
editorCode: "zhcn",
|
||||
locale: "zh-CN",
|
||||
},
|
||||
{
|
||||
id: "zh-TW",
|
||||
name: "Chinese Traditional",
|
||||
editorCode: "zhtw",
|
||||
locale: "zh-TW",
|
||||
},
|
||||
];
|
||||
|
||||
@ -8,16 +8,16 @@
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json",
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
],
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
104
package.json
104
package.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@reactive-resume/source",
|
||||
"description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
|
||||
"version": "4.0.5",
|
||||
"version": "4.0.9",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"author": {
|
||||
@ -29,33 +29,33 @@
|
||||
"messages:extract": "pnpm exec lingui extract --clean --overwrite"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.24.0",
|
||||
"@babel/preset-react": "^7.23.3",
|
||||
"@babel/core": "^7.24.3",
|
||||
"@babel/preset-react": "^7.24.1",
|
||||
"@lingui/cli": "^4.7.1",
|
||||
"@lingui/conf": "^4.7.1",
|
||||
"@lingui/swc-plugin": "^4.0.6",
|
||||
"@lingui/vite-plugin": "^4.7.1",
|
||||
"@nestjs/schematics": "^10.1.1",
|
||||
"@nestjs/testing": "^10.3.3",
|
||||
"@nx/eslint": "18.0.8",
|
||||
"@nx/eslint-plugin": "18.0.8",
|
||||
"@nx/jest": "18.0.8",
|
||||
"@nx/js": "18.0.8",
|
||||
"@nx/nest": "18.0.8",
|
||||
"@nx/node": "18.0.8",
|
||||
"@nx/react": "18.0.8",
|
||||
"@nx/vite": "18.0.8",
|
||||
"@nx/web": "18.0.8",
|
||||
"@nx/webpack": "18.0.8",
|
||||
"@nx/workspace": "18.0.8",
|
||||
"@nestjs/testing": "^10.3.5",
|
||||
"@nx/eslint": "18.1.2",
|
||||
"@nx/eslint-plugin": "18.1.2",
|
||||
"@nx/jest": "18.1.2",
|
||||
"@nx/js": "18.1.2",
|
||||
"@nx/nest": "18.1.2",
|
||||
"@nx/node": "18.1.2",
|
||||
"@nx/react": "18.1.2",
|
||||
"@nx/vite": "18.1.2",
|
||||
"@nx/web": "18.1.2",
|
||||
"@nx/webpack": "18.1.2",
|
||||
"@nx/workspace": "18.1.2",
|
||||
"@swc-node/register": "~1.9.0",
|
||||
"@swc/cli": "~0.3.10",
|
||||
"@swc/core": "~1.4.6",
|
||||
"@swc/core": "~1.4.8",
|
||||
"@tailwindcss/container-queries": "^0.1.1",
|
||||
"@tailwindcss/forms": "^0.5.7",
|
||||
"@tailwindcss/typography": "^0.5.10",
|
||||
"@tanstack/eslint-plugin-query": "^5.20.1",
|
||||
"@testing-library/react": "14.2.1",
|
||||
"@tanstack/eslint-plugin-query": "^5.28.6",
|
||||
"@testing-library/react": "14.2.2",
|
||||
"@types/async-retry": "^1.4.8",
|
||||
"@types/bcryptjs": "^2.4.6",
|
||||
"@types/cookie-parser": "^1.4.7",
|
||||
@ -66,25 +66,25 @@
|
||||
"@types/lodash.get": "^4.4.9",
|
||||
"@types/lodash.set": "^4.3.9",
|
||||
"@types/multer": "^1.4.11",
|
||||
"@types/node": "20.11.25",
|
||||
"@types/node": "20.11.30",
|
||||
"@types/nodemailer": "^6.4.14",
|
||||
"@types/papaparse": "^5.3.14",
|
||||
"@types/passport": "^1.0.16",
|
||||
"@types/passport-github2": "^1.2.9",
|
||||
"@types/passport-google-oauth20": "^2.0.14",
|
||||
"@types/passport-local": "^1.0.38",
|
||||
"@types/react": "18.2.64",
|
||||
"@types/react-dom": "18.2.21",
|
||||
"@types/react": "18.2.67",
|
||||
"@types/react-dom": "18.2.22",
|
||||
"@types/react-is": "18.2.4",
|
||||
"@types/retry": "^0.12.5",
|
||||
"@types/webfontloader": "^1.6.38",
|
||||
"@typescript-eslint/eslint-plugin": "^7.1.1",
|
||||
"@typescript-eslint/parser": "^7.1.1",
|
||||
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
||||
"@typescript-eslint/parser": "^7.3.1",
|
||||
"@vitejs/plugin-react": "~4.2.1",
|
||||
"@vitejs/plugin-react-swc": "~3.6.0",
|
||||
"@vitest/coverage-v8": "^1.3.1",
|
||||
"@vitest/ui": "~1.3.1",
|
||||
"autoprefixer": "^10.4.18",
|
||||
"@vitest/coverage-v8": "^1.4.0",
|
||||
"@vitest/ui": "~1.4.0",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"babel-plugin-macros": "^3.1.0",
|
||||
"eslint": "~8.57.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
@ -92,27 +92,27 @@
|
||||
"eslint-plugin-jsx-a11y": "6.8.0",
|
||||
"eslint-plugin-lingui": "^0.3.0",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-react": "7.34.0",
|
||||
"eslint-plugin-react": "7.34.1",
|
||||
"eslint-plugin-react-hooks": "4.6.0",
|
||||
"eslint-plugin-simple-import-sort": "^12.0.0",
|
||||
"eslint-plugin-tailwindcss": "^3.14.3",
|
||||
"eslint-plugin-tailwindcss": "^3.15.1",
|
||||
"eslint-plugin-unused-imports": "^3.1.0",
|
||||
"jest": "^29.7.0",
|
||||
"jest-environment-node": "^29.7.0",
|
||||
"jsdom": "~24.0.0",
|
||||
"nx": "18.0.8",
|
||||
"postcss": "8.4.35",
|
||||
"postcss-import": "^16.0.1",
|
||||
"nx": "18.1.2",
|
||||
"postcss": "8.4.38",
|
||||
"postcss-import": "^16.1.0",
|
||||
"postcss-nested": "^6.0.1",
|
||||
"prettier": "^3.2.5",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"ts-jest": "^29.1.2",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "~5.4.2",
|
||||
"vite": "~5.1.5",
|
||||
"typescript": "~5.4.3",
|
||||
"vite": "~5.2.2",
|
||||
"vite-plugin-dts": "~3.7.3",
|
||||
"vitest": "~1.3.1"
|
||||
"vitest": "~1.4.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@dnd-kit/core": "^6.1.0",
|
||||
@ -125,21 +125,21 @@
|
||||
"@lingui/detect-locale": "^4.7.1",
|
||||
"@lingui/macro": "^4.7.1",
|
||||
"@lingui/react": "^4.7.1",
|
||||
"@nestjs-modules/mailer": "^1.11.2",
|
||||
"@nestjs-modules/mailer": "^1.10.3",
|
||||
"@nestjs/axios": "^3.0.2",
|
||||
"@nestjs/common": "^10.3.3",
|
||||
"@nestjs/common": "^10.3.5",
|
||||
"@nestjs/config": "^3.2.0",
|
||||
"@nestjs/core": "^10.3.3",
|
||||
"@nestjs/core": "^10.3.5",
|
||||
"@nestjs/jwt": "^10.2.0",
|
||||
"@nestjs/passport": "^10.0.3",
|
||||
"@nestjs/platform-express": "^10.3.3",
|
||||
"@nestjs/platform-express": "^10.3.5",
|
||||
"@nestjs/serve-static": "^4.0.1",
|
||||
"@nestjs/swagger": "^7.3.0",
|
||||
"@nestjs/terminus": "^10.2.3",
|
||||
"@paralleldrive/cuid2": "^2.2.2",
|
||||
"@pdf-lib/fontkit": "^1.1.1",
|
||||
"@phosphor-icons/react": "^2.0.15",
|
||||
"@prisma/client": "^5.10.2",
|
||||
"@prisma/client": "^5.11.0",
|
||||
"@radix-ui/react-accordion": "^1.1.2",
|
||||
"@radix-ui/react-alert-dialog": "^1.0.5",
|
||||
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
||||
@ -163,11 +163,11 @@
|
||||
"@radix-ui/react-toggle": "^1.0.3",
|
||||
"@radix-ui/react-toggle-group": "^1.0.4",
|
||||
"@radix-ui/react-tooltip": "^1.0.7",
|
||||
"@sentry/node": "^7.106.0",
|
||||
"@sentry/node": "^7.108.0",
|
||||
"@songkeys/nestjs-redis": "^10.0.0",
|
||||
"@songkeys/nestjs-redis-health": "^10.0.0",
|
||||
"@swc/helpers": "~0.5.6",
|
||||
"@tanstack/react-query": "^5.25.0",
|
||||
"@swc/helpers": "~0.5.7",
|
||||
"@tanstack/react-query": "^5.28.6",
|
||||
"@tiptap/extension-highlight": "2.2.4",
|
||||
"@tiptap/extension-image": "2.2.4",
|
||||
"@tiptap/extension-link": "2.2.4",
|
||||
@ -178,7 +178,7 @@
|
||||
"@tiptap/starter-kit": "^2.2.4",
|
||||
"@types/passport-jwt": "^4.0.1",
|
||||
"async-retry": "^1.3.3",
|
||||
"axios": "^1.6.7",
|
||||
"axios": "^1.6.8",
|
||||
"axios-auth-refresh": "^3.3.6",
|
||||
"bcryptjs": "^2.4.3",
|
||||
"class-variance-authority": "^0.7.0",
|
||||
@ -188,7 +188,7 @@
|
||||
"dayjs": "^1.11.10",
|
||||
"deepmerge": "^4.3.1",
|
||||
"file-saver": "^2.0.5",
|
||||
"framer-motion": "^11.0.8",
|
||||
"framer-motion": "^11.0.20",
|
||||
"fuzzy": "^0.1.3",
|
||||
"helmet": "^7.1.0",
|
||||
"immer": "^10.0.4",
|
||||
@ -202,8 +202,8 @@
|
||||
"nestjs-minio-client": "^2.2.0",
|
||||
"nestjs-prisma": "^0.23.0",
|
||||
"nestjs-zod": "^3.0.0",
|
||||
"nodemailer": "^6.9.12",
|
||||
"openai": "^4.28.4",
|
||||
"nodemailer": "^6.9.13",
|
||||
"openai": "^4.29.2",
|
||||
"otplib": "^12.0.1",
|
||||
"papaparse": "^5.4.1",
|
||||
"passport": "^0.7.0",
|
||||
@ -212,22 +212,22 @@
|
||||
"passport-jwt": "^4.0.1",
|
||||
"passport-local": "^1.0.0",
|
||||
"pdf-lib": "^1.17.1",
|
||||
"prisma": "^5.10.2",
|
||||
"puppeteer": "^22.4.1",
|
||||
"prisma": "^5.11.0",
|
||||
"puppeteer": "^22.6.0",
|
||||
"qrcode.react": "^3.1.0",
|
||||
"react": "18.2.0",
|
||||
"react-colorful": "^5.6.1",
|
||||
"react-dom": "18.2.0",
|
||||
"react-helmet-async": "^2.0.4",
|
||||
"react-hook-form": "^7.51.0",
|
||||
"react-parallax-tilt": "^1.7.214",
|
||||
"react-resizable-panels": "^2.0.12",
|
||||
"react-hook-form": "^7.51.1",
|
||||
"react-parallax-tilt": "^1.7.217",
|
||||
"react-resizable-panels": "^2.0.13",
|
||||
"react-router-dom": "6.22.3",
|
||||
"react-zoom-pan-pinch": "^3.4.3",
|
||||
"reflect-metadata": "^0.2.1",
|
||||
"rxjs": "^7.8.1",
|
||||
"sharp": "^0.33.2",
|
||||
"tailwind-merge": "^2.2.1",
|
||||
"tailwind-merge": "^2.2.2",
|
||||
"tslib": "^2.6.2",
|
||||
"unique-names-generator": "^4.7.1",
|
||||
"use-breakpoint": "^4.0.1",
|
||||
|
||||
3923
pnpm-lock.yaml
generated
3923
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -41,16 +41,16 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: browserless/chrome:1.61.0-puppeteer-21.4.1
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${CHROME_PORT:-8080}:3000
|
||||
environment:
|
||||
KEEP_ALIVE: true
|
||||
CONNECTION_TIMEOUT: 10000
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
TOKEN: ${CHROME_TOKEN:-chrome_token}
|
||||
EXIT_ON_HEALTH_FAILURE: true
|
||||
PRE_REQUEST_HEALTH_CHECK: true
|
||||
TOKEN: ${CHROME_TOKEN:-chrome_token}
|
||||
|
||||
# Redis (for cache & server session management)
|
||||
redis:
|
||||
|
||||
@ -39,9 +39,11 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: browserless/chrome:1.61.0-puppeteer-21.4.1
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: true
|
||||
PRE_REQUEST_HEALTH_CHECK: true
|
||||
|
||||
@ -36,9 +36,11 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: browserless/chrome:1.61.0-puppeteer-21.4.1
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: true
|
||||
PRE_REQUEST_HEALTH_CHECK: true
|
||||
@ -66,7 +68,7 @@ services:
|
||||
|
||||
# -- URLs --
|
||||
PUBLIC_URL: http://localhost:3000
|
||||
STORAGE_URL: http://localhost:9000
|
||||
STORAGE_URL: http://localhost:9000/default
|
||||
|
||||
# -- Printer (Chrome) --
|
||||
CHROME_TOKEN: chrome_token
|
||||
|
||||
@ -50,11 +50,15 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: browserless/chrome:1.61.0-puppeteer-21.4.1
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
networks:
|
||||
- reactive_resume_network
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: true
|
||||
PRE_REQUEST_HEALTH_CHECK: true
|
||||
deploy:
|
||||
replicas: 2
|
||||
restart_policy:
|
||||
|
||||
@ -41,9 +41,11 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: browserless/chrome:1.61.0-puppeteer-21.4.1
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: true
|
||||
PRE_REQUEST_HEALTH_CHECK: true
|
||||
|
||||
@ -39,9 +39,11 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: browserless/chrome:1.61.0-puppeteer-21.4.1
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: true
|
||||
PRE_REQUEST_HEALTH_CHECK: true
|
||||
|
||||
Reference in New Issue
Block a user