diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..c1197ac21 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,55 @@ +name: CI +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + cancel: + runs-on: ubuntu-latest + steps: + - name: Cancel Previous Runs + uses: styfle/cancel-workflow-action@0.9.1 + with: + access_token: ${{ github.token }} + + build: + environment: PRODUCTION + needs: cancel + runs-on: ubuntu-latest + steps: + - name: Deploy + if: github.ref == 'refs/heads/main' + uses: appleboy/ssh-action@v0.1.8 + with: + host: ${{ secrets.HOST }} + username: ${{ secrets.USERNAME }} + port: ${{ secrets.PORT }} + password: ${{ secrets.PASSWORD }} + script: | + echo "Stage 1: Go to git folder" + cd Reactive-Resume + + echo "Stage 2: Checkout to branch main" + git checkout main + + echo "Stage 3: Pull code from branch main" + git pull origin main + + echo "Stage 4: Build app from Dockfile" + docker build -t app-resume . + + echo "Stage 5: Stop and remove old container" + docker stop app-resume || true && docker rm app-resume || true + + echo "Stage 6: Run app" + docker run -d --env-file ./.env -p 3000:3000 --network reactive-resume_default --restart unless-stopped --name app-resume app-resume + + echo "Stage 7: Remove old images" + docker image prune -af + + echo "Done!" diff --git a/.github/workflows/lint-test-build.yml b/.github/workflows/lint-test-build.yml deleted file mode 100644 index e8850f063..000000000 --- a/.github/workflows/lint-test-build.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: Lint, Test & Build - -concurrency: - group: "${{ github.workflow }}-${{ github.ref }}" - cancel-in-progress: true - -on: - workflow_dispatch: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - main: - runs-on: ubuntu-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v4.1.1 - with: - fetch-depth: 2 - - - name: Setup pnpm - uses: pnpm/action-setup@v3.0.0 - - - name: Setup Node.js - uses: actions/setup-node@v4.0.2 - with: - cache: "pnpm" - node-version: 20.17.0 - - - name: Install Dependencies - run: pnpm install --frozen-lockfile - - - name: Lint - run: pnpm lint - - - name: Format - run: pnpm format:check - - - name: Test - run: pnpm test - - - name: Build - run: pnpm build - env: - NODE_ENV: production - NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} diff --git a/.github/workflows/publish-docker-image.yml b/.github/workflows/publish-docker-image.yml deleted file mode 100644 index ed61c5ca8..000000000 --- a/.github/workflows/publish-docker-image.yml +++ /dev/null @@ -1,163 +0,0 @@ -name: Publish Docker Image - -on: - workflow_dispatch: - push: - tags: - - "*" - -concurrency: - group: "${{ github.workflow }}-${{ github.ref }}" - cancel-in-progress: true - -env: - IMAGE: amruthpillai/reactive-resume - -jobs: - build: - runs-on: ubuntu-latest - - outputs: - version: ${{ steps.version.outputs.version }} - - strategy: - matrix: - platform: - - linux/amd64 - - linux/arm64 - - steps: - - name: Checkout Repository - uses: actions/checkout@v4.1.4 - - - name: Extract version from package.json - id: version - run: echo "version=$(jq -r '.version' package.json)" >> "$GITHUB_OUTPUT" - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3.0.0 - - - name: Login to Docker Hub - uses: docker/login-action@v3.1.0 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_TOKEN }} - - - name: Login to GitHub Container Registery - uses: docker/login-action@v3.1.0 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ github.token }} - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.3.0 - - - name: Extract Docker Metadata - id: meta - uses: docker/metadata-action@v5.5.1 - with: - tags: type=semver,pattern={{version}},prefix=v,value=${{ steps.version.outputs.version }} - images: | - ${{ env.IMAGE }} - ghcr.io/${{ env.IMAGE }} - - - name: Prepare a unique name for Artifacts - id: artifact_name - run: | - name=$(echo -n "${{ matrix.platform }}" | sed -e 's/[ \t:\/\\"<>|*?]/-/g' -e 's/--*/-/g') - echo "name=$name" >> "$GITHUB_OUTPUT" - - - name: Build and Push by Digest - uses: docker/build-push-action@v5.3.0 - id: build - with: - context: . - platforms: ${{ matrix.platform }} - labels: ${{ steps.meta.outputs.labels }} - outputs: type=image,name=${{ env.IMAGE }},push-by-digest=true,name-canonical=true,push=true - build-args: | - NX_CLOUD_ACCESS_TOKEN=${{ secrets.NX_CLOUD_ACCESS_TOKEN }} - - - name: Export Digest - run: | - mkdir -p /tmp/digests - digest="${{ steps.build.outputs.digest }}" - touch "/tmp/digests/${digest#sha256:}" - - - name: Upload Digest - uses: actions/upload-artifact@v4.3.3 - with: - name: digests-${{ steps.artifact_name.outputs.name }} - path: /tmp/digests/* - if-no-files-found: error - retention-days: 1 - - merge: - runs-on: ubuntu-latest - - needs: - - build - - steps: - - name: Checkout Repository - uses: actions/checkout@v4.1.4 - - - name: Download Digest - uses: actions/download-artifact@v4.1.7 - with: - path: /tmp/digests - pattern: digests-* - merge-multiple: true - - - name: Login to Docker Hub - uses: docker/login-action@v3.1.0 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_TOKEN }} - - - name: Login to GitHub Container Registery - uses: docker/login-action@v3.1.0 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ github.token }} - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.3.0 - - - name: Extract Docker Metadata - id: meta - uses: docker/metadata-action@v5.5.1 - with: - tags: type=semver,pattern={{version}},prefix=v,value=${{ needs.build.outputs.version }} - images: | - ${{ env.IMAGE }} - ghcr.io/${{ env.IMAGE }} - - - name: Create Docker Manifest List and Push - working-directory: /tmp/digests - run: | - docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ - $(printf '${{ env.IMAGE }}@sha256:%s ' *) - - - name: Inspect Image - run: | - docker buildx imagetools inspect ${{ env.IMAGE }}:${{ steps.meta.outputs.version }} - - - name: Update Repository Description - uses: peter-evans/dockerhub-description@v4.0.0 - with: - repository: ${{ github.repository }} - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_TOKEN }} - - - uses: sarisia/actions-status-discord@v1.14.3 - if: always() - with: - username: ReleaseBot - webhook: ${{ secrets.DISCORD_WEBHOOK }} - status: ${{ job.status }} - title: "Release `${{ steps.meta.outputs.version }}`" - description: "A new version of Reactive Resume just dropped! 🚀" - url: "https://github.com/AmruthPillai/Reactive-Resume" diff --git a/.github/workflows/sync-crowdin-translations.yml b/.github/workflows/sync-crowdin-translations.yml deleted file mode 100644 index 48042f217..000000000 --- a/.github/workflows/sync-crowdin-translations.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Sync Crowdin Translations - -on: - workflow_dispatch: - schedule: - - cron: 0 0 * * * # everyday at midnight (UTC) - -jobs: - sync: - if: github.repository == 'AmruthPillai/Reactive-Resume' - runs-on: ubuntu-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v4.1.1 - - - name: Sync Translations - uses: crowdin/github-action@v1.15.2 - with: - upload_sources: true - upload_translations: true - download_translations: true - create_pull_request: true - localization_branch_name: "l10n" - pull_request_base_branch_name: "main" - pull_request_title: "New Translations from Crowdin" - pull_request_body: "You've got new translations to be merged into the app from contributors on Crowdin.\n\n_This pull request was automatically created by the [Crowdin Action](https://github.com/marketplace/actions/crowdin-action)._" - env: - GITHUB_TOKEN: ${{ github.token }} - CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} - CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/apps/artboard/index.html b/apps/artboard/index.html index e4b13a8d9..179c3a60a 100644 --- a/apps/artboard/index.html +++ b/apps/artboard/index.html @@ -4,10 +4,10 @@ - Reactive Resume - A free and open-source resume builder + Reactive Resume - Talent Resume diff --git a/apps/client/index.html b/apps/client/index.html index bdfca8c4f..d51d7bbb5 100644 --- a/apps/client/index.html +++ b/apps/client/index.html @@ -4,10 +4,10 @@ - Reactive Resume - A free and open-source resume builder + Reactive Resume - Talent Resume diff --git a/apps/client/public/icon/dark.svg b/apps/client/public/icon/dark.svg index 1709463fd..5cfa253ea 100644 --- a/apps/client/public/icon/dark.svg +++ b/apps/client/public/icon/dark.svg @@ -1,8 +1,26 @@ - - - + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/client/public/icon/light.svg b/apps/client/public/icon/light.svg index 8208f4eb1..933363271 100644 --- a/apps/client/public/icon/light.svg +++ b/apps/client/public/icon/light.svg @@ -1,8 +1,26 @@ - - - + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/client/public/logo/dark.svg b/apps/client/public/logo/dark.svg index 03bf41901..028abbd4a 100644 --- a/apps/client/public/logo/dark.svg +++ b/apps/client/public/logo/dark.svg @@ -1,18 +1,26 @@ - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/client/public/logo/light.svg b/apps/client/public/logo/light.svg index 6a7ffcae0..084707efa 100644 --- a/apps/client/public/logo/light.svg +++ b/apps/client/public/logo/light.svg @@ -1,18 +1,26 @@ - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/client/src/components/icon.tsx b/apps/client/src/components/icon.tsx index 6f72cdbed..2f4b2d272 100644 --- a/apps/client/src/components/icon.tsx +++ b/apps/client/src/components/icon.tsx @@ -12,11 +12,11 @@ export const Icon = ({ size = 32, className }: Props) => { let src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"; switch (isDarkMode) { - case false: { + case true: { src = "/icon/dark.svg"; break; } - case true: { + case false: { src = "/icon/light.svg"; break; } diff --git a/apps/client/src/components/logo.tsx b/apps/client/src/components/logo.tsx index b0e60d0a6..c38e4af8b 100644 --- a/apps/client/src/components/logo.tsx +++ b/apps/client/src/components/logo.tsx @@ -9,18 +9,7 @@ type Props = { export const Logo = ({ size = 32, className }: Props) => { const { isDarkMode } = useTheme(); - let src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"; - - switch (isDarkMode) { - case false: { - src = "/logo/light.svg"; - break; - } - case true: { - src = "/logo/dark.svg"; - break; - } - } + const src: string = isDarkMode ? "/logo/dark.svg" : "/logo/light.svg"; return ( المصادقة الثنائية عامل مفعل. سوف يط #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "أداة إنشاء سيرة ذاتية مجانية ومفتوحة المصدر" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "أداة إنشاء سيرة ذاتية مجانية ومفتوحة المصدر تعمل على تبسيط عملية إنشاء سيرتك الذاتية وتحديثها ومشاركتها." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/bg-BG/messages.po b/apps/client/src/locales/bg-BG/messages.po index 0b6b7d5bc..001eee06c 100644 --- a/apps/client/src/locales/bg-BG/messages.po +++ b/apps/client/src/locales/bg-BG/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Разрешено е двуфакторно удостоверява #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Безплатен конструктор на автобиографии с отворен код" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Безплатен конструктор на автобиографии с отворен код, който опростява процеса на създаване, актуализиране и споделяне на автобиографията ви." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/bn-BD/messages.po b/apps/client/src/locales/bn-BD/messages.po index 4e1cbb9d8..afcd9094f 100644 --- a/apps/client/src/locales/bn-BD/messages.po +++ b/apps/client/src/locales/bn-BD/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ca-ES/messages.po b/apps/client/src/locales/ca-ES/messages.po index f4ff7ac79..c39fd074b 100644 --- a/apps/client/src/locales/ca-ES/messages.po +++ b/apps/client/src/locales/ca-ES/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/cs-CZ/messages.po b/apps/client/src/locales/cs-CZ/messages.po index 4eb67467b..2682c7092 100644 --- a/apps/client/src/locales/cs-CZ/messages.po +++ b/apps/client/src/locales/cs-CZ/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Je povoleno dvoufaktorové ověřování. Při každém přihlá #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Bezplatný nástroj pro tvorbu životopisů s otevřeným zdrojovým kódem" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Bezplatný nástroj pro tvorbu životopisů s otevřeným zdrojovým kódem, který zjednodušuje proces vytváření, aktualizace a sdílení životopisů." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/da-DK/messages.po b/apps/client/src/locales/da-DK/messages.po index 1d1701a58..797483ed1 100644 --- a/apps/client/src/locales/da-DK/messages.po +++ b/apps/client/src/locales/da-DK/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Tofaktorgodkendelse er aktiveret. Du bliver bedt om at indtaste e #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "En gratis og open-source CV-bygger" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "En gratis og open-source CV-bygger, der forenkler processen med at oprette, opdatere og dele dit CV." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/de-DE/messages.po b/apps/client/src/locales/de-DE/messages.po index afb66d25b..74d32a578 100644 --- a/apps/client/src/locales/de-DE/messages.po +++ b/apps/client/src/locales/de-DE/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Zwei-Faktor-Authentifizierung ist aktiviert. Du wirst bei jeder A #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Ein kostenloser Open-Source-Lebenslauf-Builder" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Ein kostenloser Open-Source-Lebenslauf-Builder, der das Erstellen, Aktualisieren und Teilen Deines Lebenslaufs vereinfacht." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/el-GR/messages.po b/apps/client/src/locales/el-GR/messages.po index 8b14129d5..243a4bc5a 100644 --- a/apps/client/src/locales/el-GR/messages.po +++ b/apps/client/src/locales/el-GR/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων ε #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Ένας δωρεάν και ανοικτού κώδικα κατασκευαστής βιογραφικών σημειωμάτων" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Ένας δωρεάν κατασκευαστής βιογραφικών σημειωμάτων ανοικτού κώδικα που απλοποιεί τη διαδικασία δημιουργίας, ενημέρωσης και κοινοποίησης του βιογραφικού σας σημειώματος." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/en-US/messages.po b/apps/client/src/locales/en-US/messages.po index 878850b6d..86e2086c5 100644 --- a/apps/client/src/locales/en-US/messages.po +++ b/apps/client/src/locales/en-US/messages.po @@ -56,13 +56,13 @@ msgstr "<0>Two-factor authentication is enabled. You will be asked to enter #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" -msgstr "A free and open-source resume builder" +msgid "Talent Resume" +msgstr "Talent Resume" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." +msgstr "A free resume builder that simplifies the process of creating, updating, and sharing your resume." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 diff --git a/apps/client/src/locales/es-ES/messages.po b/apps/client/src/locales/es-ES/messages.po index 11e53eb37..abb0b192e 100644 --- a/apps/client/src/locales/es-ES/messages.po +++ b/apps/client/src/locales/es-ES/messages.po @@ -56,12 +56,12 @@ msgstr "<0>La autenticación de doble factor está habilitada. Se te pedirá #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Un creador de currículums gratuito y de código abierto" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Un creador de currículums gratuito y de código abierto que simplifica el proceso de crear, actualizar y compartir tu currículum." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/fa-IR/messages.po b/apps/client/src/locales/fa-IR/messages.po index dd3a92893..fcf7bab72 100644 --- a/apps/client/src/locales/fa-IR/messages.po +++ b/apps/client/src/locales/fa-IR/messages.po @@ -56,12 +56,12 @@ msgstr "<0>احراز هویت دو عاملی فعال است. در هر ب #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "یک رزومه ساز رایگان و منبع باز" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "یک رزومه ساز رایگان و منبع باز که فرآیند ایجاد، به روز رسانی و به اشتراک گذاری رزومه شما را ساده می کند." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/fi-FI/messages.po b/apps/client/src/locales/fi-FI/messages.po index 761080a97..5450b5d64 100644 --- a/apps/client/src/locales/fi-FI/messages.po +++ b/apps/client/src/locales/fi-FI/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Kaksivaiheinen todennus on käytössä. Sinua pyydetään syött #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Ilmainen ja avoimen lähdekoodin ansioluettelon rakentaja" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Ilmainen ja avoimen lähdekoodin ansioluettelon rakentaja, joka yksinkertaistaa ansioluettelon luomisen, päivittämisen ja jakamisen prosessia." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/fr-FR/messages.po b/apps/client/src/locales/fr-FR/messages.po index aea028506..b3b804a6b 100644 --- a/apps/client/src/locales/fr-FR/messages.po +++ b/apps/client/src/locales/fr-FR/messages.po @@ -56,12 +56,12 @@ msgstr "<0>L'authentification à deux facteurs est activée. Il vous sera de #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Un générateur de CV gratuit et open-source" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Un générateur de CV gratuit et open-source qui simplifie le processus de création, de mise à jour et de partage de votre CV." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/he-IL/messages.po b/apps/client/src/locales/he-IL/messages.po index b9879a4fd..fc12e336b 100644 --- a/apps/client/src/locales/he-IL/messages.po +++ b/apps/client/src/locales/he-IL/messages.po @@ -56,12 +56,12 @@ msgstr "<0>אימות דו־שלבי פעיל. תופיע בקשה למלא #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "בונה קורות חיים חינמי בקוד פתוח" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "בונה קורות חיים חינמי בקוד פתוח שמפשט את תהליך יצירת, עדכון ושיתוף קורות החיים שלך." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/hi-IN/messages.po b/apps/client/src/locales/hi-IN/messages.po index 5b9c0e536..088f7df07 100644 --- a/apps/client/src/locales/hi-IN/messages.po +++ b/apps/client/src/locales/hi-IN/messages.po @@ -56,12 +56,12 @@ msgstr "<0>दो-कारक प्रमाणीकरण सक्षम #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "एक मुफ़्त और ओपन-सोर्स रेज़्युमे बिल्डर" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "एक मुफ़्त और ओपन-सोर्स रेज़्यूमे बिल्डर जो आपके रेज़्यूमे को बनाने, अपडेट करने और साझा करने की प्रक्रिया को सरल बनाता है।" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/hu-HU/messages.po b/apps/client/src/locales/hu-HU/messages.po index 56ab90cb7..11252e393 100644 --- a/apps/client/src/locales/hu-HU/messages.po +++ b/apps/client/src/locales/hu-HU/messages.po @@ -56,12 +56,12 @@ msgstr "<0>A kétfaktoros hitelesítés engedélyezve van. Minden bejelentke #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Ingyenes és nyílt forráskódú önéletrajzkészítő program" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Ingyenes és nyílt forráskódú önéletrajz készítő, amely leegyszerűsíti az önéletrajz készítésének, frissítésének és megosztásának folyamatát." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/id-ID/messages.po b/apps/client/src/locales/id-ID/messages.po index ec0f0c60c..1c631300f 100644 --- a/apps/client/src/locales/id-ID/messages.po +++ b/apps/client/src/locales/id-ID/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Autentikasi dua faktor diaktifkan. Anda akan diminta untuk memasu #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Pembuat resume gratis dan bersumber terbuka" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Pembuat resume gratis dan bersumber terbuka yang menyederhanakan proses pembuatan, pembaruan, dan berbagi resume Anda." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/it-IT/messages.po b/apps/client/src/locales/it-IT/messages.po index a0925bbf7..036738d21 100644 --- a/apps/client/src/locales/it-IT/messages.po +++ b/apps/client/src/locales/it-IT/messages.po @@ -56,12 +56,12 @@ msgstr "<0>L'autenticazione a due fattori è abilitata. Ti verrà chiesto di #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Un generatore di curriculum gratuito e open source" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Un generatore di curriculum gratuito e open source che semplifica il processo di creazione, aggiornamento e condivisione del tuo curriculum." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ja-JP/messages.po b/apps/client/src/locales/ja-JP/messages.po index 03b2b53ec..a7702a38d 100644 --- a/apps/client/src/locales/ja-JP/messages.po +++ b/apps/client/src/locales/ja-JP/messages.po @@ -56,12 +56,12 @@ msgstr "<0>二要素認証が有効になっています。サインイン #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "無料でオープンソースの履歴書ビルダー" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "履歴書の作成、更新、共有のプロセスを簡素化する、無料でオープンソースの履歴書ビルダー" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/km-KH/messages.po b/apps/client/src/locales/km-KH/messages.po index d5c9b95f5..06ba8c474 100644 --- a/apps/client/src/locales/km-KH/messages.po +++ b/apps/client/src/locales/km-KH/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/kn-IN/messages.po b/apps/client/src/locales/kn-IN/messages.po index 8e962d838..7b762fc52 100644 --- a/apps/client/src/locales/kn-IN/messages.po +++ b/apps/client/src/locales/kn-IN/messages.po @@ -56,12 +56,12 @@ msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಸಕ #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "ಉಚಿತ ಮತ್ತು ಮೂಲ ಕೋಡ್ ತೆರೆದಿರುವ ರೇಜ಼ಮೈ ನಿರ್ಮಾಪಕ" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ರಚಿಸುವ, ನವೀಕರಿಸುವ ಮತ್ತು ಹಂಚಿಕೊಳ್ಳುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಸರಳಗೊಳಿಸುವ ಉಚಿತ ಮತ್ತು ಮುಕ್ತ-ಮೂಲ ಪುನರಾರಂಭ ಬಿಲ್ಡರ್." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ko-KR/messages.po b/apps/client/src/locales/ko-KR/messages.po index 24fb1559f..fe5c7fd32 100644 --- a/apps/client/src/locales/ko-KR/messages.po +++ b/apps/client/src/locales/ko-KR/messages.po @@ -56,12 +56,12 @@ msgstr "<0>2단계 인증이 활성화되었습니다. 로그인할 때마 #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "무료, 오픈 소스 이력서 작성 도구" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "이력서 작성, 업데이트 및 공유를 간단하게 할 수 있는 무료 오픈 소스 이력서 작성 도구입니다." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/lt-LT/messages.po b/apps/client/src/locales/lt-LT/messages.po index 227302b3b..ff691c902 100644 --- a/apps/client/src/locales/lt-LT/messages.po +++ b/apps/client/src/locales/lt-LT/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Įjungtas dviejų veiksnių autentifikavimas. Kiekvieną kartą p #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Nemokamas atvirojo kodo gyvenimo aprašymų kūrėjas" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Nemokama atvirojo kodo Cv kūrimo priemonė, supaprastinanti gyvenimo aprašymo kūrimo, atnaujinimo ir bendrinimo procesą." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/lv-LV/messages.po b/apps/client/src/locales/lv-LV/messages.po index 43f9254d2..3c5689425 100644 --- a/apps/client/src/locales/lv-LV/messages.po +++ b/apps/client/src/locales/lv-LV/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Ir iespējota divu faktoru autentifikācija. Katru reizi, kad pie #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Bezmaksas un atvērtā koda CV konstruktors" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Bezmaksas un atvērtā koda CV veidotājs, kas vienkāršo CV izveides, atjaunināšanas un kopīgošanas procesu." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ml-IN/messages.po b/apps/client/src/locales/ml-IN/messages.po index 10ccefe0f..b47545e39 100644 --- a/apps/client/src/locales/ml-IN/messages.po +++ b/apps/client/src/locales/ml-IN/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/mr-IN/messages.po b/apps/client/src/locales/mr-IN/messages.po index 456da352e..7f132948c 100644 --- a/apps/client/src/locales/mr-IN/messages.po +++ b/apps/client/src/locales/mr-IN/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ms-MY/messages.po b/apps/client/src/locales/ms-MY/messages.po index 1a7efc01d..dda48da25 100644 --- a/apps/client/src/locales/ms-MY/messages.po +++ b/apps/client/src/locales/ms-MY/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Pengesahan dua faktor diaktifkan. Anda akan diminta untuk memasuk #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Pembina resume Percuma dan sumber terbuka" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Sebuah pembina resume percuma dan sumber terbuka yang menyederhanakan proses mencipta, mengemaskini, dan berkongsi resume anda." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ne-NP/messages.po b/apps/client/src/locales/ne-NP/messages.po index dd17064d0..f8a66ef9a 100644 --- a/apps/client/src/locales/ne-NP/messages.po +++ b/apps/client/src/locales/ne-NP/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/nl-NL/messages.po b/apps/client/src/locales/nl-NL/messages.po index 7b696139b..689cd1185 100644 --- a/apps/client/src/locales/nl-NL/messages.po +++ b/apps/client/src/locales/nl-NL/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Tweefactorauthenticatie is ingeschakeld. Elke keer dat u zich aan #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Een gratis en open-source cv-bouwer" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Een gratis en open-source cv-bouwer die het proces van het maken, bijwerken en delen van uw cv vereenvoudigt." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/no-NO/messages.po b/apps/client/src/locales/no-NO/messages.po index 65bf00a66..25e7778a0 100644 --- a/apps/client/src/locales/no-NO/messages.po +++ b/apps/client/src/locales/no-NO/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Tofaktorautentisering er aktivert. Du vil bli bedt om å skrive i #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "En gratis og åpen kildekode CV-bygger" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "En gratis og åpen kildekode CV-bygger som forenkler prosessen med å lage, oppdatere og dele din CV." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/or-IN/messages.po b/apps/client/src/locales/or-IN/messages.po index ccedbee7c..1cfd8c1ca 100644 --- a/apps/client/src/locales/or-IN/messages.po +++ b/apps/client/src/locales/or-IN/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/pl-PL/messages.po b/apps/client/src/locales/pl-PL/messages.po index 249ea1f60..81dcd01f9 100644 --- a/apps/client/src/locales/pl-PL/messages.po +++ b/apps/client/src/locales/pl-PL/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Uwierzytelnianie dwuskładnikowe jest włączone. Przy każdym lo #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Darmowy kreator CV typu open-source" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Darmowy i open-source'owy kreator CV, który upraszcza proces tworzenia, aktualizowania i udostępniania CV." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/pt-BR/messages.po b/apps/client/src/locales/pt-BR/messages.po index f524ea169..bb45a0658 100644 --- a/apps/client/src/locales/pt-BR/messages.po +++ b/apps/client/src/locales/pt-BR/messages.po @@ -56,12 +56,12 @@ msgstr "<0>A autenticação de dois fatores está habilitada. Você será so #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Um criador de currículos gratuito e de código aberto" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Um criador de currículos gratuito e de código aberto que simplifica o processo de criação, atualização e compartilhamento de seu currículo." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/pt-PT/messages.po b/apps/client/src/locales/pt-PT/messages.po index 9853639aa..f5f9d87a6 100644 --- a/apps/client/src/locales/pt-PT/messages.po +++ b/apps/client/src/locales/pt-PT/messages.po @@ -56,12 +56,12 @@ msgstr "<0>A autenticação de dois fatores está ativada. Ser-lhe-á pedido #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Um criador de currículos gratuito e de código aberto" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Um criador de currículos gratuito e de código aberto que simplifica o processo de criação, atualização e de partilha do seu currículo." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ro-RO/messages.po b/apps/client/src/locales/ro-RO/messages.po index 1a6cb347c..d253b3d8f 100644 --- a/apps/client/src/locales/ro-RO/messages.po +++ b/apps/client/src/locales/ro-RO/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Autentificarea în doi factori este activată. Vi se va cere să #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Un constructor de CV-uri gratuit și open-source" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Un constructor de reluare gratuit și open-source care simplifică procesul de creare, actualizare și partajare reluare." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ru-RU/messages.po b/apps/client/src/locales/ru-RU/messages.po index 766d8b57b..30363685d 100644 --- a/apps/client/src/locales/ru-RU/messages.po +++ b/apps/client/src/locales/ru-RU/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Двухфакторная аутентификация включе #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Бесплатный конструктор резюме с открытым исходным кодом" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Бесплатный конструктор резюме с открытым исходным кодом, который упрощает процесс создания, обновления и публикации вашего резюме." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/sq-AL/messages.po b/apps/client/src/locales/sq-AL/messages.po index 921cdca7e..925bc675d 100644 --- a/apps/client/src/locales/sq-AL/messages.po +++ b/apps/client/src/locales/sq-AL/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Një ndërtues i CV-së falas dhe open source" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Një ndërtues i CV-së, falas dhe open-source që thjeshtëson procesin e krijimit, përditësimit dhe shpërndarjes së CV-së tuaj." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/sr-SP/messages.po b/apps/client/src/locales/sr-SP/messages.po index 19426f0cf..f10491b0f 100644 --- a/apps/client/src/locales/sr-SP/messages.po +++ b/apps/client/src/locales/sr-SP/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/sv-SE/messages.po b/apps/client/src/locales/sv-SE/messages.po index ff7295f44..6a452eecf 100644 --- a/apps/client/src/locales/sv-SE/messages.po +++ b/apps/client/src/locales/sv-SE/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Tvåfaktorsautentisering är aktiverad. Du kommer att bli ombedd #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "En gratis CV-byggare med öppen källkod" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "En gratis CV-byggare med öppen källkod som förenklar processen med att skapa, uppdatera och dela ditt CV." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/ta-IN/messages.po b/apps/client/src/locales/ta-IN/messages.po index 1f4ea3d35..1528d955c 100644 --- a/apps/client/src/locales/ta-IN/messages.po +++ b/apps/client/src/locales/ta-IN/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/te-IN/messages.po b/apps/client/src/locales/te-IN/messages.po index 0c6371482..9d690e30d 100644 --- a/apps/client/src/locales/te-IN/messages.po +++ b/apps/client/src/locales/te-IN/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/th-TH/messages.po b/apps/client/src/locales/th-TH/messages.po index 9af9c5fe5..8225b9f5b 100644 --- a/apps/client/src/locales/th-TH/messages.po +++ b/apps/client/src/locales/th-TH/messages.po @@ -56,12 +56,12 @@ msgstr "<0>การยืนยันตัวตนแบบสองขั้ #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "แอปสร้างเรซูเม่ฟรีและโอเพนซอร์ส" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "เครื่องมือสร้างเรซูเม่ฟรีและโอเพนซอร์สที่ทำให้กระบวนการสร้าง การปรับปรุง และการแชร์เรซูเม่ของคุณง่ายขึ้น" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/tr-TR/messages.po b/apps/client/src/locales/tr-TR/messages.po index fea9726ca..7a4ddbd1f 100644 --- a/apps/client/src/locales/tr-TR/messages.po +++ b/apps/client/src/locales/tr-TR/messages.po @@ -56,12 +56,12 @@ msgstr "<0>İki faktörlü kimlik doğrulama şu anda aktif. Giriş yaptığ #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Ücretsiz ve açık kaynak cv oluşturucu" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Cv'nizi oluşturma, güncelleme ve paylaşma gibi adımları kolaylaştıran ücretsiz ve açık kaynak bir cv oluşturucu." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/uk-UA/messages.po b/apps/client/src/locales/uk-UA/messages.po index f3638c7ee..533e2c1e5 100644 --- a/apps/client/src/locales/uk-UA/messages.po +++ b/apps/client/src/locales/uk-UA/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Двофакторна аутентифікація включена. #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Безкоштовний і відкритий код відновлення" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Безкоштовний і відкритий вихідний код будівництва який спрощує процес створення, оновлення і обмін резюме ." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/uz-UZ/messages.po b/apps/client/src/locales/uz-UZ/messages.po index 7aba319b7..c9e77b809 100644 --- a/apps/client/src/locales/uz-UZ/messages.po +++ b/apps/client/src/locales/uz-UZ/messages.po @@ -56,12 +56,12 @@ msgstr "" #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/vi-VN/messages.po b/apps/client/src/locales/vi-VN/messages.po index 311bc1a70..d1d30a4dd 100644 --- a/apps/client/src/locales/vi-VN/messages.po +++ b/apps/client/src/locales/vi-VN/messages.po @@ -56,12 +56,12 @@ msgstr "<0>Chứng thực hai yếu tố được kích hoạt. Bạn sẽ #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "Công cụ xây dựng sơ yếu lý lịch miễn phí và mã nguồn mở" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "Trình tạo sơ yếu lý lịch mã nguồn mở và miễn phí giúp đơn giản hóa quá trình tạo, cập nhật và chia sẻ sơ yếu lý lịch của bạn." #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/zh-CN/messages.po b/apps/client/src/locales/zh-CN/messages.po index 54853adf0..952ff07a6 100644 --- a/apps/client/src/locales/zh-CN/messages.po +++ b/apps/client/src/locales/zh-CN/messages.po @@ -56,12 +56,12 @@ msgstr "<0>已启用双重身份验证。您在每次登录时都需要输 #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "免费开源的简历生成器" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "一款免费开源的简历生成器,可简化创建、更新和共享简历的过程。" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/locales/zh-TW/messages.po b/apps/client/src/locales/zh-TW/messages.po index 3cadb5689..035915f4c 100644 --- a/apps/client/src/locales/zh-TW/messages.po +++ b/apps/client/src/locales/zh-TW/messages.po @@ -56,12 +56,12 @@ msgstr "<0>启用双重认证。每次登入時都會要求您輸入代碼 #: apps/client/src/pages/home/page.tsx:24 #: apps/client/src/pages/home/sections/hero/index.tsx:40 -msgid "A free and open-source resume builder" +msgid "Talent Resume" msgstr "一個免費且開源的簡歷建立工具" #: apps/client/src/pages/home/components/footer.tsx:21 #: apps/client/src/pages/home/sections/hero/index.tsx:45 -msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." +msgid "A free resume builder that simplifies the process of creating, updating, and sharing your resume." msgstr "一個免費且開源的簡歷生成器,簡化了創建、更新和分享您的簡歷的過程。" #: apps/client/src/pages/builder/_components/toolbar.tsx:53 diff --git a/apps/client/src/pages/dashboard/_components/sidebar.tsx b/apps/client/src/pages/dashboard/_components/sidebar.tsx index 9d7229caa..12c81428c 100644 --- a/apps/client/src/pages/dashboard/_components/sidebar.tsx +++ b/apps/client/src/pages/dashboard/_components/sidebar.tsx @@ -100,7 +100,7 @@ export const Sidebar = ({ setOpen }: SidebarProps) => {
@@ -124,7 +124,6 @@ export const Sidebar = ({ setOpen }: SidebarProps) => { - ); }; diff --git a/apps/client/src/pages/dashboard/settings/_sections/profile.tsx b/apps/client/src/pages/dashboard/settings/_sections/profile.tsx index 9fdada84b..26237b1b0 100644 --- a/apps/client/src/pages/dashboard/settings/_sections/profile.tsx +++ b/apps/client/src/pages/dashboard/settings/_sections/profile.tsx @@ -102,21 +102,6 @@ export const ProfileSettings = () => {
- - - - Don't see your language?{" "} - - Help translate the app. - - - - )} /> diff --git a/apps/client/src/pages/dashboard/settings/page.tsx b/apps/client/src/pages/dashboard/settings/page.tsx index 25365cd9c..7b4e3a799 100644 --- a/apps/client/src/pages/dashboard/settings/page.tsx +++ b/apps/client/src/pages/dashboard/settings/page.tsx @@ -33,10 +33,6 @@ export const SettingsPage = () => ( - - - - diff --git a/apps/client/src/pages/home/components/footer.tsx b/apps/client/src/pages/home/components/footer.tsx index 5e5c2df2d..45cda9c28 100644 --- a/apps/client/src/pages/home/components/footer.tsx +++ b/apps/client/src/pages/home/components/footer.tsx @@ -18,7 +18,7 @@ export const Footer = () => (

{t`Reactive Resume`}

- {t`A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.`} + {t`A free resume builder that simplifies the process of creating, updating, and sharing your resume.`}

diff --git a/apps/client/src/pages/home/components/header.tsx b/apps/client/src/pages/home/components/header.tsx index b104583cf..43530871a 100644 --- a/apps/client/src/pages/home/components/header.tsx +++ b/apps/client/src/pages/home/components/header.tsx @@ -3,15 +3,13 @@ import { Link } from "react-router-dom"; import { Logo } from "@/client/components/logo"; -import { DonationBanner } from "./donation-banner"; - export const Header = () => ( - + {/* */}
diff --git a/apps/client/src/pages/home/meta/privacy-policy/page.tsx b/apps/client/src/pages/home/meta/privacy-policy/page.tsx index 88a6e6d08..e41f17813 100644 --- a/apps/client/src/pages/home/meta/privacy-policy/page.tsx +++ b/apps/client/src/pages/home/meta/privacy-policy/page.tsx @@ -12,7 +12,7 @@ export const PrivacyPolicyPage = () => ( diff --git a/apps/client/src/pages/home/page.tsx b/apps/client/src/pages/home/page.tsx index 3eb09bb69..f17aa7067 100644 --- a/apps/client/src/pages/home/page.tsx +++ b/apps/client/src/pages/home/page.tsx @@ -21,12 +21,12 @@ export const HomePage = () => { - {t`Reactive Resume`} - {t`A free and open-source resume builder`} + {t`Reactive Resume`} - {t`Talent Resume`} diff --git a/apps/client/src/pages/home/sections/hero/index.tsx b/apps/client/src/pages/home/sections/hero/index.tsx index 997f314d4..18ed55cd0 100644 --- a/apps/client/src/pages/home/sections/hero/index.tsx +++ b/apps/client/src/pages/home/sections/hero/index.tsx @@ -1,7 +1,4 @@ import { t } from "@lingui/macro"; -import { ArrowRight } from "@phosphor-icons/react"; -import { Badge, buttonVariants } from "@reactive-resume/ui"; -import { cn } from "@reactive-resume/utils"; import { motion } from "framer-motion"; import Tilt from "react-parallax-tilt"; @@ -22,7 +19,7 @@ export const HeroSection = () => ( initial={{ opacity: 0, x: -100 }} whileInView={{ opacity: 1, x: 0 }} > - */}
-
{t`Finally,`}
-

- {t`A free and open-source resume builder`} -

+ {/*
{t`Finally,`}
*/} +

{t`Talent Resume`}

- {t`A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.`} + {t`A free resume builder that simplifies the process of creating, updating, and sharing your resume.`}