diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea2aba88569..8fadc084971 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,13 +1,14 @@ name: Flutter build -on: +on: push: branches: - "*" tags: - stable - nightly - release: + release: + types: [published] pull_request: jobs: build-apk: @@ -15,7 +16,7 @@ jobs: defaults: run: working-directory: app - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: ⬆️ Checkout uses: actions/checkout@v4 @@ -23,15 +24,10 @@ jobs: uses: actions/setup-java@v4 with: java-version: "17" - distribution: "adopt" - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV + distribution: "temurin" - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - name: 📦 Get dependencies run: | flutter clean @@ -48,12 +44,12 @@ jobs: if [[ -n "$KEY_JKS" ]] ; then echo "$KEY_JKS" | base64 --decode > key.jks ; fi #- run: flutter test - name: 🏭 Build nightly - if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.prerelease) }} + if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.release.prerelease) }} run: | flutter build apk -v --release --flavor nightly --dart-define=flavor=nightly cp build/app/outputs/flutter-apk/app-nightly-release.apk linwood-flow-android.apk - name: 🏭 Build production - if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.prerelease) }} + if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.release.prerelease) }} run: | flutter build apk -v --release --flavor production cp build/app/outputs/flutter-apk/app-production-release.apk linwood-flow-android.apk @@ -63,14 +59,14 @@ jobs: name: apk-build path: app/linwood-flow-android.apk - name: 🏭 Build architecture nightly - if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.prerelease) }} + if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.release.prerelease) }} run: | flutter build apk -v --release --target-platform android-arm,android-arm64,android-x64 --split-per-abi --flavor nightly --dart-define=flavor=nightly cp build/app/outputs/flutter-apk/app-armeabi-v7a-nightly-release.apk linwood-flow-android-arm.apk cp build/app/outputs/flutter-apk/app-arm64-v8a-nightly-release.apk linwood-flow-android-arm64.apk cp build/app/outputs/flutter-apk/app-x86_64-nightly-release.apk linwood-flow-android-x86_64.apk - name: 🏭 Build architecture production - if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.prerelease) }} + if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.release.prerelease) }} run: | flutter build apk -v --release --target-platform android-arm,android-arm64,android-x64 --split-per-abi --flavor production cp build/app/outputs/flutter-apk/app-armeabi-v7a-production-release.apk linwood-flow-android-arm.apk @@ -99,15 +95,11 @@ jobs: steps: - name: ⬆️ Checkout uses: actions/checkout@v4 - - name: Get flutter version - shell: bash - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV + - name: Make yq tool available on Windows runners + run: choco install yq - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - name: ✅ Enable platforms run: flutter config --enable-windows-desktop - name: 📦 Get dependencies @@ -116,12 +108,12 @@ jobs: flutter pub get flutter doctor -v - name: 🏭 Build nightly - if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.prerelease) }} + if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.release.prerelease) }} run: | flutter doctor -v flutter build windows -v --release --dart-define=flavor=nightly - name: 🏭 Build production - if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.prerelease) }} + if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.release.prerelease) }} run: | flutter doctor -v flutter build windows -v --release --dart-define=flavor=production @@ -148,7 +140,7 @@ jobs: path: | app/linwood-flow-windows-setup-x86_64.exe build-linux: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 defaults: run: working-directory: app @@ -179,14 +171,9 @@ jobs: libsecret-1-dev \ libjsoncpp-dev \ rpm - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - name: ✅ Enable platforms run: flutter config --enable-linux-desktop - name: 📦 Get dependencies @@ -195,12 +182,12 @@ jobs: flutter pub get flutter doctor -v - name: 🏭 Build nightly - if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.prerelease) }} + if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.release.prerelease) }} run: | flutter doctor -v flutter build linux -v --release --dart-define=flavor=nightly - name: 🏭 Build production - if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.prerelease) }} + if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.release.prerelease) }} run: | flutter doctor -v flutter build linux -v --release --dart-define=flavor=production @@ -260,7 +247,7 @@ jobs: app/linwood-flow-linux-x86_64.AppImage build-flatpak: name: build-flatpak - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 defaults: run: working-directory: app @@ -290,14 +277,9 @@ jobs: alien \ libsecret-1-dev \ libjsoncpp-dev - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - name: ✅ Enable platforms run: flutter config --enable-linux-desktop - name: 📦 Get dependencies @@ -306,12 +288,12 @@ jobs: flutter pub get flutter doctor -v - name: 🏭 Build nightly - if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.prerelease) }} + if: ${{ github.ref != 'refs/tags/stable' && (github.event_name != 'release' || github.event.release.prerelease) }} run: | flutter doctor -v flutter build linux -v --release --dart-define=flavor=nightly - name: 🏭 Build production - if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.prerelease) }} + if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.release.prerelease) }} run: | flutter doctor -v flutter build linux -v --release --dart-define=flavor=production @@ -354,17 +336,12 @@ jobs: steps: - name: ⬆️ Checkout uses: actions/checkout@v4 - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: "3.12" - name: ✅ Enable platforms run: flutter config --enable-macos-desktop - name: 📦 Get dependencies @@ -381,9 +358,11 @@ jobs: - name: Setup node uses: actions/setup-node@v4 with: - node-version: '20' + node-version: "22" - name: Install appdmg - run: npm install -g appdmg + run: | + python3 -m pip install setuptools + npm install -g appdmg - name: Create dmg run: | appdmg DmgSetup.json linwood-flow-macos.dmg @@ -409,14 +388,9 @@ jobs: steps: - name: ⬆️ Checkout uses: actions/checkout@v4 - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - name: 📦 Get dependencies run: | flutter clean @@ -433,7 +407,7 @@ jobs: cp -R Runner.app Payload/ rm -f linwood-flow-ios.ipa zip -vr linwood-flow-ios.ipa Payload/ -# ls -l linwood-flow-ios.ipa + # ls -l linwood-flow-ios.ipa - name: Archive uses: actions/upload-artifact@v4 with: @@ -460,9 +434,9 @@ jobs: # - uses: actions/upload-artifact@v4 # with: # name: flow-snap - # path: ${{ steps.build.outputs.snap }} + # path: ${{ steps.build.outputs.snap }} deploy: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: github.event_name != 'pull_request' outputs: version: ${{ steps.setup.outputs.FLOW_VERSION }} @@ -551,8 +525,25 @@ jobs: git config --global user.email "actions@github.com" git config --global user.name "Actions" git pull --tags + - name: Add checksums + run: | + output_file="checksums.txt" + + # Empty the output file if it exists + > "$output_file" + + # Find and loop through all files starting with "linwood-flow" in the current directory + for file in linwood-flow*; do + # Check if the file exists (in case no matches were found) + if [ -f "$file" ]; then + # Append sha256sum to the output file in the format "hash filename" + sha256sum "$file" >> "$output_file" + fi + done + + echo "SHA256 hashes for files starting with 'linwood-flow' saved to $output_file" - name: 🚀 Deploy stable - if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.prerelease) }} + if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.release.prerelease) }} uses: softprops/action-gh-release@v2 continue-on-error: true with: @@ -570,6 +561,7 @@ jobs: linwood-flow-macos.dmg linwood-flow-android.apk linwood-flow-ios.ipa + checksums.txt env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: 🚀 Deploy nightly @@ -594,6 +586,7 @@ jobs: linwood-flow-android-arm64.apk linwood-flow-android-x86_64.apk linwood-flow-ios.ipa + checksums.txt env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Release @@ -619,8 +612,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} deploy-to-play-store: - runs-on: ubuntu-22.04 - if: ${{ startsWith(github.ref, 'refs/tags/') }} + runs-on: ubuntu-24.04 + if: ${{ startsWith(github.ref, 'refs/tags/') }} defaults: run: working-directory: app @@ -650,22 +643,17 @@ jobs: uses: actions/setup-java@v4 with: java-version: "17" - distribution: "adopt" - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV + distribution: "temurin" - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - name: 📦 Get dependencies run: | flutter pub get - name: Setup Fastlane uses: ruby/setup-ruby@v1 with: - ruby-version: "3.3.0" + ruby-version: "3.3.5" bundler-cache: true working-directory: app/android - name: 🚀 Deploy to Play Store @@ -687,7 +675,7 @@ jobs: - uses: actions/checkout@v4 with: token: ${{ secrets.CI_PAT }} - - if: ${{ github.ref == 'refs/tags/stable' || (github.event_name == 'release' && !github.event.prerelease) }} + - if: ${{ github.ref == 'refs/tags/stable' }} uses: vedantmgoyal2009/winget-releaser@v2 with: identifier: LinwoodDev.Flow diff --git a/.github/workflows/compress-images.yml b/.github/workflows/compress-images.yml index bee5a63884f..c8a48826651 100644 --- a/.github/workflows/compress-images.yml +++ b/.github/workflows/compress-images.yml @@ -1,13 +1,10 @@ # Compress images on demand (workflow_dispatch), and at 11pm every Sunday (schedule). # Open a Pull Request if any images can be compressed. name: Compress Images -permissions: - contents: write - pull-requests: write on: workflow_dispatch: schedule: - - cron: '00 23 * * 0' + - cron: "00 23 * * 0" jobs: build: name: calibreapp/image-actions @@ -29,4 +26,3 @@ jobs: branch-suffix: timestamp commit-message: Compressed Images body: ${{ steps.calibre.outputs.markdown }} - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 3e249f1ad55..c5c63348b75 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: projects: [app, api, tools] @@ -14,14 +14,9 @@ jobs: steps: - name: ⬆️ Checkout uses: actions/checkout@v4 - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat ../FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: 'master' + flutter-version-file: app/pubspec.yaml - uses: actions/checkout@v4 - name: Print Dart SDK version run: | @@ -33,7 +28,6 @@ jobs: # Uncomment this step to verify the use of 'dart format' on each commit. - name: Verify formatting run: dart format --output=none --set-exit-if-changed . - # Consider passing '--fatal-infos' for slightly stricter analysis. - name: Analyze project source run: | diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000000..c451f2e1a80 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,83 @@ +name: Deploy documentation + +on: + # Trigger the workflow every time you push to the `main` branch + # Using a different branch name? Replace `main` with your branch’s name + push: + # Allows you to run this workflow manually from the Actions tab on GitHub. + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: docs + steps: + - uses: actions/checkout@v4 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + package_json_file: docs/package.json + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: "pnpm" + cache-dependency-path: docs/pnpm-lock.yaml + - name: Install dependencies + run: pnpm install + - name: Build + run: pnpm build + - name: Deploy to SFTP + if: github.ref == 'refs/heads/develop' + env: + SFTP_HOST: ${{ secrets.SFTP_HOST }} + SFTP_USERNAME: ${{ secrets.SFTP_USERNAME }} + SFTP_KEY: ${{ secrets.SFTP_KEY }} + SFTP_KNOWN_HOSTS: ${{secrets.SFTP_KNOWN_HOSTS}} + run: | + echo "$SFTP_KEY" > sftp_key + chmod 600 sftp_key + echo "$SFTP_KNOWN_HOSTS" > known_hosts + chmod 600 known_hosts + rsync -avz --delete -e "ssh -i sftp_key -o UserKnownHostsFile=known_hosts" dist/ $SFTP_USERNAME@$SFTP_HOST:/var/www/flow.linwood + web: + runs-on: ubuntu-24.04 + defaults: + run: + working-directory: app + steps: + - name: ⬆️ Checkout + uses: actions/checkout@v4 + - uses: subosito/flutter-action@v2.16.0 + with: + flutter-version-file: app/pubspec.yaml + - name: Install dependencies + run: | + flutter pub get + - name: Set flavor + if: github.ref != 'refs/heads/main' + run: | + echo "FLOW_FLAVOR=nightly" >> $GITHUB_ENV + echo "WEB_DIR=preview" >> $GITHUB_ENV + - name: Set flavor + if: github.ref == 'refs/heads/main' + run: | + echo "FLOW_FLAVOR=stable" >> $GITHUB_ENV + echo "WEB_DIR=web" >> $GITHUB_ENV + - name: Build + run: flutter build web --wasm --release --no-web-resources-cdn --dart-define=flavor=$FLOW_FLAVOR + - name: Deploy to SFTP + if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main' + env: + SFTP_HOST: ${{ secrets.SFTP_HOST }} + SFTP_USERNAME: ${{ secrets.SFTP_USERNAME }} + SFTP_KEY: ${{ secrets.SFTP_KEY }} + SFTP_KNOWN_HOSTS: ${{secrets.SFTP_KNOWN_HOSTS}} + run: | + echo "$SFTP_KEY" > sftp_key + chmod 600 sftp_key + echo "$SFTP_KNOWN_HOSTS" > known_hosts + chmod 600 known_hosts + rsync -avz --delete -e "ssh -i sftp_key -o UserKnownHostsFile=known_hosts" build/web/ $SFTP_USERNAME@$SFTP_HOST:/var/www/$WEB_DIR.butterfly.linwood diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6001a9fed83..8ad229a39b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,20 +15,15 @@ on: jobs: update-changelog: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 with: token: ${{ secrets.CI_PAT }} fetch-depth: 0 - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: "any" + flutter-version-file: app/pubspec.yaml - name: Setup git id: setup run: | @@ -58,7 +53,7 @@ jobs: git merge main --strategy-option ours git push origin develop release: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - update-changelog outputs: @@ -70,14 +65,9 @@ jobs: token: ${{ secrets.CI_PAT }} ref: ${{ github.ref }} fetch-depth: 0 - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: "any" + flutter-version-file: app/pubspec.yaml - name: Setup git id: setup shell: bash @@ -128,7 +118,7 @@ jobs: git merge develop --strategy-option ours git push origin main set-next-version: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - update-changelog - release @@ -137,14 +127,9 @@ jobs: with: token: ${{ secrets.CI_PAT }} fetch-depth: 0 - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: "any" + flutter-version-file: app/pubspec.yaml - name: Setup git id: setup run: | @@ -174,8 +159,7 @@ jobs: git merge main --strategy-option ours git push origin develop bump-version: - runs-on: ubuntu-22.04 - if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-24.04 needs: - update-changelog - release @@ -206,14 +190,9 @@ jobs: echo "FLOW_BUILD_NUMBER=${FLOW_BUILD_NUMBER}" >> $GITHUB_ENV git config --global user.email "ci@linwood.dev" git config --global user.name "Linwood CI" - - name: Get flutter version - run: | - FLUTTER_VERSION=$(cat FLUTTER_VERSION) - echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV - uses: subosito/flutter-action@v2.16.0 with: - flutter-version: ${{ env.FLUTTER_VERSION }} - channel: "any" + flutter-version-file: app/pubspec.yaml - name: Bump version run: | git fetch @@ -232,7 +211,7 @@ jobs: git merge main --strategy-option ours git push origin develop notify: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [release] steps: - uses: actions/checkout@v4 @@ -261,7 +240,7 @@ jobs: embed-url: https://github.com/LinwoodDev/Flow/releases/tag/v${{ env.FLOW_VERSION }} content: | Version ${{ env.FLOW_VERSION }} released! - Download it here: https://docs.flow.linwood.dev/downloads + Download it here: https://flow.linwood.dev/downloads https://github.com/LinwoodDev/flow/releases/tag/v${{ env.FLOW_VERSION }} - name: Discord Webhook Action uses: tsickert/discord-webhook@v6.0.0 @@ -273,6 +252,6 @@ jobs: embed-url: https://github.com/LinwoodDev/Flow/releases/tag/v${{ env.FLOW_VERSION }} content: | Pre-release version ${{ env.FLOW_VERSION }} released! - Download it here: https://docs.flow.linwood.dev/downloads + Download it here: https://flow.linwood.dev/downloads Please note that this is a pre-release version and is not intended for production use. - Read more about it here: https://docs.flow.linwood.dev/nightly + Read more about it here: https://flow.linwood.dev/community/nightly diff --git a/FLUTTER_VERSION b/FLUTTER_VERSION deleted file mode 100644 index 50f12a45323..00000000000 --- a/FLUTTER_VERSION +++ /dev/null @@ -1 +0,0 @@ -3.22.1 \ No newline at end of file diff --git a/api/pubspec.lock b/api/pubspec.lock index 1de0c871f46..e7d272c2465 100644 --- a/api/pubspec.lock +++ b/api/pubspec.lock @@ -5,39 +5,39 @@ packages: dependency: transitive description: name: _fe_analyzer_shared - sha256: "5aaf60d96c4cd00fe7f21594b5ad6a1b699c80a27420f8a837f4d68473ef09e3" + sha256: "45cfa8471b89fb6643fe9bf51bd7931a76b8f5ec2d65de4fb176dba8d4f22c77" url: "https://pub.dev" source: hosted - version: "68.0.0" + version: "73.0.0" _macros: dependency: transitive description: dart source: sdk - version: "0.1.0" + version: "0.3.2" analyzer: dependency: transitive description: name: analyzer - sha256: "21f1d3720fd1c70316399d5e2bccaebb415c434592d778cce8acb967b8578808" + sha256: "4959fec185fe70cce007c57e9ab6983101dbe593d2bf8bbfb4453aaec0cf470a" url: "https://pub.dev" source: hosted - version: "6.5.0" + version: "6.8.0" args: dependency: transitive description: name: args - sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a" + sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6 url: "https://pub.dev" source: hosted - version: "2.5.0" + version: "2.6.0" async: dependency: transitive description: name: async - sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63 url: "https://pub.dev" source: hosted - version: "2.11.0" + version: "2.12.0" base_codecs: dependency: transitive description: @@ -50,10 +50,10 @@ packages: dependency: transitive description: name: boolean_selector - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.1.2" build: dependency: transitive description: @@ -90,18 +90,18 @@ packages: dependency: "direct dev" description: name: build_runner - sha256: "1414d6d733a85d8ad2f1dfcb3ea7945759e35a123cb99ccfac75d0758f75edfa" + sha256: "028819cfb90051c6b5440c7e574d1896f8037e3c96cf17aaeb054c9311cfbf4d" url: "https://pub.dev" source: hosted - version: "2.4.10" + version: "2.4.13" build_runner_core: dependency: transitive description: name: build_runner_core - sha256: "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799" + sha256: f8126682b87a7282a339b871298cc12009cb67109cfa1614d6436fb0289193e0 url: "https://pub.dev" source: hosted - version: "7.3.0" + version: "7.3.2" built_collection: dependency: transitive description: @@ -130,48 +130,48 @@ packages: dependency: transitive description: name: code_builder - sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37 + sha256: "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e" url: "https://pub.dev" source: hosted - version: "4.10.0" + version: "4.10.1" collection: dependency: "direct main" description: name: collection - sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" url: "https://pub.dev" source: hosted - version: "1.18.0" + version: "1.19.1" convert: dependency: transitive description: name: convert - sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.1.2" coverage: dependency: transitive description: name: coverage - sha256: "3945034e86ea203af7a056d98e98e42a5518fff200d6e8e6647e1886b07e936e" + sha256: "88b0fddbe4c92910fefc09cc0248f5e7f0cd23e450ded4c28f16ab8ee8f83268" url: "https://pub.dev" source: hosted - version: "1.8.0" + version: "1.10.0" crypto: dependency: transitive description: name: crypto - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855" url: "https://pub.dev" source: hosted - version: "3.0.3" + version: "3.0.6" dart_leap: dependency: "direct main" description: path: "packages/dart_leap" - ref: d45bd54f2efd6a861d6f44a8b833575b0482dc4c - resolved-ref: d45bd54f2efd6a861d6f44a8b833575b0482dc4c + ref: dfda6c2e3cef2e29511f97e9470fd4deb8e0c573 + resolved-ref: dfda6c2e3cef2e29511f97e9470fd4deb8e0c573 url: "https://github.com/LinwoodDev/dart_pkgs" source: git version: "1.0.0" @@ -179,10 +179,10 @@ packages: dependency: transitive description: name: dart_style - sha256: "99e066ce75c89d6b29903d788a7bb9369cf754f7b24bf70bf4b6d6d6b26853b9" + sha256: "7856d364b589d1f08986e140938578ed36ed948581fbc3bc9aef1805039ac5ab" url: "https://pub.dev" source: hosted - version: "2.3.6" + version: "2.3.7" equatable: dependency: "direct main" description: @@ -195,34 +195,34 @@ packages: dependency: transitive description: name: file - sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 url: "https://pub.dev" source: hosted - version: "7.0.0" + version: "7.0.1" fixnum: dependency: transitive description: name: fixnum - sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.1.1" freezed: dependency: "direct dev" description: name: freezed - sha256: "5606fb95d54f3bb241b3e12dcfb65ba7494c775c4cb458334eccceb07334a3d9" + sha256: "44c19278dd9d89292cf46e97dc0c1e52ce03275f40a97c5a348e802a924bf40e" url: "https://pub.dev" source: hosted - version: "2.5.3" + version: "2.5.7" freezed_annotation: dependency: "direct main" description: name: freezed_annotation - sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d + sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2 url: "https://pub.dev" source: hosted - version: "2.4.1" + version: "2.4.4" frontend_server_client: dependency: transitive description: @@ -243,18 +243,18 @@ packages: dependency: transitive description: name: graphs - sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.3.2" http: dependency: transitive description: name: http - sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" + sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010 url: "https://pub.dev" source: hosted - version: "1.2.1" + version: "1.2.2" http_multi_server: dependency: transitive description: @@ -267,10 +267,10 @@ packages: dependency: transitive description: name: http_parser - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + sha256: "76d306a1c3afb33fe82e2bbacad62a61f409b5634c915fceb0d799de1a913360" url: "https://pub.dev" source: hosted - version: "4.0.2" + version: "4.1.1" io: dependency: transitive description: @@ -323,18 +323,18 @@ packages: dependency: transitive description: name: logging - sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.3.0" macros: dependency: transitive description: name: macros - sha256: "12e8a9842b5a7390de7a781ec63d793527582398d16ea26c60fed58833c9ae79" + sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536" url: "https://pub.dev" source: hosted - version: "0.1.0-main.0" + version: "0.1.2-main.4" matcher: dependency: transitive description: @@ -347,18 +347,18 @@ packages: dependency: "direct main" description: name: meta - sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 + sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c url: "https://pub.dev" source: hosted - version: "1.15.0" + version: "1.16.0" mime: dependency: transitive description: name: mime - sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a" url: "https://pub.dev" source: hosted - version: "1.0.5" + version: "1.0.6" node_preamble: dependency: transitive description: @@ -379,10 +379,10 @@ packages: dependency: transitive description: name: path - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" url: "https://pub.dev" source: hosted - version: "1.9.0" + version: "1.9.1" pool: dependency: transitive description: @@ -403,10 +403,10 @@ packages: dependency: transitive description: name: pubspec_parse - sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + sha256: c799b721d79eb6ee6fa56f00c04b472dcd44a30d258fac2174a6ec57302678f8 url: "https://pub.dev" source: hosted - version: "1.2.3" + version: "1.3.0" s5_msgpack: dependency: transitive description: @@ -419,10 +419,10 @@ packages: dependency: transitive description: name: shelf - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12 url: "https://pub.dev" source: hosted - version: "1.4.1" + version: "1.4.2" shelf_packages_handler: dependency: transitive description: @@ -435,10 +435,10 @@ packages: dependency: transitive description: name: shelf_static - sha256: a41d3f53c4adf0f57480578c1d61d90342cd617de7fc8077b1304643c2d85c1e + sha256: c87c3875f91262785dade62d135760c2c69cb217ac759485334c5857ad89f6e3 url: "https://pub.dev" source: hosted - version: "1.1.2" + version: "1.1.3" shelf_web_socket: dependency: transitive description: @@ -467,10 +467,10 @@ packages: dependency: transitive description: name: source_map_stack_trace - sha256: "84cf769ad83aa6bb61e0aa5a18e53aea683395f196a6f39c4c881fb90ed4f7ae" + sha256: c0713a43e323c3302c2abe2a1cc89aa057a387101ebd280371d6a6c9fa68516b url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.1.2" source_maps: dependency: transitive description: @@ -491,18 +491,18 @@ packages: dependency: "direct main" description: name: sqflite_common - sha256: "3da423ce7baf868be70e2c0976c28a1bb2f73644268b7ffa7d2e08eab71f16a4" + sha256: "4468b24876d673418a7b7147e5a08a715b4998a7ae69227acafaab762e0e5490" url: "https://pub.dev" source: hosted - version: "2.5.4" + version: "2.5.4+5" stack_trace: dependency: transitive description: name: stack_trace - sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + sha256: "9f47fd3630d76be3ab26f0ee06d213679aa425996925ff3feffdec504931c377" url: "https://pub.dev" source: hosted - version: "1.11.1" + version: "1.12.0" stream_channel: dependency: transitive description: @@ -523,18 +523,18 @@ packages: dependency: transitive description: name: string_scanner - sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + sha256: "0bd04f5bb74fcd6ff0606a888a30e917af9bd52820b178eaa464beb11dca84b6" url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.4.0" synchronized: dependency: transitive description: name: synchronized - sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" + sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225" url: "https://pub.dev" source: hosted - version: "3.1.0+1" + version: "3.3.0+3" term_glyph: dependency: transitive description: @@ -547,26 +547,26 @@ packages: dependency: "direct dev" description: name: test - sha256: d11b55850c68c1f6c0cf00eabded4e66c4043feaf6c0d7ce4a36785137df6331 + sha256: "713a8789d62f3233c46b4a90b174737b2c04cb6ae4500f2aa8b1be8f03f5e67f" url: "https://pub.dev" source: hosted - version: "1.25.5" + version: "1.25.8" test_api: dependency: transitive description: name: test_api - sha256: "2419f20b0c8677b2d67c8ac4d1ac7372d862dc6c460cdbb052b40155408cd794" + sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c" url: "https://pub.dev" source: hosted - version: "0.7.1" + version: "0.7.3" test_core: dependency: transitive description: name: test_core - sha256: "4d070a6bc36c1c4e89f20d353bfd71dc30cdf2bd0e14349090af360a029ab292" + sha256: "12391302411737c176b0b5d6491f466b0dd56d4763e347b6714efbaa74d7953d" url: "https://pub.dev" source: hosted - version: "0.6.2" + version: "0.6.5" timing: dependency: transitive description: @@ -587,18 +587,18 @@ packages: dependency: transitive description: name: typed_data - sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 url: "https://pub.dev" source: hosted - version: "1.3.2" + version: "1.4.0" vm_service: dependency: transitive description: name: vm_service - sha256: "7475cb4dd713d57b6f7464c0e13f06da0d535d8b2067e188962a59bac2cf280b" + sha256: "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14" url: "https://pub.dev" source: hosted - version: "14.2.2" + version: "14.3.1" watcher: dependency: transitive description: @@ -640,4 +640,4 @@ packages: source: hosted version: "3.1.2" sdks: - dart: ">=3.4.0 <4.0.0" + dart: ">=3.5.0 <4.0.0" diff --git a/api/pubspec.yaml b/api/pubspec.yaml index fd19e43d225..c951b0eab51 100644 --- a/api/pubspec.yaml +++ b/api/pubspec.yaml @@ -17,7 +17,7 @@ dependencies: dart_leap: git: url: https://github.com/LinwoodDev/dart_pkgs - ref: d45bd54f2efd6a861d6f44a8b833575b0482dc4c + ref: dfda6c2e3cef2e29511f97e9470fd4deb8e0c573 path: packages/dart_leap dev_dependencies: build_runner: ^2.4.9 diff --git a/app/android/Gemfile.lock b/app/android/Gemfile.lock index 62d4fb4baff..c8b790eab4f 100644 --- a/app/android/Gemfile.lock +++ b/app/android/Gemfile.lock @@ -5,25 +5,25 @@ GEM base64 nkf rexml - addressable (2.8.6) - public_suffix (>= 2.0.2, < 6.0) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) artifactory (3.0.17) atomos (0.1.3) aws-eventstream (1.3.0) - aws-partitions (1.934.0) - aws-sdk-core (3.196.1) + aws-partitions (1.1000.0) + aws-sdk-core (3.211.0) aws-eventstream (~> 1, >= 1.3.0) - aws-partitions (~> 1, >= 1.651.0) - aws-sigv4 (~> 1.8) + aws-partitions (~> 1, >= 1.992.0) + aws-sigv4 (~> 1.9) jmespath (~> 1, >= 1.6.1) - aws-sdk-kms (1.82.0) - aws-sdk-core (~> 3, >= 3.193.0) - aws-sigv4 (~> 1.1) - aws-sdk-s3 (1.151.0) - aws-sdk-core (~> 3, >= 3.194.0) + aws-sdk-kms (1.95.0) + aws-sdk-core (~> 3, >= 3.210.0) + aws-sigv4 (~> 1.5) + aws-sdk-s3 (1.169.0) + aws-sdk-core (~> 3, >= 3.210.0) aws-sdk-kms (~> 1) - aws-sigv4 (~> 1.8) - aws-sigv4 (1.8.0) + aws-sigv4 (~> 1.5) + aws-sigv4 (1.10.1) aws-eventstream (~> 1, >= 1.0.2) babosa (1.0.4) base64 (0.2.0) @@ -38,8 +38,8 @@ GEM domain_name (0.6.20240107) dotenv (2.8.1) emoji_regex (3.2.3) - excon (0.110.0) - faraday (1.10.3) + excon (0.112.0) + faraday (1.10.4) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) @@ -60,15 +60,15 @@ GEM faraday-httpclient (1.0.1) faraday-multipart (1.0.4) multipart-post (~> 2) - faraday-net_http (1.0.1) + faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) - faraday_middleware (1.2.0) + faraday_middleware (1.2.1) faraday (~> 1.0) fastimage (2.3.1) - fastlane (2.222.0) + fastlane (2.225.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -84,6 +84,7 @@ GEM faraday-cookie_jar (~> 0.0.6) faraday_middleware (~> 1.0) fastimage (>= 2.1.0, < 3.0.0) + fastlane-sirp (>= 1.0.0) gh_inspector (>= 1.1.2, < 2.0.0) google-apis-androidpublisher_v3 (~> 0.3) google-apis-playcustomapp_v1 (~> 0.1) @@ -109,6 +110,8 @@ GEM xcodeproj (>= 1.13.0, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) + fastlane-sirp (1.0.0) + sysrandom (~> 1.0) gh_inspector (1.1.3) google-apis-androidpublisher_v3 (0.54.0) google-apis-core (>= 0.11.0, < 2.a) @@ -126,7 +129,7 @@ GEM google-apis-core (>= 0.11.0, < 2.a) google-apis-storage_v1 (0.31.0) google-apis-core (>= 0.11.0, < 2.a) - google-cloud-core (1.7.0) + google-cloud-core (1.7.1) google-cloud-env (>= 1.0, < 3.a) google-cloud-errors (~> 1.0) google-cloud-env (1.6.0) @@ -147,32 +150,31 @@ GEM os (>= 0.9, < 2.0) signet (>= 0.16, < 2.a) highline (2.0.3) - http-cookie (1.0.5) + http-cookie (1.0.7) domain_name (~> 0.5) httpclient (2.8.3) jmespath (1.6.2) - json (2.7.2) - jwt (2.8.1) + json (2.7.5) + jwt (2.9.3) base64 - mini_magick (4.12.0) + mini_magick (4.13.2) mini_mime (1.1.5) multi_json (1.15.0) multipart-post (2.4.1) - nanaimo (0.3.0) + nanaimo (0.4.0) naturally (2.2.1) nkf (0.2.0) optparse (0.5.0) os (1.1.4) plist (3.7.1) - public_suffix (5.0.5) + public_suffix (6.0.1) rake (13.2.1) representable (3.2.0) declarative (< 0.1.0) trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.3.3) - strscan + rexml (3.3.9) rouge (2.0.7) ruby2_keywords (0.0.5) rubyzip (2.3.2) @@ -187,7 +189,7 @@ GEM simctl (1.6.10) CFPropertyList naturally - strscan (3.1.0) + sysrandom (1.0.5) terminal-notifier (2.0.0) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) @@ -197,14 +199,15 @@ GEM tty-spinner (0.9.3) tty-cursor (~> 0.7) uber (0.1.0) - unicode-display_width (2.5.0) + unicode-display_width (2.6.0) word_wrap (1.0.0) - xcodeproj (1.19.0) + xcodeproj (1.27.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) colored2 (~> 3.1) - nanaimo (~> 0.3.0) + nanaimo (~> 0.4.0) + rexml (>= 3.3.6, < 4.0) xcpretty (0.3.0) rouge (~> 2.0.7) xcpretty-travis-formatter (1.0.1) @@ -221,4 +224,4 @@ DEPENDENCIES screengrab BUNDLED WITH - 2.5.10 + 2.5.22 diff --git a/app/lib/pages/calendar/page.dart b/app/lib/pages/calendar/page.dart index 171f378f43d..2ad0fde7c9a 100644 --- a/app/lib/pages/calendar/page.dart +++ b/app/lib/pages/calendar/page.dart @@ -291,7 +291,7 @@ Future showCalendarCreate( if (context.mounted) { final calendarItem = await showLeapBottomSheet( context: context, - title: AppLocalizations.of(context).create, + titleBuilder: (ctx) => Text(AppLocalizations.of(context).create), childrenBuilder: (ctx) => [ ListTile( title: Text(AppLocalizations.of(context).appointment), diff --git a/app/lib/pages/events/tile.dart b/app/lib/pages/events/tile.dart index e8d69bf5b2b..a9fa8e0bf94 100644 --- a/app/lib/pages/events/tile.dart +++ b/app/lib/pages/events/tile.dart @@ -122,7 +122,7 @@ Future?> showEventModalBottomSheet( service.event?.getEvents(offset: offset, limit: limit)); final shouldCreate = await showLeapBottomSheet( context: context, - title: AppLocalizations.of(context).events, + titleBuilder: (ctx) => Text(AppLocalizations.of(context).events), actionsBuilder: (ctx) => [ TextButton.icon( icon: const PhosphorIcon(PhosphorIconsLight.plusCircle), diff --git a/app/lib/pages/settings/contents/data.dart b/app/lib/pages/settings/contents/data.dart index e83899c3cb9..9747ab0ed3e 100644 --- a/app/lib/pages/settings/contents/data.dart +++ b/app/lib/pages/settings/contents/data.dart @@ -52,7 +52,8 @@ class DataSettingsView extends StatelessWidget { leading: PhosphorIcon(state.syncMode.icon(PhosphorIconsStyle.light)), subtitle: Text(state.syncMode.getLocalizedName(context)), onTap: () async => showLeapBottomSheet( - title: AppLocalizations.of(context).syncMode, + titleBuilder: (ctx) => + Text(AppLocalizations.of(context).syncMode), context: context, childrenBuilder: (ctx) { final settingsCubit = context.read(); diff --git a/app/lib/pages/settings/contents/personalization.dart b/app/lib/pages/settings/contents/personalization.dart index 383c5c9dd27..e10489e2266 100644 --- a/app/lib/pages/settings/contents/personalization.dart +++ b/app/lib/pages/settings/contents/personalization.dart @@ -54,7 +54,8 @@ class PersonalizationSettingsView extends StatelessWidget { final cubit = context.read(); final design = await showLeapBottomSheet( context: context, - title: AppLocalizations.of(context).design, + titleBuilder: (ctx) => + Text(AppLocalizations.of(context).design), childrenBuilder: (context) => [ ListTile( title: Text( @@ -91,7 +92,8 @@ class PersonalizationSettingsView extends StatelessWidget { final theme = await showLeapBottomSheet( context: context, - title: AppLocalizations.of(context).theme, + titleBuilder: (ctx) => + Text(AppLocalizations.of(context).theme), childrenBuilder: (context) => ThemeMode.values .map((e) => ListTile( title: Text(e.getDisplayString(context)), @@ -114,7 +116,8 @@ class PersonalizationSettingsView extends StatelessWidget { final locale = await showLeapBottomSheet( context: context, - title: AppLocalizations.of(context).language, + titleBuilder: (ctx) => + Text(AppLocalizations.of(context).language), childrenBuilder: (context) => [ ListTile( title: Text(_getLocaleName(context, '')), @@ -181,7 +184,8 @@ class PersonalizationSettingsView extends StatelessWidget { subtitle: Text(getWeekDay(state.startOfWeek)), onTap: () => showLeapBottomSheet( context: context, - title: AppLocalizations.of(context).startOfWeek, + titleBuilder: (ctx) => + Text(AppLocalizations.of(context).startOfWeek), childrenBuilder: (context) => List.generate( 7, (index) => ListTile( @@ -207,7 +211,7 @@ class PersonalizationSettingsView extends StatelessWidget { showLeapBottomSheet( context: context, - title: AppLocalizations.of(context).density, + titleBuilder: (ctx) => Text(AppLocalizations.of(context).density), childrenBuilder: (context) { void changeDensity(ThemeDensity density) { cubit.changeDensity(density); diff --git a/app/linux/flutter/generated_plugin_registrant.cc b/app/linux/flutter/generated_plugin_registrant.cc index 13985775d0d..9ffe0268372 100644 --- a/app/linux/flutter/generated_plugin_registrant.cc +++ b/app/linux/flutter/generated_plugin_registrant.cc @@ -8,7 +8,7 @@ #include #include -#include +#include #include #include #include @@ -20,9 +20,9 @@ void fl_register_plugins(FlPluginRegistry* registry) { g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar = fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin"); flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar); - g_autoptr(FlPluginRegistrar) screen_retriever_registrar = - fl_plugin_registry_get_registrar_for_plugin(registry, "ScreenRetrieverPlugin"); - screen_retriever_plugin_register_with_registrar(screen_retriever_registrar); + g_autoptr(FlPluginRegistrar) screen_retriever_linux_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "ScreenRetrieverLinuxPlugin"); + screen_retriever_linux_plugin_register_with_registrar(screen_retriever_linux_registrar); g_autoptr(FlPluginRegistrar) sqlite3_flutter_libs_registrar = fl_plugin_registry_get_registrar_for_plugin(registry, "Sqlite3FlutterLibsPlugin"); sqlite3_flutter_libs_plugin_register_with_registrar(sqlite3_flutter_libs_registrar); diff --git a/app/linux/flutter/generated_plugins.cmake b/app/linux/flutter/generated_plugins.cmake index f8c7b3dc9ef..80cae379fa5 100644 --- a/app/linux/flutter/generated_plugins.cmake +++ b/app/linux/flutter/generated_plugins.cmake @@ -5,7 +5,7 @@ list(APPEND FLUTTER_PLUGIN_LIST dynamic_color flutter_secure_storage_linux - screen_retriever + screen_retriever_linux sqlite3_flutter_libs url_launcher_linux window_manager diff --git a/app/macos/Flutter/GeneratedPluginRegistrant.swift b/app/macos/Flutter/GeneratedPluginRegistrant.swift index 2a6c63c69c1..a64f85b70a9 100644 --- a/app/macos/Flutter/GeneratedPluginRegistrant.swift +++ b/app/macos/Flutter/GeneratedPluginRegistrant.swift @@ -10,9 +10,9 @@ import dynamic_color import flutter_secure_storage_macos import package_info_plus import path_provider_foundation -import screen_retriever +import screen_retriever_macos import shared_preferences_foundation -import sqflite +import sqflite_darwin import sqlite3_flutter_libs import url_launcher_macos import window_manager @@ -23,7 +23,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin")) FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) - ScreenRetrieverPlugin.register(with: registry.registrar(forPlugin: "ScreenRetrieverPlugin")) + ScreenRetrieverMacosPlugin.register(with: registry.registrar(forPlugin: "ScreenRetrieverMacosPlugin")) SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) Sqlite3FlutterLibsPlugin.register(with: registry.registrar(forPlugin: "Sqlite3FlutterLibsPlugin")) diff --git a/app/pubspec.lock b/app/pubspec.lock index 125b3b97110..9ff8981234c 100644 --- a/app/pubspec.lock +++ b/app/pubspec.lock @@ -5,18 +5,23 @@ packages: dependency: transitive description: name: _fe_analyzer_shared - sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7" + sha256: f256b0c0ba6c7577c15e2e4e114755640a875e885099367bf6e012b19314c834 url: "https://pub.dev" source: hosted - version: "67.0.0" + version: "72.0.0" + _macros: + dependency: transitive + description: dart + source: sdk + version: "0.3.2" analyzer: dependency: transitive description: name: analyzer - sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d" + sha256: b652861553cd3990d8ed361f7979dc6d7053a9ac8843fa73820ab68ce5410139 url: "https://pub.dev" source: hosted - version: "6.4.1" + version: "6.7.0" animations: dependency: "direct main" description: @@ -29,26 +34,26 @@ packages: dependency: transitive description: name: ansicolor - sha256: "8bf17a8ff6ea17499e40a2d2542c2f481cd7615760c6d34065cb22bfd22e6880" + sha256: "50e982d500bc863e1d703448afdbf9e5a72eb48840a4f766fa361ffd6877055f" url: "https://pub.dev" source: hosted - version: "2.0.2" + version: "2.0.3" archive: dependency: transitive description: name: archive - sha256: "6bd38d335f0954f5fad9c79e614604fbf03a0e5b975923dd001b6ea965ef5b4b" + sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d url: "https://pub.dev" source: hosted - version: "3.6.0" + version: "3.6.1" args: dependency: "direct main" description: name: args - sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a" + sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6 url: "https://pub.dev" source: hosted - version: "2.5.0" + version: "2.6.0" async: dependency: transitive description: @@ -117,18 +122,18 @@ packages: dependency: "direct dev" description: name: build_runner - sha256: "1414d6d733a85d8ad2f1dfcb3ea7945759e35a123cb99ccfac75d0758f75edfa" + sha256: "028819cfb90051c6b5440c7e574d1896f8037e3c96cf17aaeb054c9311cfbf4d" url: "https://pub.dev" source: hosted - version: "2.4.10" + version: "2.4.13" build_runner_core: dependency: transitive description: name: build_runner_core - sha256: "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799" + sha256: f8126682b87a7282a339b871298cc12009cb67109cfa1614d6436fb0289193e0 url: "https://pub.dev" source: hosted - version: "7.3.0" + version: "7.3.2" built_collection: dependency: transitive description: @@ -173,10 +178,10 @@ packages: dependency: transitive description: name: code_builder - sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37 + sha256: "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e" url: "https://pub.dev" source: hosted - version: "4.10.0" + version: "4.10.1" collection: dependency: "direct main" description: @@ -189,56 +194,56 @@ packages: dependency: "direct main" description: name: connectivity_plus - sha256: db7a4e143dc72cc3cb2044ef9b052a7ebfe729513e6a82943bc3526f784365b8 + sha256: "876849631b0c7dc20f8b471a2a03142841b482438e3b707955464f5ffca3e4c3" url: "https://pub.dev" source: hosted - version: "6.0.3" + version: "6.1.0" connectivity_plus_platform_interface: dependency: transitive description: name: connectivity_plus_platform_interface - sha256: b6a56efe1e6675be240de39107281d4034b64ac23438026355b4234042a35adb + sha256: "42657c1715d48b167930d5f34d00222ac100475f73d10162ddf43e714932f204" url: "https://pub.dev" source: hosted - version: "2.0.0" + version: "2.0.1" convert: dependency: transitive description: name: convert - sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.1.2" cross_file: dependency: transitive description: name: cross_file - sha256: "55d7b444feb71301ef6b8838dbc1ae02e63dd48c8773f3810ff53bb1e2945b32" + sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670" url: "https://pub.dev" source: hosted - version: "0.3.4+1" + version: "0.3.4+2" crypto: dependency: transitive description: name: crypto - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855" url: "https://pub.dev" source: hosted - version: "3.0.3" + version: "3.0.6" csslib: dependency: transitive description: name: csslib - sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb" + sha256: "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e" url: "https://pub.dev" source: hosted - version: "1.0.0" + version: "1.0.2" dart_leap: dependency: transitive description: path: "packages/dart_leap" - ref: d45bd54f2efd6a861d6f44a8b833575b0482dc4c - resolved-ref: d45bd54f2efd6a861d6f44a8b833575b0482dc4c + ref: dfda6c2e3cef2e29511f97e9470fd4deb8e0c573 + resolved-ref: dfda6c2e3cef2e29511f97e9470fd4deb8e0c573 url: "https://github.com/LinwoodDev/dart_pkgs" source: git version: "1.0.0" @@ -246,10 +251,10 @@ packages: dependency: transitive description: name: dart_style - sha256: "99e066ce75c89d6b29903d788a7bb9369cf754f7b24bf70bf4b6d6d6b26853b9" + sha256: "7856d364b589d1f08986e140938578ed36ed948581fbc3bc9aef1805039ac5ab" url: "https://pub.dev" source: hosted - version: "2.3.6" + version: "2.3.7" dbus: dependency: transitive description: @@ -262,10 +267,10 @@ packages: dependency: transitive description: name: dev_build - sha256: "2fa3bf81b5e92504f8d7a412df2c69b61a24ceca468466e5e777cbb59c30af96" + sha256: "91aefce06d4c80c3c8a6c04af6a60ca8e5c01ec6780410ab82e07bfb4f8c49f2" url: "https://pub.dev" source: hosted - version: "0.16.5" + version: "1.1.0+2" dynamic_color: dependency: "direct main" description: @@ -286,10 +291,10 @@ packages: dependency: "direct dev" description: name: espresso - sha256: "869ad09bd4bc1d4681f04ca97ec74eff11ca6cc830f55c99fa5744a8b3c7c041" + sha256: cbf1b4c38c9a60ec77a2b24346155918141b15bca92f308c0246e76cdf43450b url: "https://pub.dev" source: hosted - version: "0.3.0+8" + version: "0.4.0+3" fake_async: dependency: transitive description: @@ -302,50 +307,50 @@ packages: dependency: transitive description: name: ffi - sha256: "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21" + sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6" url: "https://pub.dev" source: hosted - version: "2.1.2" + version: "2.1.3" file: dependency: transitive description: name: file - sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 url: "https://pub.dev" source: hosted - version: "7.0.0" + version: "7.0.1" file_picker: dependency: "direct main" description: name: file_picker - sha256: "29c90806ac5f5fb896547720b73b17ee9aed9bba540dc5d91fe29f8c5745b10a" + sha256: aac85f20436608e01a6ffd1fdd4e746a7f33c93a2c83752e626bdfaea139b877 url: "https://pub.dev" source: hosted - version: "8.0.3" + version: "8.1.3" fixnum: dependency: transitive description: name: fixnum - sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.1.1" flex_color_scheme: dependency: "direct main" description: name: flex_color_scheme - sha256: "32914024a4f404d90ff449f58d279191675b28e7c08824046baf06826e99d984" + sha256: aab8db18233d4daf03336b2c22588820509a3a5261658c4042f029e8ed920c7d url: "https://pub.dev" source: hosted - version: "7.3.1" + version: "8.0.0-dev.2" flex_seed_scheme: dependency: transitive description: name: flex_seed_scheme - sha256: "4cee2f1d07259f77e8b36f4ec5f35499d19e74e17c7dce5b819554914082bc01" + sha256: "7639d2c86268eff84a909026eb169f008064af0fb3696a651b24b0fa24a40334" url: "https://pub.dev" source: hosted - version: "1.5.0" + version: "3.4.1" flow_api: dependency: "direct main" description: @@ -362,18 +367,18 @@ packages: dependency: "direct main" description: name: flutter_bloc - sha256: f0ecf6e6eb955193ca60af2d5ca39565a86b8a142452c5b24d96fb477428f4d2 + sha256: b594505eac31a0518bdcb4b5b79573b8d9117b193cc80cc12e17d639b10aa27a url: "https://pub.dev" source: hosted - version: "8.1.5" + version: "8.1.6" flutter_lints: dependency: "direct dev" description: name: flutter_lints - sha256: "3f41d009ba7172d5ff9be5f6e6e6abb4300e263aab8866d2a0842ed2a70f8f0c" + sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" url: "https://pub.dev" source: hosted - version: "4.0.0" + version: "5.0.0" flutter_localizations: dependency: "direct main" description: flutter @@ -391,26 +396,26 @@ packages: dependency: "direct main" description: name: flutter_markdown - sha256: "9921f9deda326f8a885e202b1e35237eadfc1345239a0f6f0f1ff287e047547f" + sha256: f0e599ba89c9946c8e051780f0ec99aba4ba15895e0380a7ab68f420046fc44e url: "https://pub.dev" source: hosted - version: "0.7.1" + version: "0.7.4+1" flutter_native_splash: dependency: "direct main" description: name: flutter_native_splash - sha256: edf39bcf4d74aca1eb2c1e43c3e445fd9f494013df7f0da752fefe72020eedc0 + sha256: ee5c9bd2b74ea8676442fd4ab876b5d41681df49276488854d6c81a5377c0ef1 url: "https://pub.dev" source: hosted - version: "2.4.0" + version: "2.4.2" flutter_plugin_android_lifecycle: dependency: transitive description: name: flutter_plugin_android_lifecycle - sha256: "8cf40eebf5dec866a6d1956ad7b4f7016e6c0cc69847ab946833b7d43743809f" + sha256: "9b78450b89f059e96c9ebb355fa6b3df1d6b330436e0b885fb49594c41721398" url: "https://pub.dev" source: hosted - version: "2.0.19" + version: "2.0.23" flutter_secure_storage: dependency: "direct main" description: @@ -446,10 +451,11 @@ packages: flutter_secure_storage_web: dependency: "direct overridden" description: - name: flutter_secure_storage_web - sha256: "4f95c4d5389fee7d19a41e776426e5c1b3e34319cd670c58da2dc4811d9c59bf" - url: "https://pub.dev" - source: hosted + path: flutter_secure_storage_web + ref: "1d7b32bde7910bc2ffd1db5245ee0b2478ff4b7d" + resolved-ref: "1d7b32bde7910bc2ffd1db5245ee0b2478ff4b7d" + url: "https://github.com/CodeDoctorDE/flutter_secure_storage.git" + source: git version: "2.0.0-beta.1" flutter_secure_storage_windows: dependency: transitive @@ -481,18 +487,18 @@ packages: dependency: "direct dev" description: name: freezed - sha256: a434911f643466d78462625df76fd9eb13e57348ff43fe1f77bbe909522c67a1 + sha256: "44c19278dd9d89292cf46e97dc0c1e52ce03275f40a97c5a348e802a924bf40e" url: "https://pub.dev" source: hosted - version: "2.5.2" + version: "2.5.7" freezed_annotation: dependency: "direct main" description: name: freezed_annotation - sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d + sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2 url: "https://pub.dev" source: hosted - version: "2.4.1" + version: "2.4.4" frontend_server_client: dependency: transitive description: @@ -513,34 +519,34 @@ packages: dependency: "direct main" description: name: go_router - sha256: "6ad5662b014c06c20fa46ab78715c96b2222a7fe4f87bf77e0289592c2539e86" + sha256: "6f1b756f6e863259a99135ff3c95026c3cdca17d10ebef2bba2261a25ddc8bbc" url: "https://pub.dev" source: hosted - version: "14.1.3" + version: "14.3.0" graphs: dependency: transitive description: name: graphs - sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.3.2" html: dependency: transitive description: name: html - sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" + sha256: "1fc58edeaec4307368c60d59b7e15b9d658b57d7f3125098b6294153c75337ec" url: "https://pub.dev" source: hosted - version: "0.15.4" + version: "0.15.5" http: dependency: "direct main" description: name: http - sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" + sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010 url: "https://pub.dev" source: hosted - version: "1.2.1" + version: "1.2.2" http_multi_server: dependency: transitive description: @@ -561,10 +567,10 @@ packages: dependency: transitive description: name: image - sha256: "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8" + sha256: f31d52537dc417fdcde36088fdf11d191026fd5e4fae742491ebd40e5a8bea7d url: "https://pub.dev" source: hosted - version: "4.2.0" + version: "4.3.0" infinite_scroll_pagination: dependency: "direct main" description: @@ -617,18 +623,18 @@ packages: dependency: transitive description: name: leak_tracker - sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a" + sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05" url: "https://pub.dev" source: hosted - version: "10.0.4" + version: "10.0.5" leak_tracker_flutter_testing: dependency: transitive description: name: leak_tracker_flutter_testing - sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8" + sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806" url: "https://pub.dev" source: hosted - version: "3.0.3" + version: "3.0.5" leak_tracker_testing: dependency: transitive description: @@ -649,18 +655,26 @@ packages: dependency: transitive description: name: lints - sha256: "976c774dd944a42e83e2467f4cc670daef7eed6295b10b36ae8c85bcbf828235" + sha256: "3315600f3fb3b135be672bf4a178c55f274bebe368325ae18462c89ac1e3b413" url: "https://pub.dev" source: hosted - version: "4.0.0" + version: "5.0.0" logging: dependency: transitive description: name: logging - sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.3.0" + macros: + dependency: transitive + description: + name: macros + sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536" + url: "https://pub.dev" + source: hosted + version: "0.1.2-main.4" markdown: dependency: "direct main" description: @@ -681,16 +695,16 @@ packages: dependency: transitive description: name: material_color_utilities - sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec url: "https://pub.dev" source: hosted - version: "0.8.0" + version: "0.11.1" material_leap: dependency: "direct main" description: path: "packages/material_leap" - ref: c10ef06d25be8374130a24408f677272d0dd9747 - resolved-ref: c10ef06d25be8374130a24408f677272d0dd9747 + ref: "1173f5e3f737e99fe6f6e13f6a28633fe9e7c6e4" + resolved-ref: "1173f5e3f737e99fe6f6e13f6a28633fe9e7c6e4" url: "https://github.com/LinwoodDev/dart_pkgs" source: git version: "0.0.1" @@ -698,18 +712,18 @@ packages: dependency: transitive description: name: meta - sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136" + sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 url: "https://pub.dev" source: hosted - version: "1.12.0" + version: "1.15.0" mime: dependency: transitive description: name: mime - sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a" url: "https://pub.dev" source: hosted - version: "1.0.5" + version: "1.0.6" nested: dependency: transitive description: @@ -738,18 +752,18 @@ packages: dependency: "direct main" description: name: package_info_plus - sha256: b93d8b4d624b4ea19b0a5a208b2d6eff06004bc3ce74c06040b120eeadd00ce0 + sha256: df3eb3e0aed5c1107bb0fdb80a8e82e778114958b1c5ac5644fb1ac9cae8a998 url: "https://pub.dev" source: hosted - version: "8.0.0" + version: "8.1.0" package_info_plus_platform_interface: dependency: transitive description: name: package_info_plus_platform_interface - sha256: f49918f3433a3146047372f9d4f1f847511f2acd5cd030e1f44fe5a50036b70e + sha256: ac1f4a4847f1ade8e6a87d1f39f5d7c67490738642e2542f559ec38c37489a66 url: "https://pub.dev" source: hosted - version: "3.0.0" + version: "3.0.1" path: dependency: "direct main" description: @@ -762,18 +776,18 @@ packages: dependency: "direct main" description: name: path_provider - sha256: c9e7d3a4cd1410877472158bee69963a4579f78b68c65a2b7d40d1a7a88bb161 + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.5" path_provider_android: dependency: transitive description: name: path_provider_android - sha256: a248d8146ee5983446bf03ed5ea8f6533129a12b11f12057ad1b4a67a2b3b41d + sha256: c464428172cb986b758c6d1724c603097febb8fb855aa265aeecc9280c294d4a url: "https://pub.dev" source: hosted - version: "2.2.4" + version: "2.2.12" path_provider_foundation: dependency: transitive description: @@ -802,10 +816,10 @@ packages: dependency: transitive description: name: path_provider_windows - sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 url: "https://pub.dev" source: hosted - version: "2.2.1" + version: "2.3.0" petitparser: dependency: transitive description: @@ -826,10 +840,10 @@ packages: dependency: transitive description: name: platform - sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" url: "https://pub.dev" source: hosted - version: "3.1.4" + version: "3.1.6" plugin_platform_interface: dependency: transitive description: @@ -850,10 +864,10 @@ packages: dependency: transitive description: name: process_run - sha256: "8d9c6198b98fbbfb511edd42e7364e24d85c163e47398919871b952dc86a423e" + sha256: "5736140acb1c54a11bd4c1e8d4821bfd684de69a4bf88835316cb05e596d8091" url: "https://pub.dev" source: hosted - version: "0.14.2" + version: "1.2.2" provider: dependency: transitive description: @@ -874,18 +888,18 @@ packages: dependency: transitive description: name: pubspec_parse - sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + sha256: c799b721d79eb6ee6fa56f00c04b472dcd44a30d258fac2174a6ec57302678f8 url: "https://pub.dev" source: hosted - version: "1.2.3" + version: "1.3.0" rxdart: dependency: "direct main" description: name: rxdart - sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" + sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" url: "https://pub.dev" source: hosted - version: "0.27.7" + version: "0.28.0" s5_msgpack: dependency: transitive description: @@ -898,66 +912,98 @@ packages: dependency: transitive description: name: screen_retriever - sha256: "6ee02c8a1158e6dae7ca430da79436e3b1c9563c8cf02f524af997c201ac2b90" + sha256: "570dbc8e4f70bac451e0efc9c9bb19fa2d6799a11e6ef04f946d7886d2e23d0c" + url: "https://pub.dev" + source: hosted + version: "0.2.0" + screen_retriever_linux: + dependency: transitive + description: + name: screen_retriever_linux + sha256: f7f8120c92ef0784e58491ab664d01efda79a922b025ff286e29aa123ea3dd18 + url: "https://pub.dev" + source: hosted + version: "0.2.0" + screen_retriever_macos: + dependency: transitive + description: + name: screen_retriever_macos + sha256: "71f956e65c97315dd661d71f828708bd97b6d358e776f1a30d5aa7d22d78a149" + url: "https://pub.dev" + source: hosted + version: "0.2.0" + screen_retriever_platform_interface: + dependency: transitive + description: + name: screen_retriever_platform_interface + sha256: ee197f4581ff0d5608587819af40490748e1e39e648d7680ecf95c05197240c0 + url: "https://pub.dev" + source: hosted + version: "0.2.0" + screen_retriever_windows: + dependency: transitive + description: + name: screen_retriever_windows + sha256: "449ee257f03ca98a57288ee526a301a430a344a161f9202b4fcc38576716fe13" url: "https://pub.dev" source: hosted - version: "0.1.9" + version: "0.2.0" shared_preferences: dependency: "direct main" description: name: shared_preferences - sha256: d3bbe5553a986e83980916ded2f0b435ef2e1893dfaa29d5a7a790d0eca12180 + sha256: "746e5369a43170c25816cc472ee016d3a66bc13fcf430c0bc41ad7b4b2922051" url: "https://pub.dev" source: hosted - version: "2.2.3" + version: "2.3.2" shared_preferences_android: dependency: transitive description: name: shared_preferences_android - sha256: "1ee8bf911094a1b592de7ab29add6f826a7331fb854273d55918693d5364a1f2" + sha256: "3b9febd815c9ca29c9e3520d50ec32f49157711e143b7a4ca039eb87e8ade5ab" url: "https://pub.dev" source: hosted - version: "2.2.2" + version: "2.3.3" shared_preferences_foundation: dependency: transitive description: name: shared_preferences_foundation - sha256: "0a8a893bf4fd1152f93fec03a415d11c27c74454d96e2318a7ac38dd18683ab7" + sha256: "07e050c7cd39bad516f8d64c455f04508d09df104be326d8c02551590a0d513d" url: "https://pub.dev" source: hosted - version: "2.4.0" + version: "2.5.3" shared_preferences_linux: dependency: transitive description: name: shared_preferences_linux - sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" + sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" url: "https://pub.dev" source: hosted - version: "2.3.2" + version: "2.4.1" shared_preferences_platform_interface: dependency: transitive description: name: shared_preferences_platform_interface - sha256: "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b" + sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" url: "https://pub.dev" source: hosted - version: "2.3.2" + version: "2.4.1" shared_preferences_web: dependency: transitive description: name: shared_preferences_web - sha256: "9aee1089b36bd2aafe06582b7d7817fd317ef05fc30e6ba14bff247d0933042a" + sha256: d2ca4132d3946fec2184261726b355836a82c33d7d5b67af32692aff18a4684e url: "https://pub.dev" source: hosted - version: "2.3.0" + version: "2.4.2" shared_preferences_windows: dependency: transitive description: name: shared_preferences_windows - sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" + sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" url: "https://pub.dev" source: hosted - version: "2.3.2" + version: "2.4.1" shelf: dependency: transitive description: @@ -1023,50 +1069,74 @@ packages: dependency: "direct main" description: name: sqflite - sha256: a43e5a27235518c03ca238e7b4732cf35eabe863a369ceba6cbefa537a66f16d + sha256: "79a297dc3cc137e758c6a4baf83342b039e5a6d2436fcdf3f96a00adaaf2ad62" + url: "https://pub.dev" + source: hosted + version: "2.4.0" + sqflite_android: + dependency: transitive + description: + name: sqflite_android + sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3" url: "https://pub.dev" source: hosted - version: "2.3.3+1" + version: "2.4.0" sqflite_common: dependency: "direct main" description: name: sqflite_common - sha256: "3da423ce7baf868be70e2c0976c28a1bb2f73644268b7ffa7d2e08eab71f16a4" + sha256: "4468b24876d673418a7b7147e5a08a715b4998a7ae69227acafaab762e0e5490" url: "https://pub.dev" source: hosted - version: "2.5.4" + version: "2.5.4+5" sqflite_common_ffi: dependency: "direct main" description: name: sqflite_common_ffi - sha256: "4d6137c29e930d6e4a8ff373989dd9de7bac12e3bc87bce950f6e844e8ad3bb5" + sha256: d316908f1537725427ff2827a5c5f3b2c1bc311caed985fe3c9b10939c9e11ca url: "https://pub.dev" source: hosted - version: "2.3.3" + version: "2.3.4" sqflite_common_ffi_web: dependency: "direct main" description: name: sqflite_common_ffi_web - sha256: cfc9d1c61a3e06e5b2e96994a44b11125b4f451fee95b9fad8bd473b4613d592 + sha256: f540ad769e5fd31aabe77bfa6e774fdd36145a83e33cdc39239f310c5f8559c3 + url: "https://pub.dev" + source: hosted + version: "0.4.5+3" + sqflite_darwin: + dependency: transitive + description: + name: sqflite_darwin + sha256: "769733dddf94622d5541c73e4ddc6aa7b252d865285914b6fcd54a63c4b4f027" url: "https://pub.dev" source: hosted - version: "0.4.3+1" + version: "2.4.1-1" + sqflite_platform_interface: + dependency: transitive + description: + name: sqflite_platform_interface + sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" + url: "https://pub.dev" + source: hosted + version: "2.4.0" sqlite3: dependency: "direct main" description: name: sqlite3 - sha256: b384f598b813b347c5a7e5ffad82cbaff1bec3d1561af267041e66f6f0899295 + sha256: bb174b3ec2527f9c5f680f73a89af8149dd99782fbb56ea88ad0807c5638f2ed url: "https://pub.dev" source: hosted - version: "2.4.3" + version: "2.4.7" sqlite3_flutter_libs: dependency: "direct main" description: name: sqlite3_flutter_libs - sha256: "1e62698dc1ab396152ccaf3b3990d826244e9f3c8c39b51805f209adcd6dbea3" + sha256: "7ae52b23366e5295005022e62fa093f64bfe190810223ea0ebf733a4cd140bce" url: "https://pub.dev" source: hosted - version: "0.5.22" + version: "0.5.26" stack_trace: dependency: transitive description: @@ -1103,10 +1173,10 @@ packages: dependency: transitive description: name: synchronized - sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558" + sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225" url: "https://pub.dev" source: hosted - version: "3.1.0+1" + version: "3.3.0+3" term_glyph: dependency: transitive description: @@ -1119,10 +1189,10 @@ packages: dependency: transitive description: name: test_api - sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f" + sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb" url: "https://pub.dev" source: hosted - version: "0.7.0" + version: "0.7.2" timing: dependency: transitive description: @@ -1143,10 +1213,10 @@ packages: dependency: transitive description: name: typed_data - sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 url: "https://pub.dev" source: hosted - version: "1.3.2" + version: "1.4.0" universal_io: dependency: transitive description: @@ -1159,42 +1229,42 @@ packages: dependency: "direct main" description: name: url_launcher - sha256: "6ce1e04375be4eed30548f10a315826fd933c1e493206eab82eed01f438c8d2e" + sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603" url: "https://pub.dev" source: hosted - version: "6.2.6" + version: "6.3.1" url_launcher_android: dependency: transitive description: name: url_launcher_android - sha256: "17cd5e205ea615e2c6ea7a77323a11712dffa0720a8a90540db57a01347f9ad9" + sha256: "6fc2f56536ee873eeb867ad176ae15f304ccccc357848b351f6f0d8d4a40d193" url: "https://pub.dev" source: hosted - version: "6.3.2" + version: "6.3.14" url_launcher_ios: dependency: transitive description: name: url_launcher_ios - sha256: "7068716403343f6ba4969b4173cbf3b84fc768042124bc2c011e5d782b24fe89" + sha256: e43b677296fadce447e987a2f519dcf5f6d1e527dc35d01ffab4fff5b8a7063e url: "https://pub.dev" source: hosted - version: "6.3.0" + version: "6.3.1" url_launcher_linux: dependency: transitive description: name: url_launcher_linux - sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 + sha256: e2b9622b4007f97f504cd64c0128309dfb978ae66adbe944125ed9e1750f06af url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.2.0" url_launcher_macos: dependency: transitive description: name: url_launcher_macos - sha256: "9a1a42d5d2d95400c795b2914c36fdcb525870c752569438e4ebb09a2b5d90de" + sha256: "769549c999acdb42b8bcfa7c43d72bf79a382ca7441ab18a808e101149daf672" url: "https://pub.dev" source: hosted - version: "3.2.0" + version: "3.2.1" url_launcher_platform_interface: dependency: transitive description: @@ -1207,18 +1277,18 @@ packages: dependency: transitive description: name: url_launcher_web - sha256: "8d9e750d8c9338601e709cd0885f95825086bd8b642547f26bda435aade95d8a" + sha256: "772638d3b34c779ede05ba3d38af34657a05ac55b06279ea6edd409e323dca8e" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.3.3" url_launcher_windows: dependency: transitive description: name: url_launcher_windows - sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 + sha256: "44cf3aabcedde30f2dba119a9dea3b0f2672fbe6fa96e85536251d678216b3c4" url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.1.3" vector_math: dependency: transitive description: @@ -1231,10 +1301,10 @@ packages: dependency: transitive description: name: vm_service - sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec" + sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d" url: "https://pub.dev" source: hosted - version: "14.2.1" + version: "14.2.5" watcher: dependency: transitive description: @@ -1247,42 +1317,42 @@ packages: dependency: transitive description: name: web - sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + sha256: cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb url: "https://pub.dev" source: hosted - version: "0.5.1" + version: "1.1.0" web_socket_channel: dependency: transitive description: name: web_socket_channel - sha256: "58c6666b342a38816b2e7e50ed0f1e261959630becd4c879c4f26bfa14aa5a42" + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b url: "https://pub.dev" source: hosted - version: "2.4.5" + version: "2.4.0" win32: dependency: transitive description: name: win32 - sha256: a79dbe579cb51ecd6d30b17e0cae4e0ea15e2c0e66f69ad4198f22a6789e94f4 + sha256: "10169d3934549017f0ae278ccb07f828f9d6ea21573bab0fb77b0e1ef0fce454" url: "https://pub.dev" source: hosted - version: "5.5.1" + version: "5.7.2" window_manager: dependency: "direct main" description: name: window_manager - sha256: "8699323b30da4cdbe2aa2e7c9de567a6abd8a97d9a5c850a3c86dcd0b34bbfbf" + sha256: "732896e1416297c63c9e3fb95aea72d0355f61390263982a47fd519169dc5059" url: "https://pub.dev" source: hosted - version: "0.3.9" + version: "0.4.3" xdg_directories: dependency: transitive description: name: xdg_directories - sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" url: "https://pub.dev" source: hosted - version: "1.0.4" + version: "1.1.0" xml: dependency: "direct main" description: @@ -1300,5 +1370,5 @@ packages: source: hosted version: "3.1.2" sdks: - dart: ">=3.4.0 <4.0.0" - flutter: ">=3.19.0" + dart: ">=3.5.0 <4.0.0" + flutter: ">=3.24.4" diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 0b25ec13745..110dd7f3d04 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -3,7 +3,7 @@ description: Linwood Flow is a feature rich event and time management system # The following line prevents the package from being accidentally published to # pub.dev using `pub publish`. This is preferred for private packages. -publish_to: 'none' # Remove this line if you wish to publish to pub.dev +publish_to: "none" # Remove this line if you wish to publish to pub.dev # The following defines the version and build number for your application. # A version number is three numbers separated by dots, like 1.2.43 @@ -18,7 +18,8 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev version: 0.3.1+8 environment: - sdk: '>=3.0.0 <4.0.0' + sdk: ">=3.0.0 <4.0.0" + flutter: 3.24.4 dependencies: flutter: @@ -37,12 +38,12 @@ dependencies: material_leap: git: url: https://github.com/LinwoodDev/dart_pkgs - ref: c10ef06d25be8374130a24408f677272d0dd9747 + ref: 1173f5e3f737e99fe6f6e13f6a28633fe9e7c6e4 path: packages/material_leap phosphor_flutter: ^2.1.0 path: ^1.8.3 go_router: ^14.0.0 - flex_color_scheme: ^7.3.1 + flex_color_scheme: ^8.0.0-dev.2 flutter_bloc: ^8.1.5 freezed_annotation: ^2.4.1 json_annotation: ^4.9.0 @@ -50,7 +51,7 @@ dependencies: file_picker: ^8.0.2 collection: ^1.17.1 infinite_scroll_pagination: ^4.0.0 - window_manager: ^0.3.8 + window_manager: ^0.4.3 package_info_plus: ^8.0.0 # Database sqflite_common: ^2.5.3 @@ -64,7 +65,7 @@ dependencies: flutter_localized_locales: ^2.0.4 xml: ^6.5.0 connectivity_plus: ^6.0.3 - rxdart: ^0.27.7 + rxdart: ^0.28.0 flutter_secure_storage: ^9.0.0 flutter_markdown: ^0.7.1 markdown: ^7.2.2 @@ -73,14 +74,18 @@ dependencies: flutter_native_splash: ^2.4.0 dev_dependencies: build_runner: ^2.4.9 - flutter_lints: ^4.0.0 + flutter_lints: ^5.0.0 flutter_test: sdk: flutter freezed: ^2.5.2 json_serializable: ^6.7.1 - espresso: ^0.3.0+8 + espresso: ^0.4.0+3 dependency_overrides: - flutter_secure_storage_web: ^2.0.0-beta.1 + flutter_secure_storage_web: + git: + url: https://github.com/CodeDoctorDE/flutter_secure_storage.git + path: flutter_secure_storage_web + ref: 1d7b32bde7910bc2ffd1db5245ee0b2478ff4b7d # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec @@ -95,7 +100,7 @@ flutter: assets: - images/ - data/ - fonts: + fonts: - family: Comfortaa fonts: - asset: fonts/Comfortaa-Regular.ttf diff --git a/app/windows/flutter/generated_plugin_registrant.cc b/app/windows/flutter/generated_plugin_registrant.cc index 00e6b62cef5..14b61d358aa 100644 --- a/app/windows/flutter/generated_plugin_registrant.cc +++ b/app/windows/flutter/generated_plugin_registrant.cc @@ -9,7 +9,7 @@ #include #include #include -#include +#include #include #include #include @@ -21,8 +21,8 @@ void RegisterPlugins(flutter::PluginRegistry* registry) { registry->GetRegistrarForPlugin("DynamicColorPluginCApi")); FlutterSecureStorageWindowsPluginRegisterWithRegistrar( registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin")); - ScreenRetrieverPluginRegisterWithRegistrar( - registry->GetRegistrarForPlugin("ScreenRetrieverPlugin")); + ScreenRetrieverWindowsPluginCApiRegisterWithRegistrar( + registry->GetRegistrarForPlugin("ScreenRetrieverWindowsPluginCApi")); Sqlite3FlutterLibsPluginRegisterWithRegistrar( registry->GetRegistrarForPlugin("Sqlite3FlutterLibsPlugin")); UrlLauncherWindowsRegisterWithRegistrar( diff --git a/app/windows/flutter/generated_plugins.cmake b/app/windows/flutter/generated_plugins.cmake index bfd89fd4a0f..bb407b43090 100644 --- a/app/windows/flutter/generated_plugins.cmake +++ b/app/windows/flutter/generated_plugins.cmake @@ -6,7 +6,7 @@ list(APPEND FLUTTER_PLUGIN_LIST connectivity_plus dynamic_color flutter_secure_storage_windows - screen_retriever + screen_retriever_windows sqlite3_flutter_libs url_launcher_windows window_manager diff --git a/docs/.gitignore b/docs/.gitignore index c7221351106..6240da8b10b 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -1,31 +1,21 @@ -# Dependencies -/node_modules +# build output +dist/ +# generated types +.astro/ -# Production -/build -src/pages/CHANGELOG.md -src/pages/SECURITY.md - -# Generated files -.docusaurus -.cache-loader - -# Misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local +# dependencies +node_modules/ +# logs npm-debug.log* yarn-debug.log* yarn-error.log* +pnpm-debug.log* -# Yarn berry -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/sdks -!.yarn/versions + +# environment variables +.env +.env.production + +# macOS-specific files +.DS_Store diff --git a/docs/.markdownlint-cli2.jsonc b/docs/.markdownlint-cli2.jsonc deleted file mode 100644 index 8485eebf868..00000000000 --- a/docs/.markdownlint-cli2.jsonc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ignores": [ - "./README.md", - "**/privacypolicy.md", - "CODE_OF_CONDUCT.md", - "**/downloads/**" - ] -} \ No newline at end of file diff --git a/docs/README.md b/docs/README.md index 12f8543614a..e09bf55fefe 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,36 +1,55 @@ -# Website +# Starlight Starter Kit: Basics -This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator. +[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) -## Installation - -```console -yarn install +``` +npm create astro@latest -- --template starlight ``` -## Local Development +[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics) +[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/starlight/tree/main/examples/basics) +[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/withastro/starlight&create_from_path=examples/basics) +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fwithastro%2Fstarlight%2Ftree%2Fmain%2Fexamples%2Fbasics&project-name=my-starlight-docs&repository-name=my-starlight-docs) -```console -yarn start -``` +> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! -This command starts a local development server and opens up a browser window. Most changes are reflected live without -having to restart the server. +## 🚀 Project Structure -## Build +Inside of your Astro + Starlight project, you'll see the following folders and files: -```console -yarn build +``` +. +├── public/ +├── src/ +│ ├── assets/ +│ ├── content/ +│ │ ├── docs/ +│ │ └── config.ts +│ └── env.d.ts +├── astro.config.mjs +├── package.json +└── tsconfig.json ``` -This command generates static content into the `build` directory and can be served using any static contents hosting -service. +Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name. -## Deployment +Images can be added to `src/assets/` and embedded in Markdown with a relative link. -```console -GIT_USER= USE_SSH=true yarn deploy -``` +Static assets, like favicons, can be placed in the `public/` directory. + +## 🧞 Commands + +All commands are run from the root of the project, from a terminal: + +| Command | Action | +| :------------------------ | :----------------------------------------------- | +| `npm install` | Installs dependencies | +| `npm run dev` | Starts local dev server at `localhost:4321` | +| `npm run build` | Build your production site to `./dist/` | +| `npm run preview` | Preview your build locally, before deploying | +| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | +| `npm run astro -- --help` | Get help using the Astro CLI | + +## 👀 Want to learn more? -If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to -the `gh-pages` branch. +Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat). diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs new file mode 100644 index 00000000000..1b393646856 --- /dev/null +++ b/docs/astro.config.mjs @@ -0,0 +1,28 @@ +// @ts-check +import { defineConfig } from 'astro/config'; +import starlight from '@astrojs/starlight'; + +// https://astro.build/config +export default defineConfig({ + integrations: [ + starlight({ + title: 'My Docs', + social: { + github: 'https://github.com/withastro/starlight', + }, + sidebar: [ + { + label: 'Guides', + items: [ + // Each item here is one entry in the navigation menu. + { label: 'Example Guide', slug: 'guides/example' }, + ], + }, + { + label: 'Reference', + autogenerate: { directory: 'reference' }, + }, + ], + }), + ], +}); diff --git a/docs/babel.config.js b/docs/babel.config.js deleted file mode 100644 index 0adade1fb9f..00000000000 --- a/docs/babel.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - presets: [require.resolve('@docusaurus/core/lib/babel/preset')], -}; diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js deleted file mode 100644 index 9cdef947e00..00000000000 --- a/docs/docusaurus.config.js +++ /dev/null @@ -1,236 +0,0 @@ -/** @type {import('@docusaurus/types').DocusaurusConfig} */ -module.exports = { - title: "Linwood Flow", - tagline: "A feature rich event and time managment system", - url: "https://docs.flow.linwood.dev", - baseUrl: "/", - onBrokenLinks: "throw", - onBrokenMarkdownLinks: "warn", - favicon: "img/favicon.ico", - organizationName: "LinwoodDev", // Usually your GitHub org/user name. - projectName: "Flow", // Usually your repo name. - i18n: { - defaultLocale: "en", - locales: ["en", "de", "fr", "es", "it", "pt-br", "th", "tr", "ru"], - }, - themeConfig: { - colorMode: { - defaultMode: "dark", - disableSwitch: false, - respectPrefersColorScheme: true, - }, - navbar: { - title: "Flow", - logo: { - alt: "Flow Logo", - src: "img/logo.svg", - }, - items: [ - { - type: "doc", - docId: "intro", - position: "left", - label: "Tutorial", - }, - { - to: "downloads", - label: "Downloads", - position: "left", - }, - { - type: "doc", - docId: "community", - docsPluginId: "community", - position: "left", - label: "Community", - }, - { - type: "dropdown", - label: "More", - position: "left", - items: [ - { - label: "Matrix", - href: "https://linwood.dev/matrix", - }, - { - label: "Discord", - href: "https://discord.linwood.dev", - }, - { - label: "GitHub", - href: "https://github.com/LinwoodDev/Flow", - }, - { - label: "Blog", - href: "https://linwood.dev/blog", - }, - { - label: "Crowdin", - href: "https://go.linwood.dev/flow/crowdin", - }, - { - label: "Twitter", - href: "https://twitter.com/LinwoodDev", - }, - { - label: "Mastodon", - href: "https://floss.social/@linwood", - }, - { - label: "License", - href: "https://go.linwood.dev/flow/license", - }, - ], - }, - { - type: "localeDropdown", - position: "right", - dropdownItemsAfter: [ - { - to: "https://translate.linwood.dev/flow", - label: "Help translate", - }, - ], - }, - ], - }, - footer: { - style: "dark", - links: [ - { - title: "Community", - items: [ - { - label: "Discord", - href: "https://discord.linwood.dev", - }, - { - label: "Matrix", - href: "https://linwood.dev/matrix", - }, - { - label: "Twitter", - href: "https://twitter.com/LinwoodDev", - }, - { - label: "Mastodon", - href: "https://floss.social/@linwood", - }, - { - html: ` - - Deploys by Vercel - - `, - }, - ], - }, - { - title: "Source code", - items: [ - { - label: "App", - href: "https://github.com/LinwoodDev/Flow/tree/develop/app", - }, - { - label: "Server", - href: "https://github.com/LinwoodDev/Flow/tree/develop/server", - }, - { - label: "Docs", - href: "https://github.com/LinwoodDev/Flow/tree/develop/docs", - }, - { - label: "Shared", - href: "https://github.com/LinwoodDev/Flow/tree/develop/shared", - }, - { - label: "Contribution guide", - href: "https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md", - }, - ], - }, - { - title: "Legal", - items: [ - { - label: "Imprint", - href: "https://go.linwood.dev/imprint", - }, - { - label: "Privacy Policy of the app", - href: "/privacypolicy", - }, - { - label: "Privacy Policy of the website", - href: "https://go.linwood.dev/privacypolicy", - }, - ], - }, - ], - logo: { - alt: "Linwood Logo", - src: "https://raw.githubusercontent.com/LinwoodDev/website/main/public/logos/logo.png", - width: 100, - href: "https://linwood.dev", - }, - copyright: `Copyright © ${new Date().getFullYear()} LinwoodDev.`, - }, - }, - presets: [ - [ - "@docusaurus/preset-classic", - { - docs: { - routeBasePath: "docs/dev", - sidebarPath: require.resolve("./sidebars.js"), - editUrl: "https://github.com/LinwoodDev/Flow/edit/develop/docs/", - }, - blog: false, - theme: { - customCss: require.resolve("./src/css/custom.css"), - }, - }, - ], - ], - plugins: [ - [ - "@docusaurus/plugin-content-docs", - { - id: "community", - path: "community", - routeBasePath: "/", - sidebarPath: require.resolve("./sidebarsCommunity.js"), - }, - ], - [ - "@docusaurus/plugin-pwa", - { - offlineModeActivationStrategies: [ - "appInstalled", - "standalone", - "queryString", - ], - pwaHead: [ - { - tagName: "link", - rel: "icon", - href: "/img/logo.png", - }, - { - tagName: "link", - rel: "manifest", - href: "/manifest.json", // your PWA manifest - }, - { - tagName: "meta", - name: "theme-color", - content: "#7c4dff", - }, - ], - }, - ], - // Other tweaks - ], -}; diff --git a/docs/i18n/af/code.json b/docs/i18n/af/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/af/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/af/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/af/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/af/docusaurus-plugin-content-docs/current.json b/docs/i18n/af/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/af/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/af/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/af/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/af/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/af/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/af/docusaurus-theme-classic/footer.json b/docs/i18n/af/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/af/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/af/docusaurus-theme-classic/navbar.json b/docs/i18n/af/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/af/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/ar/code.json b/docs/i18n/ar/code.json deleted file mode 100644 index fd5da07c457..00000000000 --- a/docs/i18n/ar/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "بدء التشغيل", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "تحميل لنظام Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "تحميل لـ Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "تحميل للأندرويد", - "description": "homepage android button" - }, - "Open the web app": { - "message": "فتح تطبيق الويب", - "description": "homepage web button" - }, - "Downloads": { - "message": "التنزيلات", - "description": "homepage downloads button" - }, - "Time management": { - "message": "إدارة الوقت", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "إدارة كفاءة الوقت وأتمته.", - "description": "Features Time management description" - }, - "Event management": { - "message": "إدارة الحدث", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "جدولة الأحداث، تعيين المستخدمين لها وإعطاء المهام لهم", - "description": "Features Event management description" - }, - "Your data": { - "message": "البيانات الخاصة بك", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "يمكن للجميع إنشاء خادم خاص بهم والحصول على بياناتك على ذلك.", - "description": "Features Your data description" - }, - "Open source": { - "message": "المصدر المفتوح", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "التطبيق والخادم كلهما مفتوح المصدر. يمكن للجميع المساهمة!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "تحطمت هذه الصفحة.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "الصفحة غير موجودة", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "لم نتمكن من العثور على ما كنت تبحث عنه.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "يرجى الاتصال بمالك الموقع الذي ربطك بالرابط الأصلي وإبلاغهم بأن الرابط مكسور.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "ملاحظة", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "الخطر", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "معلومات", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "تحذير", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "أرشيف", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "أرشيف", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "مرر إلى الأعلى", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "التنقل في صفحة القائمة المدونة", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "الإدخالات الحديثة", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "الإدخالات القديمة", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "التنقل في صفحة نشر المدونة", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "مشاركة أحدث", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "مشاركة قديمة", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "منشور واحد {count} مشاركات", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "تم وضع علامة {nPosts} مع \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "عرض جميع العلامات", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "التبديل بين الوضع المظلم والوضع الضوئي (حاليا {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "الوضع المظلم", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "وضع الضوء", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "ممزوج", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} عناصر", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "تصفح صفحات المستندات", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "السابق", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "التالي", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "علامة الدوالة الواحدة{count} المستندات الموسومة", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} مع \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "الإصدار: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "هذه مستندات غير منشورة لإصدار {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "هذا هو التوثيق ل {siteTitle} {versionLabel}، الذي لم يعد محتفظا به بنشاط.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "للحصول على وثائق حديثة، انظر {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "أحدث إصدار", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "تحرير هذه الصفحة", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "رابط مباشر إلى {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " في {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " بواسطة {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "آخر تحديث{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "الإصدارات", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "العلامات:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "أغلق", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "تصفح أحدث مشاركات المدونة", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "منسوخ", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "نسخ الرمز إلى الحافظة", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "نسخ", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "تبديل تغليف الكلمات", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "الرئيسية", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "اللغات", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "في هذه الصفحة", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "قراءة دقيقة واحدة{readingTime} دقيقة", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "اقرأ المزيد", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "اقرأ المزيد حول {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "الصفحة الرئيسية", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "طي الشريط الجانبي", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "طي الشريط الجانبي", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "إغلاق شريط التنقل", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "○ العودة إلى القائمة الرئيسية", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "تبديل شريط التنقل", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "نسخة جديدة متوفرة", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "تحديث", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "أغلق", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "حاول مرة أخرى", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "تخطي إلى المحتوى الرئيسي", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "الوسوم", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "تحذير", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "توسيع فئة الشريط الجانبي '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "طي الشريط الجانبي الفئة '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "صفحة غير مدرجة", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "هذه الصفحة غير مدرجة في القائمة. محركات البحث لن تفهرسها، ولا يمكن الوصول إليها إلا للمستخدمين الذين لديهم رابط مباشر.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} عناصر", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index c5cf4820943..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "التالي", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "ديسكورد", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 035e854081b..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: تغيير -hide_title: true -sidebar_label: تغيير ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index faef122b578..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: مدونة قواعد السلوك -hide_title: true -sidebar_label: مدونة قواعد السلوك ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 8a402d82e65..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "المساهمة" -hide_title: true -sidebar_label: "المساهمة" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 652207dd730..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "التنزيلات" -} \ No newline at end of file diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index fc48febc102..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![إصدار الإصدار المستقر](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![إصدار الإصدار الليلي](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## متطلبات النظام الدنيا - -* أندرويد 5.0 (API level 21) أو أعلى. - -## ثنائيات - -
- - اسطبل - - - ليلي - -
- -اقرأ المزيد عن الإصدار الليلي من التدفق [هنا](/nightly). diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 4db3d669822..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "بناء الخاص بك" -sidebar_position: 1 ---- - -1. تثبيت git و flutter (بيتا) -2. استنساخ المستودع -3. انتقل إلى دليل التطبيق -4. استخدام أداة التردد لتجميع التطبيق - * `بناء قماش pk` - * `باقة بناء حزمة` - * `بناء إنترنت متقطع` - * `ترقية بناء لينوكس` - * `بناء نوافذ متقطعة` -5. الملفات المجمعة موجودة في دليل البناء diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 391238f748d..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: التنزيلات ---- - -![إصدار الإصدار المستقر](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![إصدار الإصدار الليلي](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## اختر منصتك - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - خادم - Selfhosting - -
- -## روابط مفيدة - -- [تغيير](changelog) -- [الإصدارات القديمة](https://github.com/LinwoodDev/Flow/releases) -- [أحدث إصدار](https://github.com/LinwoodDev/Flow/releases/latest) -- [الدعم](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 29399c1ab0c..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![إصدار الإصدار المستقر](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![إصدار الإصدار الليلي](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -الرجاء استخدام إصدار الفلاتر إن أمكن. وإلا تحتاج إلى تثبيت `libsecret-1-dev` و `libjsoncpp-dev`. - -::: - -## ثنائيات - -
-
- -
    -
  • - - محمول - -
  • -
  • - - ديب - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - محمول - -
  • -
  • - - ديب - -
  • -
  • - - AppImage - -
  • -
-
-
- -اقرأ المزيد عن الإصدار الليلي من التدفق [هنا](/nightly). diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 930105b354a..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![إصدار الإصدار المستقر](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![إصدار الإصدار الليلي](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## الروابط - - diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 9a2a30ef6ab..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: شكرا لك على التحميل -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# شكرا لك على التحميل - - - -## # Windows SmartSscreen - - -يحذر مستخدمي ويندوز عند تثبيت البرنامج بدون شهادة. - -![Smart screen](/img/smart-screen.png) - -لتثبيت التطبيق، تحتاج إلى النقر على "المزيد من المعلومات". - -![الشاشة الذكية المزيد من المعلومات](/img/smart-screen-more-info.png) - -ثم انقر على "تشغيل على أي حال". - -
diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index a2e5e7c52b1..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![إصدار الإصدار المستقر](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![إصدار الإصدار الليلي](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -من السهل جداً استضافة سيرفر الويب الخاص بك. - -## خادم بسيط - -قم بتثبيت طلاقة وبناء التطبيق باستخدام: - -```bash -تطبيق cd -فلتر احصل على -بناء الويب بطلاقة -``` - -جميع الملفات موجودة في دليل `app/build/web`. - -## دوكر - -استنسخ المستودع و قم بإنشاء `ملف Dockerfile` باستخدام: `قاعدة عرض إنشاء -t linwood-flow`. بدء تشغيل الخادم بإستخدام: `docker تشغيل -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 39bd1eee247..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: شكرا لك على التحميل -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# شكرا لك على التحميل - - - -
diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index bd7e5dbe18a..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "ويب" -sidebar_position: 5 ---- - -![إصدار الإصدار المستقر](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![إصدار الإصدار الليلي](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -هذا تطبيق تدريجي على الويب. يمكنك تثبيته على المتصفح الخاص بك واستخدامه دون اتصال. يتم تخزين جميع البيانات في المتصفح الخاص بك. - -::: - - -## الروابط - - - -## الإصدارات - -الإصدارات الرئيسية (تطوير) من التدفق ليست نفس الإصدارات المستقرة والليلية. وهما لا يرتبطان ارتباطا مباشرا بالإفراج عنهما. ويتم تحديثها بمجرد دفع الالتزام الجديد إلى المستودع. diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index d19f95b6e87..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "ويندوز" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![إصدار الإصدار المستقر](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![إصدار الإصدار الليلي](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## متطلبات النظام الدنيا - -* ويندوز 10 أو أعلى. - -## ثنائيات - -
-
- -
    -
  • - - الإعداد - -
  • -
  • - - محمول - -
  • -
-
-
- -
    -
  • - - الإعداد - -
  • -
  • - - محمول - -
  • -
-
-
- -اقرأ المزيد عن الإصدار الليلي من التدفق [هنا](/nightly). diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index f56aa491382..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "الأسئلة المتكررة" -sidebar_label: "أسئلة متكررة" ---- - -فيما يلي بعض الأسئلة المتكررة. diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index bf147f1c775..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "المنزل" -sidebar_position: 0 -title: "المجتمع" ---- - -مرحبا بكم في قسم المجتمع. - -## الإشادة - -ويوجه الشكر الخاص إلى: - -* [Flutter](https://github.com/flutter/flutter) لتوفير إطار تقاطع المنصة المفيد هذا -* [window_Manager](https://github.com/leanflutter/window_manager) لجميع ميزات نافذة سطح المكتب هذه المفيدة -* [Docusaurus](https://github.com/facebook/docusaurus) لإطار توثيق تفاعلات ثابتة سهلة الاستخدام - -يمكن العثور على جميع التراخيص الأخرى في الإعدادات. - -## روابط مفيدة - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [ديسكورد](https://go.linwood.dev/discord) -* [مصفوفة](https://go.linwood.dev/matrix) diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 81e66838061..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "المباني الليلية" -slug: "/nightly" ---- - -:::تحذير - -لا تستخدم الإصدار الليلي من التدفق للإنتاج. - -::: - -تم تصميم الإنشاءات الليلية لإعطائك الخيار لاختبار أحدث إصدار والحصول على أحدث الميزات وإعطاء ردود الفعل. - -## احصل على المباني - -اذهب إلى صفحات تحميل المنصة الخاصة بك. كل المباني الليلية يتم نشرها أيضا كسابق للإصدار على github. diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 0a59816dff9..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "نسخ ما قبل 1.0" ---- - -هذه الإصدارات غير مدعومة بعد الآن. الإصدارات الجديدة متوفرة في [الإصدارات](versions.md). - -| الإصدار | مدعوم | | -| ------- | ----- | | -| | | | diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 0ec74118efc..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "سياسة الخصوصية" -slug: /privacypolicy ---- - -هذه هي سياسة الخصوصية في التطبيق. من فضلك قرأته بعناية. انقر هنا [](https://go.linwood.dev/privacypolicy) لقراءة سياسة الخصوصية للموقع. - -قام CodeDoctor ببناء تطبيق التدفق كتطبيق مفتوح المصدر. وهذا النظام مقدم من مركز الدكتوراه مجانا وهو مخصص للاستخدام كما هو الحال الآن. - -تستخدم هذه الصفحة لإعلام الزوار بشأن سياساتي مع المجموعة، استخدام المعلومات الشخصية والكشف عنها إذا قرر أي شخص استخدام خدمتي. - -إذا اخترت استخدام خدمتي ، فأنت توافق على جمع واستخدام المعلومات فيما يتعلق بهذه السياسة. يتم استخدام المعلومات الشخصية التي أجمعها لتوفير خدمة وتحسينها. لن أستخدم أو أشارك معلوماتك مع أي شخص إلا على النحو المبين في سياسة الخصوصية هذه. - -المصطلحات المستخدمة في سياسة الخصوصية هذه لها نفس المعاني كما في الأحكام والشروط، والذي يمكن الوصول إليه عند Flow ما لم يتم تعريفه بشكل غير ذلك في سياسة الخصوصية هذه. - -**جمع المعلومات واستخدامها** - -للحصول على تجربة أفضل، أثناء استخدام خدماتنا، قد أطلب منك أن تزودنا بمعلومات محددة شخصيا. سيتم الاحتفاظ بالمعلومات التي أطلبها على جهازك و لم يتم جمعها من قبلي بأي شكل من الأشكال. - -التطبيق يستخدم خدمات الطرف الثالث التي قد تجمع المعلومات المستخدمة للتعرف عليك. - -رابط لسياسة الخصوصية لموفري خدمة الطرف الثالث المستخدمين من قبل التطبيق - -* [خدمات Google Play](https://www.google.com/policies/privacy/) - -**الكعكات** - -ملفات تعريف الارتباط هي ملفات تحتوي على كمية صغيرة من البيانات الشائعة الاستخدام كمعرّفات فريدة مجهولة الهوية. يتم إرسال هذه إلى المتصفح الخاص بك من المواقع التي تزورها ويتم تخزينها على الذاكرة الداخلية لجهازك. - -هذه الخدمة لا تستخدم "ملفات تعريف الارتباط" هذه صراحة. ومع ذلك، قد يستخدم التطبيق رموز طرف ثالث والمكتبات التي تستخدم "ملفات تعريف الارتباط" لجمع المعلومات وتحسين خدماتها. لديك الخيار لقبول أو رفض ملفات تعريف الارتباط هذه ومعرفة متى يتم إرسال ملفات تعريف الارتباط إلى جهازك. إذا اخترت رفض ملفات تعريف الارتباط الخاصة بنا، قد لا تتمكن من استخدام بعض أجزاء هذه الخدمة. - -**مزودي الخدمات** - -ويجوز لي أن أستخدم شركات وأفرادا من أطراف ثالثة للأسباب التالية: - -* 2 - تيسير خدمتنا؛ -* 2 - توفير الخدمة نيابة عننا؛ -* لأداء الخدمات المتصلة بالخدمات؛ أو -* لمساعدتنا في تحليل كيفية استخدام خدمتنا. - -وأود أن أبلغ مستخدمي هذه الدائرة بأن هذه الأطراف الثالثة تستطيع الوصول إلى معلوماتك الشخصية. والسبب في ذلك هو أداء المهام المسندة إليهم بالنيابة عننا. ومع ذلك، فهم ملزمون بعدم الكشف عن المعلومات أو استخدامها لأي غرض آخر. - -**أمان** - -وأنا أقدر ثقتكم في تزويدنا بمعلوماتك الشخصية، وبالتالي فإننا نسعى جاهدين لاستخدام وسائل مقبولة تجاريا لحمايتها. لكن تذكروا أنه لا توجد طريقة للانتقال عبر الإنترنت، أو طريقة التخزين الإلكتروني آمنة وموثوق بها بنسبة 100 في المائة، ولا يمكنني ضمان أمنها المطلق. - -**روابط لمواقع أخرى** - -قد تحتوي هذه الخدمة على روابط لمواقع أخرى. إذا قمت بالنقر على رابط طرف ثالث، سيتم توجيهك إلى ذلك الموقع. لاحظ أن هذه المواقع الخارجية لا تقوم بتشغيلها. لذلك، أنصحك بشدة بمراجعة سياسة الخصوصية لهذه المواقع. وليس لدي سيطرة على محتوى أو سياسات الخصوصية أو ممارسات أي مواقع أو خدمات تابعة لأطراف ثالثة، ولا أتحمل أي مسؤولية عنها. - -**تغييرات في سياسة الخصوصية هذه** - -يمكنني تحديث سياسة الخصوصية لدينا من وقت لآخر. لذلك ينصح بك مراجعة هذه الصفحة بشكل دوري لأي تغييرات. سوف أخبرك بأي تغييرات عن طريق نشر سياسة الخصوصية الجديدة على هذه الصفحة . - -وهذه السياسة فعالة اعتباراً من 2021-02-07 - -**اتصل بنا** - -إذا كان لديك أي أسئلة أو اقتراحات حول سياسة الخصوصية الخاصة بي، فلا تتردد في الاتصال بي على contact@linwood.dev. - -تم إنشاء صفحة سياسة الخصوصية هذه في [privacypolicytemplate.net](https://privacypolicytemplate.net) وتعديل/الذي تم إنشاؤه بواسطة [مولد سياسة الخصوصية للتطبيق](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs/current.json b/docs/i18n/ar/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index cdd17982ece..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "التالي", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "خادم", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/ar/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 978cdcf908e..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# مقدمة - -قريباً diff --git a/docs/i18n/ar/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/ar/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index b917e2d2e4a..00000000000 --- a/docs/i18n/ar/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# قائمة الأخطاء - -| رمز الخطأ | رمز حالة HTTP | الوصف | -| --------- | ------------- | ------------------------ | -| `0` | `404` | لم يتم العثور على الصفحة | -| `1` | `404` | إصدار api غير صالح | -| `2` | `403` | ممنوع | -| `3` | `400` | طلب خاطئ | diff --git a/docs/i18n/ar/docusaurus-theme-classic/footer.json b/docs/i18n/ar/docusaurus-theme-classic/footer.json deleted file mode 100644 index 8e1cbfd5ce1..00000000000 --- a/docs/i18n/ar/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "المجتمع", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "الكود المصدري", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "قانوني", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "ديسكورد", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "مصفوفة", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "تويتر", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "التطبيق", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "خادم", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "الوثائق", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "مشترك", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "دليل المساهمة", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "بصمة", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "سياسة الخصوصية للتطبيق", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "سياسة الخصوصية للموقع", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "حقوق الطبع والنشر ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "شعار لينود", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/ar/docusaurus-theme-classic/navbar.json b/docs/i18n/ar/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 9b3d18e6c29..00000000000 --- a/docs/i18n/ar/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "التدفق", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "شعار التدفق", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "البرنامج التعليمي", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "التنزيلات", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "المجتمع", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "المزيد", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "مصفوفة", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "ديسكورد", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "المدونة", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "كرودن", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "تويتر", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "الترخيص", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/ca/code.json b/docs/i18n/ca/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/ca/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs/current.json b/docs/i18n/ca/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/ca/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/ca/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/ca/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/ca/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/ca/docusaurus-theme-classic/footer.json b/docs/i18n/ca/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/ca/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/ca/docusaurus-theme-classic/navbar.json b/docs/i18n/ca/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/ca/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/cs/code.json b/docs/i18n/cs/code.json deleted file mode 100644 index 1bf7855ad8e..00000000000 --- a/docs/i18n/cs/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Jak začít", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Stáhnout pro Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Stáhnout pro Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Stáhnout pro Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Otevřít webovou aplikaci", - "description": "homepage web button" - }, - "Downloads": { - "message": "Stahování", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Správa času", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Spravujte účinnost času a automatizujte ji.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Správa událostí", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Naplánovat události, přiřadit k němu uživatele a dát jim úkoly", - "description": "Features Event management description" - }, - "Your data": { - "message": "Vaše údaje", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Každý může vytvořit svůj vlastní server a mít svá data.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Aplikace a server jsou všechny open source. Každý může přispět!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Tato stránka se zhroutila.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Stránka nenalezena", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Nenašli jsme to, co hledáte.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Kontaktujte prosím majitele webu, který vás propojil s původní URL adresou, a dejte jim vědět, že je jejich odkaz nefunkční.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "Poznámka", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "nebezpečí", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "informace", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "opatrnost", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archiv", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archiv", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Přejít zpět na začátek", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navigace stránky seznamu blogů", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Novější příspěvky", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Starší položky", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Navigace stránky blogu", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Novější příspěvek", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Starší příspěvek", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Jeden příspěvek |{count} příspěvků", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} označeno znakem \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Zobrazit všechny štítky", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Přepínání mezi tmavým a světlým režimem (aktuálně {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "tmavý režim", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "světelný režim", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Drobečková navigace", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} položek", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navigace stránek doku", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Předchozí", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Další", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Jeden doc označený|{count} dokumentů označených", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} s \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Verze: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Toto je nepublikovaná dokumentace pro verzi {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Toto je dokumentace pro {siteTitle} {versionLabel}, která již není aktivně udržována.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Pro aktuální dokumentaci, viz {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "nejnovější verze", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Upravit tuto stránku", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Přímý odkaz na {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " na {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " od {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Naposledy aktualizováno{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Verze", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Štítky:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Zavřít", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog nedávných příspěvků navigace", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Zkopírováno", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Kopírovat kód do schránky", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopírovat", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Přepnout zalamování slov", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Hlavní", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Jazyky", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Na této stránce", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Jedna minuta přečtení|{readingTime} min čtení", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Číst více", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Přečtěte si více o {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Domovská stránka", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Sbalit postranní panel", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Sbalit postranní panel", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Zavřít navigační panel", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "Vrátit se do hlavního menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Přepnout navigační panel", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "K dispozici je nová verze", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Aktualizovat", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Zavřít", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Zkuste to znovu", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Přeskočit na hlavní obsah", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Štítky", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "výstraha", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Rozbalit kategorii postranního panelu '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Sbalit kategorii postranního panelu '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Neuvedená stránka", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Tato stránka není uvedena. Vyhledávače ji nebudou indexovat a k ní mají přístup pouze uživatelé, kteří mají přímý odkaz.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} položek", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 13793d7747c..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Další", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 3de4c7e6591..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Seznam změn -hide_title: true -sidebar_label: Seznam změn ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index d43144189d5..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Kodex chování -hide_title: true -sidebar_label: Kodex chování ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 1d10251dfcc..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Přispěje" -hide_title: true -sidebar_label: "Přispěje" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 4a97771228d..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Stahování" -} \ No newline at end of file diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 66bb4a3100b..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabilní verze vydání](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release verze](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimální požadavky na systém - -* Android 5.0 (API úroveň 21) nebo vyšší. - -## Binární soubory - -
- - Stabilní - - - Noční - -
- -Přečtěte si více o noční verzi Flow [zde](/nightly). diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 25f234be3ed..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Vytvořte si vlastní" -sidebar_position: 1 ---- - -1. Instalovat git a flutter (beta) -2. Klonovat repozitář -3. Přejít do adresáře aplikace -4. Použít nástroj flutter pro kompilaci aplikace - * `flutter stavět apk` - * `flutter vytvořit balíček aplikací` - * `Futter build web` - * `flutter build linux` - * `kruhové stavění oken` -5. Kompilované soubory jsou v adresáři sestavení diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 29e481760a1..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Stahování ---- - -![Stabilní verze vydání](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release verze](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Vyberte platformu - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Užitečné odkazy - -- [Seznam změn](changelog) -- [Starší vydání](https://github.com/LinwoodDev/Flow/releases) -- [Poslední vydání](https://github.com/LinwoodDev/Flow/releases/latest) -- [Podpora](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index a8ca5db1360..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabilní verze vydání](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release verze](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Pokud je to možné, použijte flatpak verzi. Jinak musíte nainstalovat `libsecret-1-dev` a `libjsoncpp-dev`. - -::: - -## Binární soubory - -
-
- -
    -
  • - - Přenosné - -
  • -
  • - - SP - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Přenosné - -
  • -
  • - - SP - -
  • -
  • - - AppImage - -
  • -
-
-
- -Přečtěte si více o noční verzi Flow [zde](/nightly). diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index fe718390282..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stabilní verze vydání](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release verze](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Odkazy - - diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 4662bd0e604..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Děkujeme za stažení -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Děkujeme za stažení - - - -## Windows SmartScreen - - -Windows varuje uživatele při instalaci softwaru bez certifikátu. - -![Smart Scre](/img/smart-screen.png) - -Pro instalaci aplikace je třeba kliknout na "Další informace". - -![Inteligentní obrazovka více informací](/img/smart-screen-more-info.png) - -Poté klikněte na "Spustit nic". - -
diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 3f0d397a69c..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stabilní verze vydání](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release verze](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Je velmi snadné hostit vlastní tokový webový server. - -## Jednoduchý server - -Nainstalujte flutter a sestavte aplikaci pomocí: - -```bash -cd aplikace -flutter hospoda získat -web pro sestavení flutteru -``` - -Všechny soubory jsou v adresáři `app/build/web`. - -## Dokovací modul - -Klonovat úložiště a vytvořit soubor `Dockerfile` pomocí `docker build -t linwood-flow`. Spusťte server pomocí: `dokovací běh -p 80:8080 -d linwood-flow`. diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index f4c0c87d1fc..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Děkujeme za stažení -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Děkujeme za stažení - - - -
diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index a0fe8a3a2ee..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Webová" -sidebar_position: 5 ---- - -![Stabilní verze vydání](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release verze](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Toto je progresivní webová aplikace. Můžete jej nainstalovat na váš prohlížeč a používat jej offline. Všechna data jsou uložena ve vašem prohlížeči. - -::: - - -## Odkazy - - - -## Verze - -Hlavní a náhledové verze Flow nejsou stejné jako stabilní a noční verze. Nejsou přímo spojeny s vydáním. Budou aktualizovány, jakmile bude do repozitáře nahrán nový commit. diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index a3b1813a13f..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Okna" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabilní verze vydání](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release verze](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimální požadavky na systém - -* Windows 10 nebo vyšší. - -## Binární soubory - -
-
- -
    -
  • - - Nastavení - -
  • -
  • - - Přenosné - -
  • -
-
-
- -
    -
  • - - Nastavení - -
  • -
  • - - Přenosné - -
  • -
-
-
- -Přečtěte si více o noční verzi Flow [zde](/nightly). diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index d45a8d92f66..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Často kladené otázky" -sidebar_label: "Nejčastější dotazy" ---- - -Zde jsou některé často kladené otázky. diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 5460dc62934..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Domů" -sidebar_position: 0 -title: "Komunita" ---- - -Vítejte v sekci komunity. - -## Poděkování - -Zvláštní poděkování patří na: - -* [Flutter](https://github.com/flutter/flutter) pro poskytování tohoto užitečného crossplatformního ui framework -* [window_manager](https://github.com/leanflutter/window_manager) pro všechny tyto užitečné funkce desktopového okna -* [Docusaurus](https://github.com/facebook/docusaurus) pro snadno použitelný rámec pro dokumentaci statické reakce - -Všechny ostatní licence naleznete v nastavení. - -## Užitečné odkazy - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matice](https://go.linwood.dev/matrix) diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index d0add13508a..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Noční sestavení" -slug: "/nightly" ---- - -:::::varování - -Nepoužívejte noční verzi toku pro produkci. - -::: - -Noční sestavení jsou navržena tak, aby vám dala možnost otestovat nejnovější verzi a získat nejnovější funkce a poskytnout zpětnou vazbu. - -## Získat sestavení - -Přejděte na stránky pro stahování vaší platformy. Všechny noční sestavení jsou také publikovány jako předběžný vydání na githubu. diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index f93bba1f26f..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre1.0 verze" ---- - -Tyto verze již nejsou podporovány. Nové verze jsou k dispozici na [verzích](versions.md). - -| Verze | Podporováno | | -| ----- | ----------- | | -| | | | diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 25090776884..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Ochrana osobních údajů" -slug: /privacypolicy ---- - -Toto jsou zásady ochrany osobních údajů aplikace. Přečtěte si to prosím pozorně. Klikněte [zde](https://go.linwood.dev/privacypolicy) pro přečtení zásad ochrany osobních údajů na webových stránkách. - -CodeDoctor vytvořil aplikaci Flow jako Open Source aplikaci. Tato služba je poskytována CodeDoctorem bez nákladů a je určena k použití tak, jak je. - -Tato stránka se používá k informování návštěvníků o mých pravidlech se sběrem, používání a zveřejňování osobních údajů, pokud se někdo rozhodne použít mou službu. - -Pokud se rozhodnete využít moji službu, pak souhlasíte se shromažďováním a využíváním informací týkajících se této politiky. Osobní informace, které shromažďuji, jsou využívány k poskytování a zlepšování Služby. Nebudu používat ani sdílet vaše informace s nikým kromě těch, které jsou popsány v těchto Zásadách ochrany osobních údajů. - -Výrazy použité v těchto zásadách ochrany osobních údajů mají stejný význam jako v našich Podmínkách, která je přístupná při Flow pokud není v těchto zásadách ochrany osobních údajů stanoveno jinak. - -**Shromažďování a používání informací** - -Za účelem lepšího zážitku při používání naší služby vám mohu požádat, abyste nám poskytli určité osobní informace. Informace, které požaduji, budou uchovávány na vašem zařízení a mi v žádném případě nejsou shromažďovány. - -Aplikace používá služby třetích stran, které mohou shromažďovat informace použité k vaší identifikaci. - -Odkaz na zásady ochrany osobních údajů poskytovatelů služeb třetích stran, které aplikace používá - -* [Služby Google Play](https://www.google.com/policies/privacy/) - -**Cookies** - -Soubory cookie jsou soubory s malým množstvím dat, které se běžně používají jako anonymní jedinečné identifikátory. Ty jsou odeslány vašemu prohlížeči z webových stránek, které navštívíte a které jsou uloženy v vnitřní paměti vašeho zařízení. - -Tato služba tyto „cookies“ výslovně nepoužívá. Aplikace však může pro sběr informací a zlepšení svých služeb používat kód třetích stran a knihovny, které používají „cookies“. Máte možnost buď tyto soubory cookie přijmout, nebo je odmítnout, a víte, kdy je cookie odesílána do vašeho zařízení. Pokud se rozhodnete odmítnout soubory cookie, nemusí být možné použít některé části této služby. - -**Poskytovatelé služeb** - -Mohu zaměstnat třetí strany a jednotlivce z těchto důvodů: - -* pro usnadnění naší služby; -* poskytovat službu naším jménem; -* poskytovat služby nebo -* Abyste nám pomohli analyzovat, jak je naše služba používána. - -Chci uživatele této služby informovat, že tyto třetí strany mají přístup k vašim osobním údajům. Důvodem je plnění úkolů, které jim byly přiděleny naším jménem. Jsou však povinny nezveřejňovat ani používat tyto informace k jiným účelům. - -**Zabezpečení** - -Oceňuji vaši důvěru v to, že nám poskytnete vaše osobní údaje, a proto se snažíme používat komerčně přijatelné prostředky na jejich ochranu. Ale nezapomeňte, že žádná metoda přenosu přes internet, nebo metoda elektronického ukládání je 100% bezpečná a spolehlivá a já nemohu zaručit jeho absolutní bezpečnost. - -**Odkazy na jiné weby** - -Tato služba může obsahovat odkazy na jiné stránky. Pokud kliknete na odkaz třetí strany, budete přesměrováni na tento web. Všimněte si, že tyto externí stránky mě neprovozuji. Proto vám důrazně doporučuji, abyste přezkoumali Zásady ochrany osobních údajů těchto webových stránek. Nemám žádnou kontrolu a nepřevezmu žádnou odpovědnost za obsah, zásady ochrany osobních údajů nebo praktiky třetích stran na stránkách nebo službách. - -**Změny těchto zásad ochrany osobních údajů** - -Mohu čas od času aktualizovat naše zásady ochrany osobních údajů. Proto se doporučuje, abyste tuto stránku pravidelně přezkoumávali pro jakékoliv změny. Budu vás informovat o jakýchkoli změnách zveřejněním nových zásad ochrany osobních údajů na této stránce. - -Tato politika je účinná od roku 2021-02-07 - -**Kontaktujte nás** - -Pokud máte jakékoliv dotazy nebo návrhy ohledně mých zásad ochrany osobních údajů, neváhejte mě kontaktovat na contact@linwood.dev. - -Tato stránka o ochraně osobních údajů byla vytvořena na [privacypolicytemplate.net](https://privacypolicytemplate.net) a upravena/generována [Generátorem ochrany osobních údajů aplikací](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs/current.json b/docs/i18n/cs/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 12e82fe926f..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Další", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/cs/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 4fac9dc0bd6..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Úvod - -Již brzy diff --git a/docs/i18n/cs/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/cs/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index f0bf12639aa..00000000000 --- a/docs/i18n/cs/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Seznam chyb - -| Kód chyby | Stavový kód HTTP | L 343, 22.12.2009, s. 1). | -| --------- | ---------------- | ------------------------- | -| `0` | `404` | Stránka nenalezena | -| `1` | `404` | Neplatná verze api | -| `2` | `403` | Zakázáno | -| `3` | `400` | Chybný požadavek | diff --git a/docs/i18n/cs/docusaurus-theme-classic/footer.json b/docs/i18n/cs/docusaurus-theme-classic/footer.json deleted file mode 100644 index 337a90c976f..00000000000 --- a/docs/i18n/cs/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Komunita", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Zdrojový kód", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Právní předpisy", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matice", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Aplikace", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Dokumenty", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Sdíleno", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Příručka pro přispění", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Tisk", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Zásady ochrany osobních údajů aplikace", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Zásady ochrany osobních údajů webových stránek", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/cs/docusaurus-theme-classic/navbar.json b/docs/i18n/cs/docusaurus-theme-classic/navbar.json deleted file mode 100644 index e5aba8df948..00000000000 --- a/docs/i18n/cs/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Průtok", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logo toku", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Návod", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Stahování", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Komunita", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Více", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matice", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licence", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/da/code.json b/docs/i18n/da/code.json deleted file mode 100644 index 718c2fa2fa0..00000000000 --- a/docs/i18n/da/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Før injektion", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Hent til Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download til Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download til Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Åbn web-appen", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Tidsstyring", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Administrer tidseffektivitet og automatisere det.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Håndtering af begivenheder", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Planlæg begivenheder, tildele brugere til det og give opgaver til dem", - "description": "Features Event management description" - }, - "Your data": { - "message": "Dine data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Alle kan oprette deres egen server og have dine data på det.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Appen og serveren er alle open source. Alle kan bidrage!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Denne side styrtede ned.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Siden Blev Ikke Fundet", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Vi kunne ikke finde det, du ledte efter.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Kontakt venligst ejeren af det websted, der linkede dig til den oprindelige URL, og lad dem vide, at deres link er brudt.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "bemærk", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "fare", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "forsigtighed", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Arkiv", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Arkiv", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Rul tilbage til toppen", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog liste side navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Nyere Indgange", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Ældre Indgange", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog indlæg side navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Nyere Indlæg", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Ældre Indlæg", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Én post{count} indlæg", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagget with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Vis Alle Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Skift mellem mørk og lys tilstand (i øjeblikket {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "mørk tilstand", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "lys tilstand", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Brødkrummer", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} varer", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs sider navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Forrige", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Næste", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Én doc taggedţ{count} docs tagget", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} med \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Dette er ikke-udgivet dokumentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Dette er dokumentation for {siteTitle} {versionLabel}, som ikke længere vedligeholdes aktivt.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date dokumentation, se {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "seneste version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Rediger denne side", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direkte link til {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " den {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " af {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Sidst opdateret{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versioner", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Mærker:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Luk", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog seneste indlæg navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Kopieret", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Kopier kode til udklipsholder", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopiér", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Skift tekstombrydning", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Hoved", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Sprog", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "På denne side", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Én min læsning:{readingTime} min læst", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Læs Mere", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Læs mere om {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Hjemmeside", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Sammenfold sidepanel", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Sammenfold sidepanel", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Luk navigationslinje", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Tilbage til hovedmenu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Skift navigationsbjælke", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Ny version tilgængelig", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Opdater", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Luk", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Prøv igen", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Spring til hovedindhold", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Mærker", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "advarsel", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Udvid sidebjælke kategori '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Sammenfold sidebjælke kategori '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Ulistet side", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Denne side er ikke angivet. Søgemaskiner vil ikke indeksere det, og kun brugere, der har et direkte link, kan få adgang til det.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} varer", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/da/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 8e7cb07b835..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Næste", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Uenighed", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index fd9c860f7fc..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Ændringslog -hide_title: true -sidebar_label: Ændringslog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 5aef29541d5..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Adfærdskodeks -hide_title: true -sidebar_label: Adfærdskodeks ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 13b5a1cac4e..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Bidrag" -hide_title: true -sidebar_label: "Bidrag" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 0cfed7e33e4..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabil version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Mindstekrav til systemet - -* Android 5.0 (API niveau 21) eller højere. - -## Binære - -
- - Stabil - - - Natligt - -
- -Læs mere om natteversionen af Flow [her](/nightly). diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index bc814d2dc34..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Byg din egen" -sidebar_position: 1 ---- - -1. Installer git og flutter (beta) -2. Klon depotet -3. Navigér til app-mappen -4. Brug flagerværktøjet til at kompilere programmet - * `flutter byg apk` - * `flutter opbygge æblebundt` - * `flutter opbygge web` - * `flutter build linux` - * `flutter bygge vinduer` -5. De kompilerede filer er i byggemappen diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index df4b856a798..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stabil version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Vælg din platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Nyttige links - -- [Ændringslog](changelog) -- [Ældre udgivelser](https://github.com/LinwoodDev/Flow/releases) -- [Seneste udgivelse](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index cecc490d620..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabil version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Brug venligst flatpak versionen hvis det er muligt. Ellers skal du installere `libsecret-1-dev` og `libjsoncpp-dev`. - -::: - -## Binære - -
-
- -
    -
  • - - Bærbar - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Bærbar - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Læs mere om natteversionen af Flow [her](/nightly). diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index f1d428bdead..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stabil version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 39818fbd478..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Tak fordi du har downloadet -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Tak for din download - - - -## Windows SmartScreen - - -Windows advarer brugerne, når du installerer software uden et certifikat. - -![Smart skærm](/img/smart-screen.png) - -For at installere appen, skal du klikke på "Mere info". - -![Smart skærm mere info](/img/smart-screen-more-info.png) - -Klik derefter på "Kør alligevel". - -
diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 730b1685fcf..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stabil version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Det er meget nemt at være vært for din egen flow webserver. - -## Simpel server - -Installér flutter og opbyg app'en med: - -```bash -cd app -flutter pub få -flutter build web -``` - -Alle filerne er i mappen `app/build/web`. - -## Docker - -Klon lageret og opbyg `Dockerfilen` vha. `docker build -t linwood-flow`. Start serveren med: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 7edbefe6841..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Tak fordi du har downloadet -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Tak for din download - - - -
diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 6123d47d1e8..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stabil version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Dette er en progressiv webapplikation. Du kan installere det på din browser og bruge det offline. Alle data gemmes i din browser. - -::: - - -## Links - - - -## Versioner - -De vigtigste og forhåndsvisning (udvikler) versioner af Flow er ikke de samme som de stabile og natlige versioner. De er ikke direkte forbundet med en udgivelse. De opdateres, så snart en ny forpligtelse bliver skubbet til lageret. diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b4c069629e4..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Vinduer" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabil version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Mindstekrav til systemet - -* Windows 10 eller højere. - -## Binære - -
-
- -
    -
  • - - Opsætning - -
  • -
  • - - Bærbar - -
  • -
-
-
- -
    -
  • - - Opsætning - -
  • -
  • - - Bærbar - -
  • -
-
-
- -Læs mere om natteversionen af Flow [her](/nightly). diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 7145e9bbeb6..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Ofte Stillede Spørgsmål" -sidebar_label: "OSS" ---- - -Her er nogle ofte stillede spørgsmål. diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 43f2159ce9a..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Hjem" -sidebar_position: 0 -title: "Fællesskab" ---- - -Velkommen til fællesskabssektionen. - -## Anerkendelser - -En særlig tak går til: - -* [Flutter](https://github.com/flutter/flutter) for at levere denne nyttige crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for alle disse nyttige skrivebordsvinduefunktioner -* [Docusaurus](https://github.com/facebook/docusaurus) til en brugervenlig ramme for statisk reaktionsdokumentation - -Alle andre licenser kan du finde i indstillingerne. - -## Nyttige links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Uenighed](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 47b82fc8eb9..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Natlige Bygninger" -slug: "/nightly" ---- - -:::warning - -Brug ikke natlig version af Flow til produktion. - -::: - -Nightly builds er designet til at give dig mulighed for at teste den nyeste version og få de nyeste funktioner og give feedback. - -## Få bygherrer - -Gå til download-siderne på din platform. Alle natlige bygger får også offentliggjort som pre-release på github. diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 948fdd540fb..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versioner" ---- - -Disse versioner understøttes ikke længere. Nye versioner er tilgængelige i [versioner](versions.md). - -| Version | Understøttet | | -| ------- | ------------ | | -| | | | diff --git a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/da/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 7a3b17f6857..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privat Politik" -slug: /privacypolicy ---- - -Dette er appens privatlivspolitik. Læs den venligst omhyggeligt. Klik [her](https://go.linwood.dev/privacypolicy) for at læse fortrolighedspolitikken for hjemmesiden. - -CodeDoctor byggede Flow appen som en Open Source app. Denne SERVICE leveres af CodeDoctor uden omkostninger og er beregnet til brug, som det er. - -Denne side bruges til at informere besøgende om mine politikker med samlingen, brug og videregivelse af personlige oplysninger, hvis nogen besluttede at bruge min tjeneste. - -Hvis du vælger at bruge min tjeneste, accepterer du indsamling og brug af oplysninger i forbindelse med denne politik. De personlige oplysninger, som jeg indsamler, bruges til at levere og forbedre tjenesten. Jeg vil ikke bruge eller dele dine oplysninger med nogen, undtagen som beskrevet i denne fortrolighedspolitik. - -De vilkår, der anvendes i denne privatlivspolitik har samme betydning som i vores Vilkår og Betingelser, som er tilgængelig på Flow medmindre andet er defineret i denne privatlivspolitik. - -**Indsamling og anvendelse af oplysninger** - -For en bedre oplevelse, mens du bruger vores service, kan jeg kræve, at du giver os visse personligt identificerbare oplysninger. De oplysninger, som jeg anmoder om, vil blive opbevaret på din enhed, og indsamles ikke af mig på nogen måde. - -Appen bruger tredjepartstjenester, der kan indsamle oplysninger, der bruges til at identificere dig. - -Link til privatlivspolitik for tredjepartstjenesteudbydere, der bruges af appen - -* [Google Play-tjenester](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies er filer med en lille mængde data, der almindeligvis anvendes som anonyme unikke identifikatorer. Disse sendes til din browser fra de websteder, du besøger, og gemmes på din enheds interne hukommelse. - -Denne tjeneste bruger ikke disse “cookies” udtrykkeligt. Appen kan dog bruge tredjepartskode og biblioteker, der bruger “cookies” til at indsamle oplysninger og forbedre deres tjenester. Du har mulighed for at acceptere eller afvise disse cookies og vide, hvornår en cookie sendes til din enhed. Hvis du vælger at afvise vores cookies, kan du muligvis ikke bruge nogle dele af denne tjeneste. - -**Tjenesteudbydere** - -Jeg kan ansætte tredjepartsvirksomheder og enkeltpersoner på grund af følgende årsager: - -* For at lette vores service -* At levere tjenesten på vores vegne; -* Udførelse af tjenesterelaterede tjenester, eller -* For at hjælpe os med at analysere, hvordan vores Service anvendes. - -Jeg vil gerne informere brugerne af denne tjeneste om, at disse tredjeparter har adgang til dine personlige oplysninger. Grunden er at udføre de opgaver, der er tildelt dem på vores vegne. De er imidlertid forpligtet til ikke at videregive eller anvende oplysningerne til andre formål. - -**Sikkerhed** - -Jeg værdsætter din tillid til at give os dine personlige oplysninger, så vi stræber efter at bruge kommercielt acceptable midler til at beskytte det. Men husk, at ingen metode til overførsel over internettet, eller metode til elektronisk lagring er 100% sikker og pålidelig, og jeg kan ikke garantere dens absolutte sikkerhed. - -**Links til andre websteder** - -Denne tjeneste kan indeholde links til andre websteder. Hvis du klikker på et tredjepartslink, vil du blive dirigeret til dette websted. Bemærk, at disse eksterne websteder ikke drives af mig. Derfor anbefaler jeg på det kraftigste at gennemgå fortrolighedspolitikken på disse hjemmesider. Jeg har ingen kontrol over og påtager sig intet ansvar for indholdet, privatlivets fred politikker, eller praksis af nogen tredjeparts websteder eller tjenester. - -**Ændringer til denne privatlivspolitik** - -Jeg kan opdatere vores privatlivspolitik fra tid til anden. Derfor rådes du til at gennemgå denne side med jævne mellemrum for eventuelle ændringer. Jeg vil give dig besked om eventuelle ændringer ved at sende den nye fortrolighedspolitik på denne side. - -Denne politik er effektiv fra 2021-02-07 - -**Kontakt Os** - -Hvis du har spørgsmål eller forslag til min privatlivspolitik, tøv ikke med at kontakte mig på contact@linwood.dev. - -Denne privatlivspolitik side blev oprettet på [privacypolicytemplate.net](https://privacypolicytemplate.net) og ændret/genereret af [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/da/docusaurus-plugin-content-docs/current.json b/docs/i18n/da/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 654cbc02ead..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Næste", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/da/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/da/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 21188da6ffa..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Indledning - -Kommer snart diff --git a/docs/i18n/da/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/da/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index ba83fee4864..00000000000 --- a/docs/i18n/da/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Fejl liste - -| Fejl kode | HTTP status kode | Varebeskrivelse | -| --------- | ---------------- | ---------------------- | -| `0` | `404` | Siden blev ikke fundet | -| `1` | `404` | Ugyldig api version | -| `2` | `403` | Forbudt | -| `3` | `400` | Forkert anmodning | diff --git a/docs/i18n/da/docusaurus-theme-classic/footer.json b/docs/i18n/da/docusaurus-theme-classic/footer.json deleted file mode 100644 index a993d57efc9..00000000000 --- a/docs/i18n/da/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Fællesskab", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Kilde kode", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Lovlig", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Uenighed", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Dokumenter", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Delt", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Bidrag guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privatlivspolitik for appen", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy på hjemmesiden", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Ophavsret ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/da/docusaurus-theme-classic/navbar.json b/docs/i18n/da/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 721fac43280..00000000000 --- a/docs/i18n/da/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Strømning", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Vejledning", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Fællesskab", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Mere", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Uenighed", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licens", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/de/code.json b/docs/i18n/de/code.json deleted file mode 100644 index 596042602ed..00000000000 --- a/docs/i18n/de/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Erste Schritte", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download für Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download für Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Für Android herunterladen", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Web-App öffnen", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Zeitmanagement", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Verwalten Sie die Zeiteffizienz und automatisieren Sie sie.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event-Management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Termine planen, Benutzer zuweisen und ihnen Aufgaben geben", - "description": "Features Event management description" - }, - "Your data": { - "message": "Ihre Daten", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Jeder kann seinen eigenen Server erstellen und seine Daten darauf haben.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Quelle öffnen", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Die App und der Server sind alle Open Source. Jeder kann dazu beitragen!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Diese Seite ist abgestürzt.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Seite nicht gefunden", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Wir konnten nicht finden, was Sie suchten.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Bitte wenden Sie sich an den Besitzer der Website, die Sie mit der ursprünglichen URL verlinkt und lassen Sie sie wissen, dass der Link defekt ist.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "notiz", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "gefahr", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "Vorsicht", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archivieren", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archivieren", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Zurück nach oben scrollen", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navigation der Blog-Liste", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Neuere Einträge", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Ältere Einträge", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog-Beitragsseiten-Navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Neuerer Beitrag", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Älterer Beitrag", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Ein Beitrag|{count} Beiträge", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} markiert mit \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Alle Tags anzeigen", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Zwischen Dunkel- und Lichtmodus wechseln (derzeit {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dunkler Modus", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "lichtmodus", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} Elemente", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navigation der Docs-Seiten", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Vorherige", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Nächste", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Ein Doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} mit \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Dies ist eine unveröffentlichte Dokumentation für die Version {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Dies ist eine Dokumentation für {siteTitle} {versionLabel}, die nicht mehr aktiv gewartet wird.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Aktuelle Dokumentation finden Sie im {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "neueste Version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Diese Seite bearbeiten", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direkter Link zu {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " am {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " von {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Zuletzt aktualisiert{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versionen", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Schließen", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Aktuelle Blog-Beitragsnavigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Kopiert", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Code in Zwischenablage kopieren", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopieren", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Wortumbruch umschalten", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Haupt", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Sprachen", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Auf dieser Seite", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "1 Min. gelesen|{readingTime} Min. gelesen", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Lesen Sie mehr", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Lesen Sie mehr über {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Startseite", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Seitenleiste einklappen", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Seitenleiste einklappen", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Navigationsleiste schließen", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Zurück zum Hauptmenü", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Navigationsleiste umschalten", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Neue Version verfügbar", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Aktualisieren", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Schließen", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Erneut versuchen", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Zum Hauptinhalt springen", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warnung", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Sidebar Kategorie '{label} ' erweitern", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Nicht gelistete Seite", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Diese Seite ist nicht aufgelistet. Suchmaschinen indizieren sie nicht und nur Benutzer, die einen direkten Link haben, können darauf zugreifen.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} Elemente", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/de/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 9496f54d3d5..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Nächste", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 0c0bfd8635c..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Verhaltenskodex -hide_title: true -sidebar_label: Verhaltenskodex ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index e4a809149a5..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Mitwirken" -hide_title: true -sidebar_label: "Mitwirken" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 0655ff7fe33..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable Release-Version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachts Release Version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimale Systemvoraussetzungen - -* Android 5.0 (API Level 21) oder höher. - -## Binärdateien - -
- - Stall - - - Nachts - -
- -Lesen Sie mehr über die nächtliche Version von Flow [hier](/nightly). diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index f4546fb4a45..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Baue dein eigenes" -sidebar_position: 1 ---- - -1. Installiere Git und Flutter (Beta) -2. Repository klonen -3. Navigiere zum App-Verzeichnis -4. Benutze das Flutter-Werkzeug, um die Anwendung zu kompilieren - * `flutter build apk` - * `flutter Apfel bauen` - * `flutter Build-Web` - * `flutter build Linux` - * `flutter Build-Fenster` -5. Die kompilierten Dateien befinden sich im Build-Verzeichnis diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 9e8df608cda..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable Release-Version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachts Release Version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Wähle deine Plattform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Nützliche Links - -- [Changelog](changelog) -- [Ältere Versionen](https://github.com/LinwoodDev/Flow/releases) -- [Neueste Version](https://github.com/LinwoodDev/Flow/releases/latest) -- [Unterstützung](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 9efe25fcca7..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable Release-Version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachts Release Version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Bitte verwenden Sie nach Möglichkeit die flatpak Version. Ansonsten müssen Sie `libsecret-1-dev` und `libjsoncpp-dev` installieren. - -::: - -## Binärdateien - -
-
- -
    -
  • - - Tragbar - -
  • -
  • - - TB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Tragbar - -
  • -
  • - - TB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Lesen Sie mehr über die nächtliche Version von Flow [hier](/nightly). diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index a04d811ba5d..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable Release-Version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachts Release Version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index d172cdcdc4f..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Vielen Dank für das Herunterladen -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Vielen Dank für das Herunterladen - - - -## Windows SmartScreen - - -Windows warnt Benutzer bei der Installation von Software ohne Zertifikat. - -![Smart screen](/img/smart-screen.png) - -Um die App zu installieren, musst du auf "Mehr Info" klicken. - -![Smart screen more info](/img/smart-screen-more-info.png) - -Dann klicke auf "Trotzdem ausführen". - -
diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 62d5ebbb08c..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable Release-Version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachts Release Version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Es ist sehr einfach, Ihren eigenen flow Web-Server zu hosten. - -## Einfacher Server - -Installieren Sie Flutter und bauen Sie die App aus: - -```bash -cd app -Flutter Pub erhalten -flutter build web -``` - -Alle Dateien befinden sich im `app/build/web` Verzeichnis. - -## Docker - -Klonen Sie das Projektarchiv und bauen Sie die `Dockerdatei` unter Verwendung von `docker build -t linwood-flow`. Starte den Server unter Verwendung von `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 3d6a255dd83..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Vielen Dank für das Herunterladen -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Vielen Dank für das Herunterladen - - - -
diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 32ab13f578f..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable Release-Version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachts Release Version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Dies ist eine progressive Web-Anwendung. Sie können es in Ihrem Browser installieren und offline verwenden. Alle Daten werden in Ihrem Browser gespeichert. - -::: - - -## Links - - - -## Versionen - -Die Haupt- und die Vorschau-Versionen von Flow sind nicht die gleichen wie die Stable-Distribution und die nächtliche Version. Sie sind nicht direkt mit einer Veröffentlichung verbunden. Sie werden aktualisiert, sobald ein neuer Commit ins Projektarchiv verschoben wird. diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 90e39f9f6b5..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Fenster" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable Release-Version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachts Release Version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimale Systemvoraussetzungen - -* Windows 10 oder höher. - -## Binärdateien - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Tragbar - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Tragbar - -
  • -
-
-
- -Lesen Sie mehr über die nächtliche Version von Flow [hier](/nightly). diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 139859f4a92..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Häufig gestellte Fragen" -sidebar_label: "FAQ" ---- - -Hier sind einige häufig gestellte Fragen. diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index d0e9331daac..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Zuhause" -sidebar_position: 0 -title: "Community" ---- - -Willkommen im Community-Abschnitt. - -## Danksagungen - -Ein besonderer Dank geht an: - -* [Flutter](https://github.com/flutter/flutter) für die Bereitstellung dieses nützlichen Crossplatform ui Frameworks -* [window_manager](https://github.com/leanflutter/window_manager) für all diese nützlichen Desktop-Funktionen -* [Docusaurus](https://github.com/facebook/docusaurus) für ein einfach zu bedienendes statisches Reaging-Dokumentations-Framework - -Alle anderen Lizenzen finden Sie in den Einstellungen. - -## Nützliche Links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 090e87a492b..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nachts Builds" -slug: "/nightly" ---- - -:::Warnung - -Verwenden Sie nicht die nächtliche Version von Flow für die Produktion. - -::: - -Die nächtlichen Builds sind so konzipiert, dass sie dir die Möglichkeit geben, die neueste Version zu testen und die neuesten Funktionen zu erhalten und Feedback zu geben. - -## Erhalte die Builds - -Gehen Sie zu den Download-Seiten Ihrer Plattform. Alle Nightly Builds werden auch als Pre-Release auf github veröffentlicht. diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 9fd4115dd82..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Vor-1.0 Versionen" ---- - -Diese Versionen werden nicht mehr unterstützt. Neue Versionen sind unter [Versionen](versions.md) verfügbar. - -| Version | Unterstützt | | -| ------- | ----------- | | -| | | | diff --git a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/de/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index cd6b2e6eb86..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Datenschutzerklärung" -slug: /privacypolicy ---- - -Dies ist die Datenschutzerklärung der App. Bitte lesen Sie es sorgfältig. Klicken Sie [hier](https://go.linwood.dev/privacypolicy) um die Datenschutzerklärung der Website zu lesen. - -CodeDoctor hat die Flow-App als Open Source App entwickelt. Dieser SERVICE wird von CodeDoctor kostenlos zur Verfügung gestellt und ist so konzipiert, wie er ist. - -Diese Seite wird verwendet, um Besucher über meine Richtlinien mit der Sammlung zu informieren, Nutzung und Weitergabe persönlicher Informationen, wenn jemand sich für die Nutzung meines Dienstes entschieden hat. - -Wenn Sie sich für die Nutzung meines Dienstes entscheiden, stimmen Sie der Erhebung und Nutzung von Informationen in Bezug auf diese Richtlinie zu. Die persönlichen Daten, die ich erfasse, werden für die Bereitstellung und Verbesserung des Dienstes verwendet. Ich werde Ihre Informationen nicht verwenden oder an Dritte weitergeben, außer wie in dieser Datenschutzerklärung beschrieben. - -Die in dieser Datenschutzerklärung verwendeten Begriffe haben die gleiche Bedeutung wie in unseren Nutzungsbedingungen, , die bei Flow erreichbar ist, sofern in dieser Datenschutzrichtlinie nicht anders definiert ist. - -**Informationssammlung und -nutzung** - -Für eine bessere Erfahrung bei der Nutzung unseres Services kann ich von Ihnen verlangen, dass Sie uns bestimmte personenbezogene Daten zur Verfügung stellen. Die von mir angeforderten Informationen werden auf Ihrem Gerät gespeichert und wird von mir in keiner Weise gesammelt. - -Die App nutzt Dienste von Dritten, die möglicherweise Informationen sammeln, um Sie zu identifizieren. - -Link zur Datenschutzrichtlinie von Drittanbietern, die von der App verwendet werden - -* [Google Play-Dienste](https://www.google.com/policies/privacy/) - -**Kekse** - -Cookies sind Dateien mit einer geringen Datenmenge, die häufig als anonyme eindeutige Identifikatoren verwendet werden. Diese werden von den Webseiten, die Sie besuchen und auf dem internen Speicher Ihres Geräts gespeichert werden, an Ihren Browser gesendet. - -Dieser Service verwendet diese „Cookies“ nicht explizit. Die App kann jedoch den Code und die Bibliotheken von Drittanbietern verwenden, die „Cookies“ verwenden, um Informationen zu sammeln und ihre Dienste zu verbessern. Sie haben die Option , diese Cookies zu akzeptieren oder abzulehnen und zu wissen, wann ein Cookie an Ihr Gerät gesendet wird. Wenn Sie sich entscheiden, unsere Cookies abzulehnen, können Sie einige Bereiche dieses Services nicht nutzen. - -**Diensteanbieter** - -Ich kann aus folgenden Gründen Drittunternehmen und Einzelpersonen beschäftigen: - -* Um unseren Service zu erleichtern; -* Den Service in unserem Namen erbringen; -* Dienstebezogene Dienste durchführen; oder -* Um uns bei der Analyse der Nutzung unseres Services zu unterstützen. - -Ich möchte die Nutzer dieses Dienstes darüber informieren, dass diese Dritten Zugriff auf Ihre persönlichen Daten haben. Der Grund dafür ist, die ihnen zugewiesenen Aufgaben in unserem Namen auszuführen. Sie sind jedoch verpflichtet, die Informationen nicht für andere Zwecke offen zu legen oder zu verwenden. - -**Sicherheit** - -Ich schätze Ihr Vertrauen, uns Ihre persönlichen Daten zur Verfügung zu stellen, daher bemühen wir uns, kommerziell akzeptable Schutzmittel einzusetzen. Aber denken Sie daran, dass keine Übertragungsmethode über das Internet oder Methode der elektronischen Speicherung ist 100% sicher und zuverlässig, und ich kann seine absolute Sicherheit nicht garantieren. - -**Links zu anderen Seiten** - -Dieser Service kann Links zu anderen Websites enthalten. Wenn Sie auf einen Link von Drittanbietern klicken, werden Sie zu dieser Seite weitergeleitet. Beachten Sie, dass diese externen Seiten nicht von mir betrieben werden. Daher empfehle ich Ihnen, die Datenschutzerklärung dieser Websites zu lesen. Ich habe keine Kontrolle über den Inhalt, die Datenschutzrichtlinien oder die Praktiken von Websites oder Diensten von Drittanbietern. - -**Änderungen an dieser Datenschutzerklärung** - -Ich kann unsere Datenschutzerklärung von Zeit zu Zeit aktualisieren. Daher wird empfohlen, diese Seite regelmäßig auf alle Änderungen zu überprüfen. Ich werde Sie über alle Änderungen informieren, indem ich die neue Datenschutzerklärung auf dieser -Seite veröffentliche. - -Diese Richtlinie gilt ab 2021-02-07 - -**Kontaktiere uns** - -Wenn Sie Fragen oder Anregungen zu meiner Datenschutzrichtlinie haben, zögern Sie nicht, mich unter contact@linwood.dev zu kontaktieren. - -Diese Datenschutz-Seite wurde unter [privacypolicytemplate.net](https://privacypolicytemplate.net) erstellt und von [App-Datenschutz-Generator](https://app-privacy-policy-generator.nisrulz.com/) geändert / generiert diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current.json b/docs/i18n/de/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 90a446d8f4b..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Nächste", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 04cdfbc3c23..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Einführung - -Demnächst diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index f08f0eafba1..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Fehlerliste - -| Fehlercode | HTTP-Statuscode | Beschreibung | -| ---------- | --------------- | --------------------- | -| `0` | `404` | Seite nicht gefunden | -| `1` | `404` | Ungültige Api-Version | -| `2` | `403` | Verboten | -| `3` | `400` | Falsche Anfrage | diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json deleted file mode 100644 index 135e4a6858b..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Basics", - "position": 2 -} diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md deleted file mode 100644 index 9ef99bbadd9..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -sidebar_position: 6 ---- - -# Congratulations! - -You have just learned the **basics of Docusaurus** and made some changes to the **initial template**. - -Docusaurus has **much more to offer**! - -Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**. - -Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610) - -## What's next? - -- Read the [official documentation](https://docusaurus.io/). -- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout) -- Add a [search bar](https://docusaurus.io/docs/search) -- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase) -- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support) diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index d893e1c74fd..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -sidebar_position: 3 ---- - -# Create a Blog Post - -Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed... - -## Create your first Post - -Create a file at `blog/2021-02-28-greetings.md`: - -```md title="blog/2021-02-28-greetings.md" ---- -slug: greetings -title: Greetings! -author: Steven Hansel -author_title: Docusaurus Contributor -author_url: https://github.com/ShinteiMai -author_image_url: https://github.com/ShinteiMai.png -tags: [greetings] ---- - -Congratulations, you have made your first post! - -Feel free to play around and edit this post as much you like. -``` - -A new blog post is now available at `http://localhost:3000/blog/greetings`. diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md deleted file mode 100644 index 66b58543d43..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Create a Document - -Documents are **groups of pages** connected through: - -- a **sidebar** -- **previous/next navigation** -- **versioning** - -## Create your first Doc - -Create a markdown file at `docs/hello.md`: - -```md title="docs/hello.md" -# Hello - -This is my **first Docusaurus document**! -``` - -A new document is now available at `http://localhost:3000/docs/hello`. - -## Configure the Sidebar - -Docusaurus automatically **creates a sidebar** from the `docs` folder. - -Add metadatas to customize the sidebar label and position: - -```diff title="docs/hello.md" -+ --- -+ sidebar_label: "Hi!" -+ sidebar_position: 3 -+ --- - - -# Hello - -This is my **first Docusaurus document**! -``` - -It is also possible to create your sidebar explicitly in `sidebars.js`: - -```diff title="sidebars.js" -module.exports = { - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', -- items: [...], -+ items: ['hello'], - }, - ], -}; -``` diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md deleted file mode 100644 index e7254eeae3b..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Create a Page - -Add **Markdown or React** files to `src/pages` to create a **standalone page**: - -- `src/pages/index.js` -> `localhost:3000/` -- `src/pages/foo.md` -> `localhost:3000/foo` -- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar` - -## Create your first React Page - -Create a file at `src/pages/my-react-page.js`: - -```jsx title="src/pages/my-react-page.js" -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function MyReactPage() { - return ( - -

My React page

-

This is a React page

-
- ); -} -``` - -A new page is now available at `http://localhost:3000/my-react-page`. - -## Create your first Markdown Page - -Create a file at `src/pages/my-markdown-page.md`: - -```mdx title="src/pages/my-markdown-page.md" -# My Markdown page - -This is a Markdown page -``` - -A new page is now available at `http://localhost:3000/my-markdown-page`. diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md deleted file mode 100644 index 492eae0276b..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -sidebar_position: 5 ---- - -# Deploy your site - -Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**). - -It builds your site as simple **static HTML, JavaScript and CSS files**. - -## Build your site - -Build your site **for production**: - -```bash -npm run build -``` - -The static files are generated in the `build` folder. - -## Deploy your site - -Test your production build locally: - -```bash -npm run serve -``` - -The `build` folder is now served at `http://localhost:3000/`. - -You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json deleted file mode 100644 index ca3f8e06408..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Extras", - "position": 3 -} diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md deleted file mode 100644 index 2a449098946..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Manage Docs Versions - -Docusaurus can manage multiple versions of your docs. - -## Create a docs version - -Release a version 1.0 of your project: - -```bash -npm run docusaurus docs:version 1.0 -``` - -The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created. - -Your docs now have 2 versions: - -- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs -- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs** - -## Add a Version Dropdown - -To navigate seamlessly across versions, add a version dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'docsVersionDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The docs version dropdown appears in your navbar: - -## Update an existing version - -It is possible to edit versioned docs in their respective folder: - -- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello` -- `docs/hello.md` updates `http://localhost:3000/docs/next/hello` diff --git a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md b/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md deleted file mode 100644 index 5568ca5b993..00000000000 --- a/docs/i18n/de/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Translate your site - -Let's translate `docs/getting-started.md` to French. - -## Configure i18n - -Modify `docusaurus.config.js` to add support for the `fr` locale: - -```js title="docusaurus.config.js" -module.exports = { - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - }, -}; -``` - -## Translate a doc - -Copy the `docs/getting-started.md` file to the `i18n/fr` folder: - -```bash -mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/ - -cp docs/getting-started.md i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md -``` - -Translate `i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md` in French. - -## Start your localized site - -Start your site on the French locale: - -```bash -npm run start -- --locale fr -``` - -Your localized site is accessible at `http://localhost:3000/fr/` and the `Getting Started` page is translated. - -:::caution - -In development, you can only use one locale at a same time. - -::: - -## Add a Locale Dropdown - -To navigate seamlessly across languages, add a locale dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'localeDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The locale dropdown now appears in your navbar: - -## Build your localized site - -Build your site for a specific locale: - -```bash -npm run build -- --locale fr -``` - -Or build your site to include all the locales at once: - -```bash -npm run build -``` diff --git a/docs/i18n/de/docusaurus-theme-classic/footer.json b/docs/i18n/de/docusaurus-theme-classic/footer.json deleted file mode 100644 index 9903e3927d6..00000000000 --- a/docs/i18n/de/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Quellcode", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Rechtlich", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Texte", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Geteilt", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Beitragsanleitung", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Impressum", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Datenschutzerklärung der App", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Datenschutzerklärung der Website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linholz-Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/de/docusaurus-theme-classic/navbar.json b/docs/i18n/de/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 72dae16d48e..00000000000 --- a/docs/i18n/de/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Strömung", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow-Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Mehr", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Lizenz", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/el/code.json b/docs/i18n/el/code.json deleted file mode 100644 index 18125d20aa0..00000000000 --- a/docs/i18n/el/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Ξεκινώντας", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Λήψη για Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Λήψη για Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Λήψη για Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Άνοιγμα της εφαρμογής web", - "description": "homepage web button" - }, - "Downloads": { - "message": "Λήψεις", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Διαχείριση χρόνου", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Διαχειριστείτε την αποδοτικότητα του χρόνου και αυτοματοποιήστε την.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Διαχείριση συμβάντων", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Προγραμματισμός εκδηλώσεων, εκχώρηση χρηστών σε αυτό και παροχή εργασιών σε αυτούς", - "description": "Features Event management description" - }, - "Your data": { - "message": "Τα δεδομένα σας", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Ο καθένας μπορεί να δημιουργήσει το δικό του διακομιστή και να έχει τα δεδομένα σας σε αυτό.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Ανοιχτός κώδικας", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Η εφαρμογή και ο διακομιστής είναι όλοι ανοιχτοί κώδικας. Όλοι μπορούν να συνεισφέρουν!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Αυτή η σελίδα κατέρρευσε.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Η Σελίδα Δεν Βρέθηκε", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Δεν μπορούσαμε να βρούμε αυτό που ψάχνετε.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Παρακαλούμε επικοινωνήστε με τον ιδιοκτήτη της ιστοσελίδας που σας συνέδεσε με την αρχική διεύθυνση URL και ενημερώστε τους ότι ο σύνδεσμος τους είναι σπασμένος.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "σημείωση", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "κίνδυνος", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "πληροφορίες", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "προσοχή", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Αρχειοθέτηση", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Αρχειοθέτηση", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Κύλιση πίσω στην κορυφή", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Πλοήγηση σελίδας λίστας ιστολογίου", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Νεότερες Εγγραφές", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Παλαιότερες Καταχωρήσεις", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Πλοήγηση σελίδας ιστολογίου", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Νεότερη Δημοσίευση", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Παλαιότερη Δημοσίευση", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Μια ανάρτηση{count} δημοσιεύσεις", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} με ετικέτα \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Προβολή Όλων Των Ετικετών", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Εναλλαγή μεταξύ σκοτεινής και φωτεινής λειτουργίας (προς το παρόν {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "σκοτεινή λειτουργία", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "λειτουργία φωτός", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Ψίχουλα", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} αντικείμενα", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Πλοήγηση σελίδων εγγράφων", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Προηγούμενο", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Επόμενο", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Μια ετικέτα doc,{count} docs με ετικέτα", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} με \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Έκδοση: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Αυτή η τεκμηρίωση δεν είναι διαθέσιμη για την έκδοση {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Αυτή είναι η τεκμηρίωση για {siteTitle} {versionLabel}, η οποία δεν διατηρείται πλέον ενεργά.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Για ενημερωμένη τεκμηρίωση, ανατρέξτε στο {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "τελευταία έκδοση", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Επεξεργαστείτε αυτή τη σελίδα", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Άμεση σύνδεση με το {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " στις {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " από {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Τελευταία ενημέρωση{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Εκδόσεις", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Ετικέτες:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Κλείσιμο", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog πρόσφατη πλοήγηση δημοσιεύσεων", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Αντιγράφηκε", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Αντιγραφή κώδικα στο πρόχειρο", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Αντιγραφή", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Εναλλαγή αναδίπλωσης λέξεων", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Κύρια", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Γλώσσες", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Σε αυτή τη σελίδα", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Ένα λεπτό διαβάστηκε{readingTime} λεπτά", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Διαβάστε Περισσότερα", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Διαβάστε περισσότερα για {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Αρχική σελίδα", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Σύμπτυξη πλαϊνής μπάρας", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Σύμπτυξη πλαϊνής μπάρας", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Κλείσιμο γραμμής πλοήγησης", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Πίσω στο κύριο μενού", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Εναλλαγή γραμμής πλοήγησης", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Νέα έκδοση διαθέσιμη", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Ανανέωση", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Κλείσιμο", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Προσπαθήστε ξανά", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Μετάβαση στο κύριο περιεχόμενο", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Ετικέτες", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "προειδοποίηση", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Μη καταχωρημένη σελίδα", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Αυτή η σελίδα δεν είναι καταχωρημένη. Οι μηχανές αναζήτησης δεν θα την ευρετηριάσουν, και μόνο οι χρήστες που έχουν άμεση σύνδεση μπορούν να έχουν πρόσβαση σε αυτήν.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} αντικείμενα", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/el/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 493ceb0f9e1..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Επόμενο", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 80890cb08d7..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Αρχείο Αλλαγών -hide_title: true -sidebar_label: Αρχείο Αλλαγών ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index ef07fa9a03a..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Κώδικας συμπεριφοράς -hide_title: true -sidebar_label: Κώδικας συμπεριφοράς ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 408508658e1..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Συνεισφορά" -hide_title: true -sidebar_label: "Συνεισφορά" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 7a8da74e19b..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Λήψεις" -} \ No newline at end of file diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 6e86040ef28..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Σταθερή έκδοση έκδοση](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Νυχτερινή έκδοση έκδοσης](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Ελάχιστες απαιτήσεις συστήματος - -* Android 5.0 (API επίπεδο 21) ή νεότερο. - -## Δυαδικά - -
- - Σταθερό - - - Νυχτερινή - -
- -Διαβάστε περισσότερα για τη νυχτερινή έκδοση του Flow [εδώ](/nightly). diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 12a39fcf84a..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Φτιάξτε το δικό σας" -sidebar_position: 1 ---- - -1. Εγκαταστήστε το git και το flutter (beta) -2. Κλωνοποίηση του αποθετηρίου -3. Μεταβείτε στον κατάλογο εφαρμογών -4. Χρησιμοποιήστε το εργαλείο πτερυγισμού για να μεταγλωττίσετε την εφαρμογή - * `κατασκευή πτερυγίου apk` - * `flutter build πακέτο` - * `flutter build web` - * `flutter build linux` - * `flutter κατασκευή παραθύρων` -5. Τα μεταγλωττισμένα αρχεία βρίσκονται στον κατάλογο κατασκευής diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 032391032ab..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Λήψεις ---- - -![Σταθερή έκδοση έκδοση](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Νυχτερινή έκδοση έκδοσης](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Επιλέξτε την πλατφόρμα σας - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Διακομιστής - Selfhosting - -
- -## Χρήσιμοι σύνδεσμοι - -- [Αρχείο Αλλαγών](changelog) -- [Παλαιότερες εκδόσεις](https://github.com/LinwoodDev/Flow/releases) -- [Τελευταία κυκλοφορία](https://github.com/LinwoodDev/Flow/releases/latest) -- [Υποστήριξη](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 7f6b0800d70..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Σταθερή έκδοση έκδοση](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Νυχτερινή έκδοση έκδοσης](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Παρακαλούμε χρησιμοποιήστε την έκδοση flatpak αν είναι δυνατόν. Διαφορετικά, πρέπει να εγκαταστήσετε `libsecret-1-dev` και `libjsoncpp-dev`. - -::: - -## Δυαδικά - -
-
- -
    -
  • - - Φορητό - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Φορητό - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Διαβάστε περισσότερα για τη νυχτερινή έκδοση του Flow [εδώ](/nightly). diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index acbf6f86a78..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Σταθερή έκδοση έκδοση](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Νυχτερινή έκδοση έκδοσης](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Σύνδεσμοι - - diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 77a5ade6f36..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Σας ευχαριστούμε για τη λήψη -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Σας ευχαριστούμε για τη λήψη - - - -## Windows SmartScreen - - -Τα Windows προειδοποιούν τους χρήστες κατά την εγκατάσταση λογισμικού χωρίς πιστοποιητικό. - -![Έξυπνη οθόνη](/img/smart-screen.png) - -Για να εγκαταστήσετε την εφαρμογή, πρέπει να κάνετε κλικ στο "Περισσότερες πληροφορίες". - -![Έξυπνες πληροφορίες οθόνης](/img/smart-screen-more-info.png) - -Στη συνέχεια, κάντε κλικ στο "Εκτέλεση ούτως ή άλλως". - -
diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index c88287cbe96..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Σταθερή έκδοση έκδοση](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Νυχτερινή έκδοση έκδοσης](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Είναι πολύ εύκολο να φιλοξενήσει τη δική σας ροή web server. - -## Απλός διακομιστής - -Εγκαταστήστε το flutter και δημιουργήστε την εφαρμογή χρησιμοποιώντας: - -```bash -cd app -flutter pub get -flutter build web -``` - -Όλα τα αρχεία βρίσκονται στον κατάλογο `app/build/web`. - -## Προσάρτηση - -Κλωνοποιήστε το αποθετήριο και δημιουργήστε το `Dockerfile` χρησιμοποιώντας: `docker build -t linwood-flow`. Ξεκινήστε το διακομιστή χρησιμοποιώντας: `docker τρέχει -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index efcb2c2736b..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Σας ευχαριστούμε για τη λήψη -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Σας ευχαριστούμε για τη λήψη - - - -
diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ffa017b20fd..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Ιστός" -sidebar_position: 5 ---- - -![Σταθερή έκδοση έκδοση](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Νυχτερινή έκδοση έκδοσης](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Αυτή είναι μια προοδευτική διαδικτυακή εφαρμογή. Μπορείτε να το εγκαταστήσετε στον περιηγητή σας και να το χρησιμοποιήσετε εκτός σύνδεσης. Όλα τα δεδομένα αποθηκεύονται στο πρόγραμμα περιήγησης. - -::: - - -## Σύνδεσμοι - - - -## Εκδόσεις - -Οι κύριες και οι προεπισκόπηση (ανάπτυξη) εκδόσεις του Flow δεν είναι οι ίδιες με τις σταθερές και νυχτερινές εκδόσεις. Δεν συνδέονται άμεσα με μια απελευθέρωση. Ενημερώνονται μόλις μια νέα υποβολή ωθείται στο αποθετήριο. diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 338e42b0dc1..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Παράθυρα" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Σταθερή έκδοση έκδοση](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Νυχτερινή έκδοση έκδοσης](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Ελάχιστες απαιτήσεις συστήματος - -* Παράθυρα 10 ή υψηλότερη. - -## Δυαδικά - -
-
- -
    -
  • - - Ρύθμιση - -
  • -
  • - - Φορητό - -
  • -
-
-
- -
    -
  • - - Ρύθμιση - -
  • -
  • - - Φορητό - -
  • -
-
-
- -Διαβάστε περισσότερα για τη νυχτερινή έκδοση του Flow [εδώ](/nightly). diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index ee05ae1c241..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Συχνές Ερωτήσεις" -sidebar_label: "Συχνές" ---- - -Ακολουθούν μερικές συχνές ερωτήσεις. diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index b68986e1d3e..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Αρχική" -sidebar_position: 0 -title: "Κοινότητα" ---- - -Καλώς ήλθατε στο τμήμα της κοινότητας. - -## Ευχαριστίες - -Ιδιαίτερες ευχαριστίες απευθύνεται: - -* [Flutter](https://github.com/flutter/flutter) για την παροχή αυτού του χρήσιμου crossplatform -* [window_manager](https://github.com/leanflutter/window_manager) για όλα αυτά τα χρήσιμα χαρακτηριστικά παραθύρων επιφάνειας εργασίας -* [Docusaurus](https://github.com/facebook/docusaurus) για ένα εύχρηστο πλαίσιο τεκμηρίωσης στατικής αντίδρασης - -Όλες οι άλλες άδειες χρήσης μπορείτε να βρείτε στις ρυθμίσεις. - -## Χρήσιμοι σύνδεσμοι - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Πίνακας](https://go.linwood.dev/matrix) diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 505fdfe5ee8..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Νυχτερινά Κτίρια" -slug: "/nightly" ---- - -:::warning - -Μην χρησιμοποιείτε τη νυχτερινή έκδοση της Ροής για την παραγωγή. - -::: - -Νυχτερινές εκδόσεις έχουν σχεδιαστεί για να σας δώσει τη δυνατότητα να δοκιμάσετε την τελευταία έκδοση και να πάρετε τα νεότερα χαρακτηριστικά και να δώσει ανατροφοδότηση. - -## Λήψη των κατασκευών - -Μεταβείτε στις σελίδες λήψης της πλατφόρμας σας. Όλες οι νυχτερινές εκδόσεις δημοσιεύονται επίσης ως προ-κυκλοφορία στο github. diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 0b4f9d95c63..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 εκδόσεις" ---- - -Αυτές οι εκδόσεις δεν υποστηρίζονται πλέον. Νέες εκδόσεις είναι διαθέσιμες στις [εκδόσεις](versions.md). - -| Έκδοση | Υποστηριζόμενο | | -| ------ | -------------- | | -| | | | diff --git a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/el/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index d8ca078210b..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Πολιτική Απορρήτου" -slug: /privacypolicy ---- - -Αυτή είναι η πολιτική απορρήτου της εφαρμογής. Παρακαλώ διαβάστε το προσεκτικά. Κάντε κλικ στο [εδώ](https://go.linwood.dev/privacypolicy) για να διαβάσετε την πολιτική απορρήτου της ιστοσελίδας. - -Το CodeDoctor δημιούργησε την εφαρμογή Flow ως εφαρμογή Ανοιχτού Κώδικα. Αυτή η SERVICE παρέχεται από CodeDoctor χωρίς κόστος και προορίζεται για χρήση όπως είναι. - -Αυτή η σελίδα χρησιμοποιείται για να ενημερώσει τους επισκέπτες σχετικά με τις πολιτικές μου με τη συλλογή, χρήση και αποκάλυψη των Προσωπικών Πληροφοριών αν κάποιος αποφασίσει να χρησιμοποιήσει την Υπηρεσία μου. - -Εάν επιλέξετε να χρησιμοποιήσετε την Υπηρεσία μου, τότε συμφωνείτε με τη συλλογή και χρήση πληροφοριών σε σχέση με αυτήν την πολιτική. Τα προσωπικά στοιχεία που συλλέγω χρησιμοποιούνται για την παροχή και τη βελτίωση της υπηρεσίας . Δεν θα χρησιμοποιήσω ή θα μοιραστώ τις πληροφορίες σας με οποιονδήποτε εκτός από αυτό που περιγράφεται στην παρούσα Πολιτική Απορρήτου. - -Οι όροι που χρησιμοποιούνται σε αυτήν την Πολιτική Απορρήτου έχουν τις ίδιες έννοιες όπως στους Όρους και Προϋποθέσεις μας, το οποίο είναι προσβάσιμο στο Flow εκτός αν ορίζεται διαφορετικά στην παρούσα Πολιτική Απορρήτου. - -**Συλλογή και χρήση Πληροφοριών** - -Για μια καλύτερη εμπειρία, κατά τη χρήση της Υπηρεσίας μας, μπορεί να σας ζητήσω να μας παρέχετε ορισμένες προσωπικές πληροφορίες. Οι πληροφορίες που ζητώ θα διατηρούνται στη συσκευή σας και δεν συλλέγονται από εμένα με κανένα τρόπο. - -Η εφαρμογή χρησιμοποιεί υπηρεσίες τρίτων που ενδέχεται να συλλέγουν πληροφορίες που χρησιμοποιούνται για την αναγνώρισή σας. - -Σύνδεση με την πολιτική απορρήτου τρίτων παρόχων υπηρεσιών που χρησιμοποιούνται από την εφαρμογή - -* [Υπηρεσίες Google Play](https://www.google.com/policies/privacy/) - -**Cookies** - -Τα cookies είναι αρχεία με μικρή ποσότητα δεδομένων που χρησιμοποιούνται συνήθως ως ανώνυμα μοναδικά αναγνωριστικά. Αυτά αποστέλλονται στο πρόγραμμα περιήγησής σας από τις ιστοσελίδες που επισκέπτεστε και αποθηκεύονται στην εσωτερική μνήμη της συσκευής σας. - -Αυτή η Υπηρεσία δεν χρησιμοποιεί αυτά τα «cookies» ρητά. Ωστόσο, η εφαρμογή ενδέχεται να χρησιμοποιεί κώδικα και βιβλιοθήκες τρίτων που χρησιμοποιούν "cookies" για τη συλλογή πληροφοριών και τη βελτίωση των υπηρεσιών τους. Έχετε την επιλογή είτε να αποδεχθείτε είτε να απορρίψετε αυτά τα cookies και να γνωρίζετε πότε αποστέλλεται ένα cookie στη συσκευή σας. Αν επιλέξετε να αρνηθείτε τα cookies μας, ενδέχεται να μην μπορείτε να χρησιμοποιήσετε κάποια τμήματα αυτής της Υπηρεσίας. - -**Πάροχοι Υπηρεσιών** - -Μπορώ να απασχολούν εταιρείες τρίτων και φυσικά πρόσωπα για τους ακόλουθους λόγους: - -* Για να διευκολύνουμε την Υπηρεσία μας, -* Να παρέχουμε την Υπηρεσία για λογαριασμό μας. -* Για την εκτέλεση Υπηρεσιακών Υπηρεσιών, ή -* Για να μας βοηθήσετε στην ανάλυση του τρόπου με τον οποίο χρησιμοποιείται η Υπηρεσία μας. - -Θέλω να ενημερώσω τους χρήστες αυτής της Υπηρεσίας ότι αυτά τα τρίτα μέρη έχουν πρόσβαση στις Προσωπικές σας Πληροφορίες. Ο λόγος είναι η εκτέλεση των καθηκόντων που τους ανατίθενται για λογαριασμό μας. Ωστόσο, είναι υποχρεωμένοι να μην αποκαλύπτουν ή να χρησιμοποιούν τις πληροφορίες για οποιονδήποτε άλλο σκοπό. - -**Ασφάλεια** - -Εκτιμώ την εμπιστοσύνη σας στην παροχή των Προσωπικών σας Πληροφοριών, επομένως προσπαθούμε να χρησιμοποιήσουμε εμπορικά αποδεκτά μέσα για την προστασία τους. Αλλά να θυμάστε ότι καμία μέθοδος μετάδοσης μέσω του Διαδικτύου, ή η μέθοδος ηλεκτρονικής αποθήκευσης είναι 100% ασφαλής και αξιόπιστη, και δεν μπορώ να εγγυηθώ την απόλυτη ασφάλειά της. - -**Σύνδεσμοι σε άλλες ιστοσελίδες** - -Αυτή η Υπηρεσία μπορεί να περιέχει συνδέσμους προς άλλες ιστοσελίδες. Αν κάνετε κλικ σε ένα σύνδεσμο από τρίτους, θα κατευθυνθείτε σε αυτό το site. Σημειώστε ότι αυτοί οι εξωτερικοί ιστότοποι δεν λειτουργούν από εμένα. Ως εκ τούτου, σας συμβουλεύω να αναθεωρήσετε την Πολιτική Απορρήτου αυτών των δικτυακών τόπων. Δεν έχω κανέναν έλεγχο και δεν αναλαμβάνω καμία ευθύνη για το περιεχόμενο, τις πολιτικές απορρήτου ή τις πρακτικές οποιωνδήποτε ιστότοπων ή υπηρεσιών τρίτων. - -**Αλλαγές σε αυτήν την Πολιτική Απορρήτου** - -Μπορώ να ενημερώσω την Πολιτική Απορρήτου μας από καιρό σε καιρό. Έτσι, σας συμβουλεύουμε να ελέγχετε περιοδικά αυτή τη σελίδα για οποιεσδήποτε αλλαγές. Θα σας ενημερώσω για τυχόν αλλαγές δημοσιεύοντας τη νέα Πολιτική Προστασίας Προσωπικών Δεδομένων σε αυτή την σελίδα. - -Αυτή η πολιτική είναι αποτελεσματική από 2021-02-07 - -**Επικοινωνήστε Μαζί Μας** - -Εάν έχετε οποιεσδήποτε ερωτήσεις ή προτάσεις σχετικά με την Πολιτική Απορρήτου μου, μην διστάσετε να επικοινωνήσετε μαζί μου στο contact@linwood.dev. - -Αυτή η σελίδα πολιτικής απορρήτου δημιουργήθηκε στο [privacypolicytemplate.net](https://privacypolicytemplate.net) και τροποποιήθηκε/δημιουργήθηκε από [Γεννήτρια Πολιτικής Προστασίας Προσωπικών Δεδομένων Εφαρμογών](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/el/docusaurus-plugin-content-docs/current.json b/docs/i18n/el/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 5accb7219d4..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Επόμενο", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "εξυπηρετητής", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/el/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/el/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 467b97f1bcd..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Εισαγωγή - -Έρχεται σύντομα diff --git a/docs/i18n/el/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/el/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 116cf733db5..00000000000 --- a/docs/i18n/el/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Λίστα σφαλμάτων - -| Κωδικός σφάλματος | Κωδικός κατάστασης HTTP | Περιγραφή | -| ----------------- | ----------------------- | -------------------- | -| `0` | `404` | Η σελίδα δεν βρέθηκε | -| `1` | `404` | Μη έγκυρη έκδοση api | -| `2` | `403` | Απαγορευμένο | -| `3` | `400` | Εσφαλμένο αίτημα | diff --git a/docs/i18n/el/docusaurus-theme-classic/footer.json b/docs/i18n/el/docusaurus-theme-classic/footer.json deleted file mode 100644 index 6e99662fcf3..00000000000 --- a/docs/i18n/el/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Κοινότητα", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Πηγαίος κώδικας", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Νομικά", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Πίνακας", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Εφαρμογή", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Διακομιστής", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Έγγραφα", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Κοινόχρηστο", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Οδηγός συνεισφοράς", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Αποτύπωμα", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Πολιτική Απορρήτου της εφαρμογής", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Πολιτική Απορρήτου της ιστοσελίδας", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Πνευματικά Δικαιώματα :Copyright: 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Λογότυπο Linwood", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/el/docusaurus-theme-classic/navbar.json b/docs/i18n/el/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 56dc1e7fc62..00000000000 --- a/docs/i18n/el/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Ροή", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Λογότυπο Ροής", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Εκμάθηση", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Λήψεις", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Κοινότητα", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Περισσότερα", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Πίνακας", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Ιστολόγιο", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Άδεια", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/en/code.json b/docs/i18n/en/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/en/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/en/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/en/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/en/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/en/docusaurus-plugin-content-docs/current.json b/docs/i18n/en/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/en/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/en/docusaurus-theme-classic/footer.json b/docs/i18n/en/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/en/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/en/docusaurus-theme-classic/navbar.json b/docs/i18n/en/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/en/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/es/code.json b/docs/i18n/es/code.json deleted file mode 100644 index 5b4b675ae17..00000000000 --- a/docs/i18n/es/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Comenzando", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Descargar para Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Descargar para Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Descargar para Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Abrir la aplicación web", - "description": "homepage web button" - }, - "Downloads": { - "message": "Descargas", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Gestión del tiempo", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Gestiona la eficiencia del tiempo y automatiza.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Gestión de eventos", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Programar eventos, asignar usuarios y darles tareas", - "description": "Features Event management description" - }, - "Your data": { - "message": "Sus datos", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Todo el mundo puede crear su propio servidor y tener sus datos en él.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Código abierto", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "La aplicación y el servidor son todos de código abierto. ¡Todos pueden contribuir!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Esta página ha fallado.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Página no encontrada", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "No pudimos encontrar lo que estaba buscando.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Póngase en contacto con el propietario del sitio que le vinculó a la URL original y hágales saber que su enlace está roto.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "nota", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "peligro", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "precaución", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archivar", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archivar", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Desplazar hacia arriba", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navegación de la lista de blogs", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Entradas nuevas", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Entradas antiguas", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Navegación de la página del blog", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Poste más reciente", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Poste antiguo", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Una publicación|{count} publicaciones", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} etiquetado con \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Ver todas las etiquetas", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Cambiar entre modo oscuro y claro (actualmente {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "modo oscuro", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "modo de luz", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "migas de pan", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} objetos", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navegación de páginas de documentos", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Anterior", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Siguiente", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Un documento etiquetado |{count} documentos etiquetados", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} con \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versión: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Esta es la documentación no publicada para la versión {siteTitle} de {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Esta es la documentación para {siteTitle} {versionLabel}, que ya no está activamente mantenida.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Para obtener documentación actualizada, consulte {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "última versión", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Editar esta página", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Enlace directo a {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " el {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " por {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Última actualización{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versiones", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Etiquetas:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Cerrar", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Navegación de mensajes recientes del blog", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copiado", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copiar código al portapapeles", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copiar", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Cambiar envoltura de palabra", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Principal", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Idiomas", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "En esta página", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Lectura de un minuto|{readingTime} lectura mínima", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Leer más", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Leer más sobre {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Página de inicio", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Colapsar barra lateral", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Colapsar barra lateral", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Cerrar barra de navegación", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Volver al menú principal", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Cambiar barra de navegación", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Nueva versión disponible", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refrescar", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Cerrar", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Inténtalo de nuevo", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Ir al contenido principal", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Etiquetas", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "advertencia", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expandir la categoría de barra lateral '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Colapsar la barra lateral categoría '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Página no enumerada", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Esta página no está en la lista. Los motores de búsqueda no lo indexarán, y sólo los usuarios que tengan un enlace directo pueden acceder a ella.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} objetos", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/es/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 52db90cd147..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Siguiente", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discordia", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index ec5279800eb..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Cambios -hide_title: true -sidebar_label: Cambios ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index bf5b3a9a783..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Código de conducta -hide_title: true -sidebar_label: Código de conducta ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index b116d2fc0d6..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contribuyendo" -hide_title: true -sidebar_label: "Contribuyendo" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 9f291933416..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Descargas" -} \ No newline at end of file diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 5fe4453a38a..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versión estable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versión de lanzamiento nocturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisitos mínimos del sistema - -* Android 5.0 (API nivel 21) o superior. - -## Binarios - -
- - Estable - - - Noche - -
- -Lea más sobre la versión nocturna de Flow [aquí](/nightly). diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 0250ab7be83..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Construye tu propio" -sidebar_position: 1 ---- - -1. Instalar git y flujido (beta) -2. Clonar el repositorio -3. Navegar al directorio de aplicaciones -4. Utilice la herramienta de flutter para compilar la aplicación - * `compilar apk de flutter` - * `paquete de compilación de flutter` - * `web de construcción de flutter` - * `flutter construir linux` - * `ventanas de construcción de flutter` -5. Los archivos compilados están en el directorio de compilación diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index f1e350f0967..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Descargas ---- - -![Versión estable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versión de lanzamiento nocturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Elige tu plataforma - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Servidor - Selfhosting - -
- -## Enlaces útiles - -- [Cambios](changelog) -- [Versiones antiguas](https://github.com/LinwoodDev/Flow/releases) -- [Última versión](https://github.com/LinwoodDev/Flow/releases/latest) -- [Soporte](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index e0ac44abc4b..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versión estable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versión de lanzamiento nocturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Por favor, utilice la versión de flatpak si es posible. De lo contrario, necesita instalar `libsecret-1-dev` y `libjsoncpp-dev`. - -::: - -## Binarios - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Lea más sobre la versión nocturna de Flow [aquí](/nightly). diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 30cf0c73767..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Versión estable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versión de lanzamiento nocturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Enlaces - - diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 555c5f68ccf..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Gracias por descargar -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Gracias por descargar - - - -## Windows SmartScreen - - -Windows advierte a los usuarios al instalar software sin un certificado. - -![Pantalla inteligente](/img/smart-screen.png) - -Para instalar la aplicación, debes hacer clic en "Más información". - -![Pantalla inteligente más info](/img/smart-screen-more-info.png) - -Luego, haga clic en "Ejecutar de todos modos". - -
diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 4b1b394972c..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Versión estable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versión de lanzamiento nocturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Es muy fácil alojar su propio servidor web de flujo. - -## Servidor simple - -Instala flutter y construye la aplicación utilizando: - -```bash -app cd -pub flutter get -web build flutter -``` - -Todos los archivos están en el directorio `app/build/web`. - -## Doctor - -Clona el repositorio y construye el `Dockerfile` usando: `docker build -t linwood-flow`. Iniciar el servidor usando: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 328bd83c2b9..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Gracias por descargar -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Gracias por descargar - - - -
diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index d8ad379ad90..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Versión estable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versión de lanzamiento nocturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Esta es una aplicación web progresiva. Puedes instalarlo en tu navegador y usarlo sin conexión. Todos los datos se almacenan en su navegador. - -::: - - -## Enlaces - - - -## Versiones - -Las versiones principales y de vista previa de Flow no son las mismas que las versiones estables y nocturnas. No están directamente asociados con una liberación. Se actualizan tan pronto como un nuevo commit se inserta en el repositorio. diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index db935f2adbe..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Ventanas" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versión estable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versión de lanzamiento nocturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisitos mínimos del sistema - -* Windows 10 o superior. - -## Binarios - -
-
- -
    -
  • - - Configurar - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Configurar - -
  • -
  • - - Portable - -
  • -
-
-
- -Lea más sobre la versión nocturna de Flow [aquí](/nightly). diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 02bc7d8d5c0..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Preguntas frecuentes" -sidebar_label: "FAQ" ---- - -He aquí algunas preguntas frecuentes. diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index a1e7074b36a..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Inicio" -sidebar_position: 0 -title: "Comunidad" ---- - -Bienvenido a la sección de la comunidad. - -## Agradecimientos - -Un agradecimiento especial es: - -* [Flutter](https://github.com/flutter/flutter) para proporcionar este útil marco ui multiplataforma -* [window_manager](https://github.com/leanflutter/window_manager) para todas estas características útiles de la ventana de escritorio -* [Docusaurus](https://github.com/facebook/docusaurus) para un framework de documentación de reacción estática fácil de usar - -Todas las demás licencias se pueden encontrar en los ajustes. - -## Enlaces útiles - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discordia](https://go.linwood.dev/discord) -* [Matriz](https://go.linwood.dev/matrix) diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 813a0b0768c..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Construcciones nocturnas" -slug: "/nightly" ---- - -:::advertencia - -No utilice la versión nocturna de Flow para la producción. - -::: - -Las compilaciones nocturnas están diseñadas para darle la opción de probar la última versión y obtener las características más recientes y dar comentarios. - -## Obtener las construcciones - -Vaya a las páginas de descarga de su plataforma. Todas las compilaciones nocturnas también se publican como pre-lanzamiento en github. diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 08aff1ce88f..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Versiones previas a 1.0" ---- - -Estas versiones ya no están soportadas. Las nuevas versiones están disponibles en [versiones](versions.md). - -| Versión | Soportado | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/es/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index e8eb126b6b5..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Política de privacidad" -slug: /privacypolicy ---- - -Esta es la política de privacidad de la aplicación. Por favor, léelo cuidadosamente. Haga clic [aquí](https://go.linwood.dev/privacypolicy) para leer la política de privacidad del sitio web. - -CodeDoctor construyó la aplicación Flow como una aplicación de código abierto. Este SERVICE es proporcionado por CodeDoctor sin costo alguno y está pensado para su uso como es. - -Esta página se utiliza para informar a los visitantes acerca de mis políticas con la colección, el uso, y la divulgación de la Información Personal si alguien decidió utilizar mi Servicio. - -Si usted decide utilizar mi Servicio, entonces usted acepta la recopilación y el uso de información en relación con esta política. La información personal que recopilo se utiliza para proporcionar y mejorar el servicio . No utilizaré ni compartiré su información con nadie excepto como se describe en esta Política de Privacidad. - -Los términos utilizados en esta política de privacidad tienen los mismos significados que en nuestros términos y condiciones, que es accesible en Flow a menos que se defina lo contrario en esta Política de Privacidad. - -**Recopilación de información y uso** - -Para una mejor experiencia, mientras utilizo nuestro Servicio, podría requerirle que nos proporcione cierta información personal identificable. La información que solicito se conservará en tu dispositivo y no es recopilada por mí de ninguna manera. - -La aplicación utiliza servicios de terceros que pueden recopilar información utilizada para identificarte. - -Enlace a la política de privacidad de terceros proveedores de servicios utilizados por la aplicación - -* [Servicios de Google Play](https://www.google.com/policies/privacy/) - -**Cookies** - -Las cookies son archivos con una pequeña cantidad de datos que se utilizan comúnmente como identificadores únicos anónimos. Estos se envían a su navegador desde los sitios web que visita y se almacenan en la memoria interna de su dispositivo. - -Este Servicio no utiliza estas “cookies” explícitamente. Sin embargo, la aplicación puede usar códigos de terceros y bibliotecas que utilizan “cookies” para recopilar información y mejorar sus servicios. Tienes la opción de aceptar o rechazar estas cookies y saber cuándo se envía una cookie a tu dispositivo. Si decide rechazar nuestras cookies, es posible que no pueda utilizar algunas partes de este Servicio. - -**Proveedores de servicios** - -Puedo contratar a empresas e individuos de terceros por las siguientes razones: - -* Para facilitar nuestro Servicio; -* Proporcionar el Servicio en nuestro nombre; -* Para realizar servicios relacionados con el servicio; o -* Para ayudarnos a analizar cómo se utiliza nuestro Servicio. - -Quiero informar a los usuarios de este Servicio que estos terceros tienen acceso a su Información Personal. La razón es realizar las tareas que se les han asignado en nuestro nombre. Sin embargo, están obligados a no divulgar o usar la información para ningún otro propósito. - -**Seguridad** - -Valoro su confianza a la hora de proporcionarnos su Información Personal, por lo que nos esforzamos por utilizar medios comercialmente aceptables para protegerla. Pero recuerde que ningún método de transmisión a través de Internet, o método de almacenamiento electrónico es 100% seguro y fiable, y no puedo garantizar su absoluta seguridad. - -**Enlaces a otros sitios** - -Este Servicio puede contener enlaces a otros sitios. Si haces clic en un enlace de terceros, serás dirigido a ese sitio. Tenga en cuenta que estos sitios externos no son operados por mí. Por lo tanto, le aconsejo encarecidamente que revise la política de privacidad de estos sitios web. No tengo ningún control sobre el contenido, las políticas de privacidad o las prácticas de ningún sitio o servicio de terceros. - -**Cambios a esta política de privacidad** - -Puedo actualizar nuestra Política de Privacidad de vez en cuando. Por lo tanto, se le aconseja que revise esta página periódicamente para cualquier cambio. Te notificaré de cualquier cambio publicando la nueva Política de Privacidad en esta página . - -Esta política es efectiva a partir de 2021-02-07 - -**Contáctenos** - -Si tiene alguna pregunta o sugerencia sobre mi Política de Privacidad, no dude en ponerse en contacto conmigo en contact@linwood.dev. - -Esta página de política de privacidad fue creada en [privacypolicytemplate.net](https://privacypolicytemplate.net) y modificado/generado por [Generador de política de privacidad](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current.json b/docs/i18n/es/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index f606add0804..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Siguiente", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "servidor", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 014d1ddc9a3..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introducción - -Próximamente diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 5e37802625a..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Lista de errores - -| Código de error | Código de estado HTTP | Descripción | -| --------------- | --------------------- | ------------------------ | -| `0` | `404` | Página no encontrada | -| `1` | `404` | Versión de api no válida | -| `2` | `403` | Prohibida | -| `3` | `400` | Solicitud incorrecta | diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json deleted file mode 100644 index 135e4a6858b..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Basics", - "position": 2 -} diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md deleted file mode 100644 index 9ef99bbadd9..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -sidebar_position: 6 ---- - -# Congratulations! - -You have just learned the **basics of Docusaurus** and made some changes to the **initial template**. - -Docusaurus has **much more to offer**! - -Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**. - -Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610) - -## What's next? - -- Read the [official documentation](https://docusaurus.io/). -- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout) -- Add a [search bar](https://docusaurus.io/docs/search) -- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase) -- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support) diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index d893e1c74fd..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -sidebar_position: 3 ---- - -# Create a Blog Post - -Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed... - -## Create your first Post - -Create a file at `blog/2021-02-28-greetings.md`: - -```md title="blog/2021-02-28-greetings.md" ---- -slug: greetings -title: Greetings! -author: Steven Hansel -author_title: Docusaurus Contributor -author_url: https://github.com/ShinteiMai -author_image_url: https://github.com/ShinteiMai.png -tags: [greetings] ---- - -Congratulations, you have made your first post! - -Feel free to play around and edit this post as much you like. -``` - -A new blog post is now available at `http://localhost:3000/blog/greetings`. diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md deleted file mode 100644 index 66b58543d43..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Create a Document - -Documents are **groups of pages** connected through: - -- a **sidebar** -- **previous/next navigation** -- **versioning** - -## Create your first Doc - -Create a markdown file at `docs/hello.md`: - -```md title="docs/hello.md" -# Hello - -This is my **first Docusaurus document**! -``` - -A new document is now available at `http://localhost:3000/docs/hello`. - -## Configure the Sidebar - -Docusaurus automatically **creates a sidebar** from the `docs` folder. - -Add metadatas to customize the sidebar label and position: - -```diff title="docs/hello.md" -+ --- -+ sidebar_label: "Hi!" -+ sidebar_position: 3 -+ --- - - -# Hello - -This is my **first Docusaurus document**! -``` - -It is also possible to create your sidebar explicitly in `sidebars.js`: - -```diff title="sidebars.js" -module.exports = { - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', -- items: [...], -+ items: ['hello'], - }, - ], -}; -``` diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md deleted file mode 100644 index e7254eeae3b..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Create a Page - -Add **Markdown or React** files to `src/pages` to create a **standalone page**: - -- `src/pages/index.js` -> `localhost:3000/` -- `src/pages/foo.md` -> `localhost:3000/foo` -- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar` - -## Create your first React Page - -Create a file at `src/pages/my-react-page.js`: - -```jsx title="src/pages/my-react-page.js" -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function MyReactPage() { - return ( - -

My React page

-

This is a React page

-
- ); -} -``` - -A new page is now available at `http://localhost:3000/my-react-page`. - -## Create your first Markdown Page - -Create a file at `src/pages/my-markdown-page.md`: - -```mdx title="src/pages/my-markdown-page.md" -# My Markdown page - -This is a Markdown page -``` - -A new page is now available at `http://localhost:3000/my-markdown-page`. diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md deleted file mode 100644 index 492eae0276b..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -sidebar_position: 5 ---- - -# Deploy your site - -Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**). - -It builds your site as simple **static HTML, JavaScript and CSS files**. - -## Build your site - -Build your site **for production**: - -```bash -npm run build -``` - -The static files are generated in the `build` folder. - -## Deploy your site - -Test your production build locally: - -```bash -npm run serve -``` - -The `build` folder is now served at `http://localhost:3000/`. - -You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json deleted file mode 100644 index ca3f8e06408..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Extras", - "position": 3 -} diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md deleted file mode 100644 index 2a449098946..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Manage Docs Versions - -Docusaurus can manage multiple versions of your docs. - -## Create a docs version - -Release a version 1.0 of your project: - -```bash -npm run docusaurus docs:version 1.0 -``` - -The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created. - -Your docs now have 2 versions: - -- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs -- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs** - -## Add a Version Dropdown - -To navigate seamlessly across versions, add a version dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'docsVersionDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The docs version dropdown appears in your navbar: - -## Update an existing version - -It is possible to edit versioned docs in their respective folder: - -- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello` -- `docs/hello.md` updates `http://localhost:3000/docs/next/hello` diff --git a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md b/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md deleted file mode 100644 index 5568ca5b993..00000000000 --- a/docs/i18n/es/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Translate your site - -Let's translate `docs/getting-started.md` to French. - -## Configure i18n - -Modify `docusaurus.config.js` to add support for the `fr` locale: - -```js title="docusaurus.config.js" -module.exports = { - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - }, -}; -``` - -## Translate a doc - -Copy the `docs/getting-started.md` file to the `i18n/fr` folder: - -```bash -mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/ - -cp docs/getting-started.md i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md -``` - -Translate `i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md` in French. - -## Start your localized site - -Start your site on the French locale: - -```bash -npm run start -- --locale fr -``` - -Your localized site is accessible at `http://localhost:3000/fr/` and the `Getting Started` page is translated. - -:::caution - -In development, you can only use one locale at a same time. - -::: - -## Add a Locale Dropdown - -To navigate seamlessly across languages, add a locale dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'localeDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The locale dropdown now appears in your navbar: - -## Build your localized site - -Build your site for a specific locale: - -```bash -npm run build -- --locale fr -``` - -Or build your site to include all the locales at once: - -```bash -npm run build -``` diff --git a/docs/i18n/es/docusaurus-theme-classic/footer.json b/docs/i18n/es/docusaurus-theme-classic/footer.json deleted file mode 100644 index d78d4db3101..00000000000 --- a/docs/i18n/es/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Comunidad", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Código fuente", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discordia", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matriz", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Servidor", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Documentos", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Compartido", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Guía de contribución", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Aviso", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Política de privacidad de la aplicación", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Política de privacidad del sitio web", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logo Linwood", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/es/docusaurus-theme-classic/navbar.json b/docs/i18n/es/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 62b15682be6..00000000000 --- a/docs/i18n/es/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flujo", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logo de flujo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Descargas", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Comunidad", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Más", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matriz", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discordia", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licencia", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/fi/code.json b/docs/i18n/fi/code.json deleted file mode 100644 index 6bab563c853..00000000000 --- a/docs/i18n/fi/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Aloittaminen", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Lataa Windowsille", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Lataa Linuxille", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Lataa Androidille", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Avaa web-sovellus", - "description": "homepage web button" - }, - "Downloads": { - "message": "Lataukset", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Ajan hallinta", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Hallitse aikaa ja automatisoi se.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Tapahtumien hallinta", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Ajoita tapahtumia, määritä käyttäjät siihen ja anna heille tehtäviä", - "description": "Features Event management description" - }, - "Your data": { - "message": "Sinun tietosi", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Kaikki voivat luoda oman palvelimen ja saada tietosi siitä.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Avoin lähdekoodi", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Sovellus ja palvelin ovat kaikki avointa lähdekoodia. Kaikki voivat osallistua!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Tämä sivu kaatui.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Sivua Ei Löytynyt", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Emme löytäneet mitä olit etsimässä.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Ota yhteyttä sivuston omistajaan, joka linkitti sinut alkuperäiseen URL-osoitteeseen ja kerro heille, että linkki on rikki.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "Huomautus", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "vaara", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "tiedot", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "varovaisuus", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Arkistoi", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Arkistoi", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Vieritä takaisin ylös", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blogilistan sivujen navigointi", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Uudemmat Merkinnät", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Vanhemmat Tietueet", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blogisivun navigointi", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Uudemmat Viestit", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Vanhemmat Viestit", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Yksi viesti{count} viestiä", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Näytä Kaikki Tagit", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Vaihda tumman ja valon tilan välillä (tällä hetkellä {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "tumma tila", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "vaalea tila", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Murupolku", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} kohdetta", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs sivujen navigointi", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Edellinen", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Seuraava", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Yksi doc tagged{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versio: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Tämä ei ole julkaissut dokumentaatiota {siteTitle} {versionLabel} versioon.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Tämä on dokumentaatio kohteelle {siteTitle} {versionLabel}, jota ei enää ylläpidetä aktiivisesti.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Ajan tasalla olevat asiakirjat löydät {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "uusin versio", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Muokkaa tätä sivua", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Suora linkki osoitteeseen {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " esittäjä {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Viimeksi päivitetty{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versiot", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tunnisteet:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Sulje", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blogi viimeaikaiset viestit navigointi", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Kopioitu", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Kopioi koodi leikepöydälle", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopioi", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Vaihda sana wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Ensisijainen", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Kielet", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Tällä sivulla", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Yksi minuutti lukemista{readingTime} min luettu", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Lue Lisää", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Lue lisää {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Kotisivu", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Pienennä sivupalkki", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Pienennä sivupalkki", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Sulje navigointipalkki", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Takaisin päävalikkoon", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Vaihda navigointipalkkia", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Uusi versio saatavilla", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Päivitä", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Sulje", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Yritä uudelleen", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Siirry pääsisältöön", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tunnisteet", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "varoitus", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Laajenna sivupalkin luokka '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Tiivistä sivupalkin kategoria '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Listaamaton sivu", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Tätä sivua ei ole listattu. Hakukoneet eivät indeksoi sitä, ja vain käyttäjät, joilla on suora linkki, voivat käyttää sitä.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} kohdetta", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3d41c1f9542..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Seuraava", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 7abfecdae93..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Muutosloki -hide_title: true -sidebar_label: Muutosloki ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 987d6aba821..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Käytännesäännöt ja -säännöt -hide_title: true -sidebar_label: Käytännesäännöt ja -säännöt ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index afd2eec8706..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Osallistuminen" -hide_title: true -sidebar_label: "Osallistuminen" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 572b52786fc..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Lataukset" -} \ No newline at end of file diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 67a59d4dc52..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Vakaa julkaisuversio](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Järjestelmää koskevat vähimmäisvaatimukset - -* Android 5.0 (API taso 21) tai uudempi. - -## Binaries - -
- - Vakaa - - - Yöllä - -
- -Lue lisää illallisesta Flow versiosta [täältä](/nightly). diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 105e77d3cbc..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Rakenna oma" -sidebar_position: 1 ---- - -1. Asenna git ja leikkuri (beta) -2. Monista tietovarasto -3. Siirry sovelluksen hakemistoon -4. Käytä leikkuri työkalua sovelluksen kokoamiseen - * `flutter build apk` - * `letter build appbundle` - * `leikkuri rakentaa web` - * `leikkuri rakentaa linux` - * `leikkurien rakennusikkunat` -5. Käännetyt tiedostot ovat koostamishakemistossa diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index a9c357e7cb9..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Lataukset ---- - -![Vakaa julkaisuversio](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Valitse alustasi - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Palvelin - Selfhosting - -
- -## Hyödyllisiä linkkejä - -- [Muutosloki](changelog) -- [Vanhemmat julkaisut](https://github.com/LinwoodDev/Flow/releases) -- [Uusin julkistus](https://github.com/LinwoodDev/Flow/releases/latest) -- [Tuki](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index f209488543f..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Vakaa julkaisuversio](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Ole hyvä ja käytä flatpak versiota, jos mahdollista. Muuten sinun täytyy asentaa `libsecret-1-dev` ja `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Kannettava - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Kannettava - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Lue lisää illallisesta Flow versiosta [täältä](/nightly). diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index d85a0e49fa8..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Vakaa julkaisuversio](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Linkit - - diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 30510646ba6..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Kiitos, että lataat -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Kiitos, että lataat - - - -## Windows SmartScreen - - -Windows varoittaa käyttäjiä asentaessaan ohjelmistoa ilman sertifikaattia. - -![Älykäs näyttö](/img/smart-screen.png) - -Sovelluksen asentamiseksi sinun täytyy klikata "More info". - -![Älykäs näyttö lisätieto](/img/smart-screen-more-info.png) - -Sitten, klikkaa "Suorita joka tapauksessa". - -
diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index cc49e656dbf..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Vakaa julkaisuversio](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -On erittäin helppo isännöidä omaa virtaus web-palvelin. - -## Yksinkertainen palvelin - -Asenna leikkuri ja rakenna sovellus käyttäen: - -```bash -cd sovellus -leikkuri pubi saada -leikkuri rakentaa web -``` - -Kaikki tiedostot ovat `app/build/web` hakemistossa. - -## Telakoitsija - -Kloonaa repo ja rakenna `Dockerfile` käyttäen: `docker build -t linwood-flow`. Käynnistä palvelin käyttäen: `telakan ajo -p 8080:8080 -d puuvirtaus`. diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 5c943bb6ead..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Kiitos, että lataat -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Kiitos, että lataat - - - -
diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 49f01f429bc..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Verkko" -sidebar_position: 5 ---- - -![Vakaa julkaisuversio](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Tämä on progressiivinen web-sovellus. Voit asentaa sen selaimellesi ja käyttää sitä offline-tilassa. Kaikki tiedot on tallennettu selaimeesi. - -::: - - -## Linkit - - - -## Versiot - -Tärkeimmät ja esikatselu (kehittää) versiot Flow eivät ole samat kuin vakaat ja yölliset versiot. Ne eivät liity suoraan vapautukseen. Niitä päivitetään heti, kun uusi toimitus on työnnetty arkistoon. diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 4355b81be12..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Ikkunat" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Vakaa julkaisuversio](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Järjestelmää koskevat vähimmäisvaatimukset - -* Windows 10 tai uudempi. - -## Binaries - -
-
- -
    -
  • - - Asetukset - -
  • -
  • - - Kannettava - -
  • -
-
-
- -
    -
  • - - Asetukset - -
  • -
  • - - Kannettava - -
  • -
-
-
- -Lue lisää illallisesta Flow versiosta [täältä](/nightly). diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 7414230b8e8..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Usein Kysytyt Kysymykset" -sidebar_label: "UKK" ---- - -Tässä muutamia usein kysyttyjä kysymyksiä. diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e5e31ac537a..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Koti" -sidebar_position: 0 -title: "Yhteisö" ---- - -Tervetuloa yhteisön osioon. - -## Kiitokset - -Erityinen kiitos kuuluu seuraaville: - -* [Flutter](https://github.com/flutter/flutter) tämän käyttökelpoisen crossplatform ui -kehyksen tarjoamiseksi -* [window_manager](https://github.com/leanflutter/window_manager) kaikille tämän hyödyllisen työpöytäikkunan ominaisuuksille -* [Docusaurus](https://github.com/facebook/docusaurus) helppokäyttöiseen staattiseen reagointidokumentointikehykseen - -Kaikki muut lisenssit löytyvät asetuksista. - -## Hyödyllisiä linkkejä - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matriisi](https://go.linwood.dev/matrix) diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 52af65e36c4..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Yölliset Rakennukset" -slug: "/nightly" ---- - -::varoitus - -Älä käytä Flow yöllistä versiota tuotantoa varten. - -::: - -Nightly builds on suunniteltu antamaan sinulle mahdollisuuden testata uusinta versiota ja saada uusimmat ominaisuudet ja antaa palautetta. - -## Hanki rakennukset - -Mene alustasi lataussivujen luo. Kaikki yölliset rakennukset julkaistaan myös githubin esijulkaisuna. diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 3ce29bb980e..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Esi- 1.0 versiot" ---- - -Näitä versioita ei tueta enää. Uudet versiot ovat saatavilla [versioissa](versions.md). - -| Versio | Tuettu | | -| ------ | ------ | | -| | | | diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index d1057bfc6c7..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Yksityisyyden Suoja" -slug: /privacypolicy ---- - -Tämä on sovelluksen yksityisyyden suojaa koskeva käytäntö. Lue se huolellisesti. Klikkaa [tästä](https://go.linwood.dev/privacypolicy) ja lue sivuston yksityisyyskäytäntö. - -CodeDoctor rakensi Flow sovelluksen avoimen lähdekoodin sovellukseksi. Tämä SERVICE on CodeDoctor ilman kustannuksia, ja se on tarkoitettu käytettäviksi sellaisenaan. - -Tätä sivua käytetään tiedottamaan kävijöille koskien minun käytäntöjäni kokoelmassa, Henkilötietojen käyttö ja luovuttaminen, jos joku on päättänyt käyttää palveluani. - -Jos päätät käyttää palveluani, niin suostut keräämään ja käyttämään tähän käytäntöön liittyviä tietoja. Henkilökohtaisia tietoja, joita kerään, käytetään -palvelun tarjoamiseen ja parantamiseen. En käytä tai jaa tietojasi kenenkään kanssa paitsi tässä tietosuojakäytännössä kuvatulla tavalla. - -Tässä tietosuojakäytännössä käytettävillä termeillä on samat merkitykset kuin käyttöehdoillamme, joka on käytettävissä virtalähteellä, ellei tässä tietosuojakäytännössä toisin määrätä. - -**Tietojen kerääminen ja käyttö** - -Saadakseni paremman kokemuksen, kun käytät palveluamme, saatan vaatia sinua antamaan meille tiettyjä henkilökohtaisia tietoja. Tiedot, jotka pyydän, säilyvät laitteellesi ja ei ole kerätty minun millään tavalla. - -Sovellus käyttää kolmannen osapuolen palveluja, jotka voivat kerätä tietoja, joita käytetään tunnistamiseen. - -Linkki kolmannen osapuolen palveluntarjoajien tietosuojakäytäntöön, jota sovellus käyttää - -* [Google Play -palvelut](https://www.google.com/policies/privacy/) - -**Evästeet** - -Evästeet ovat tiedostoja, joissa on pieni määrä tietoja, joita käytetään yleisesti nimettöminä yksilöllisinä tunnisteina. Nämä lähetetään selaimeesi sivustoilta, joilla käyt ja jotka tallennetaan laitteesi sisäiseen muistiin. - -Tämä palvelu ei käytä näitä evästeitä nimenomaisesti. Sovellus voi kuitenkin käyttää kolmannen osapuolen koodia ja kirjastoja, jotka käyttävät evästeitä tietojen keräämiseen ja palveluiden parantamiseen. Sinulla on mahdollisuus joko hyväksyä tai hylätä nämä evästeet ja tietää, milloin eväste lähetetään laitteellesi. Jos päätät kieltäytyä evästeistämme, et ehkä voi käyttää joitakin osia tästä palvelusta. - -**Palveluntarjoajat** - -Voin palkata kolmannen osapuolen yrityksiä ja yksityishenkilöitä seuraavista syistä: - -* Palvelun helpottaminen -* Palvelun tarjoaminen meidän puolestamme. -* Palveluihin liittyvien palvelujen suorittamiseen; tai -* Auttaaksesi meitä analysoimaan sitä, miten palveluamme käytetään. - -Haluan ilmoittaa tämän palvelun käyttäjille, että näillä kolmansilla osapuolilla on pääsy henkilökohtaisiin tietoihisi. Syynä tähän on se, että he hoitavat heille osoitetut tehtävät meidän puolestamme. Ne ovat kuitenkin velvollisia olemaan paljastamatta tai käyttämättä tietoja mihinkään muuhun tarkoitukseen. - -**Turvallisuus** - -Arvostan luottamustasi tarjota meille henkilökohtaisia tietojasi, joten pyrimme käyttämään kaupallisesti hyväksyttäviä keinoja niiden suojaamiseksi. Mutta muista, että ei ole menetelmää lähetyksen internetissä, tai menetelmä elektronisen tallennustilan on 100% turvallinen ja luotettava, enkä voi taata sen ehdotonta turvallisuutta. - -**Linkit muihin sivustoihin** - -Tämä palvelu voi sisältää linkkejä muille sivustoille. Jos klikkaat kolmannen osapuolen linkkiä, sinut ohjataan kyseiselle sivustolle. Huomaa, että nämä ulkoiset sivustot eivät toimi minä. Siksi olen vahvasti neuvoo tarkistamaan Tietosuojakäytäntö näiden verkkosivujen. Minulla ei ole mitään valtaa eikä ota vastuuta minkään kolmannen osapuolen sivustojen tai palvelujen sisällöstä, tietosuojakäytännöistä tai käytännöistä. - -**Muutokset tähän tietosuojakäytäntöön** - -Voin päivittää tietosuojakäytäntöämme aika ajoin. Näin ollen sinua kehotetaan tarkastelemaan tätä sivua säännöllisin väliajoin. Ilmoitan sinulle kaikista muutoksista lähettämällä uuden Privacy Policy tällä sivulla. - -Tämä politiikka on tehokas kuin 2021-02-07 - -**Ota Yhteyttä** - -Jos sinulla on kysyttävää tai ehdotuksia tietosuojakäytännöstäni, älä epäröi ottaa minuun yhteyttä osoitteeseen contact@linwood.dev. - -Tämä tietosuojakäytäntö sivu on luotu [privacypolicytemplate.net](https://privacypolicytemplate.net) ja muokattu / luotu [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs/current.json b/docs/i18n/fi/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index c7358c9c037..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Seuraava", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "palvelin", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/fi/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 3da4656eb3a..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Johdanto - -Tulossa pian diff --git a/docs/i18n/fi/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/fi/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 14aad9df879..00000000000 --- a/docs/i18n/fi/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Virheiden luettelo - -| Virhekoodi | HTTP tilakoodi | Kuvaus | -| ---------- | -------------- | ----------------------- | -| `0` | `404` | Sivua ei löydy | -| `1` | `404` | Virheellinen api versio | -| `2` | `403` | Kielletty | -| `3` | `400` | Virheellinen pyyntö | diff --git a/docs/i18n/fi/docusaurus-theme-classic/footer.json b/docs/i18n/fi/docusaurus-theme-classic/footer.json deleted file mode 100644 index 6142edb7978..00000000000 --- a/docs/i18n/fi/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Yhteisö", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Lähdekoodi", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Oikeudellinen", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matriisi", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Sovellus", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Palvelin", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Asiakirjat", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Jaettu", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Rahoitusosuuden opas", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Jälki", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Sovelluksen yksityisyyden suoja", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Sivuston tietosuojakäytäntö (Privacy Policy)", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Tekijänoikeus ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwoodin Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/fi/docusaurus-theme-classic/navbar.json b/docs/i18n/fi/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 1caed1e51b0..00000000000 --- a/docs/i18n/fi/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Virtaus", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Virtauksen Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Opastus", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Lataukset", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Yhteisö", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Lisää", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matriisi", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blogi", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdiini", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Lisenssi", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/fr/code.json b/docs/i18n/fr/code.json deleted file mode 100644 index 60c0ff16b97..00000000000 --- a/docs/i18n/fr/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Commencer", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Télécharger pour Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Télécharger pour Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Télécharger pour Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Ouvrir l'application web", - "description": "homepage web button" - }, - "Downloads": { - "message": "Téléchargements", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Gestion du temps", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Gérer l'efficacité du temps et l'automatiser.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Gestion des événements", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Programmer des événements, y assigner des utilisateurs et leur donner des tâches", - "description": "Features Event management description" - }, - "Your data": { - "message": "Vos données", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Tout le monde peut créer son propre serveur et y avoir vos données.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "L'application et le serveur sont tous open source. Tout le monde peut contribuer!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Cette page a planté.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page introuvable", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Nous n'avons pas trouvé ce que vous cherchiez.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Veuillez contacter le propriétaire du site qui vous a lié à l'URL d'origine et leur faire savoir que leur lien est cassé.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "Le danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "Infos", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "précaution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Retourner vers le haut", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navigation des pages de la liste des blogs", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Nouvelles entrées", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Anciennes entrées", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Navigation de la page de publication du blog", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Nouvelle publication", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Ancien message", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Un message |{count} messages", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} taggé avec \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Voir tous les tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Basculer entre le mode sombre et le mode clair (actuellement {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "mode sombre", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "mode lumière", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Fil d'Ariane", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} éléments", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navigation des pages de documentation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Précédent", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Suivant", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Un doc taggé |{count} docs taggés", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} avec \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version : {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Ceci est une documentation non publiée pour la version de {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Il s'agit de la documentation pour {siteTitle} {versionLabel}, qui n'est plus activement maintenue.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Pour une documentation à jour, consultez la {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "dernière version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Modifier cette page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Lien direct vers {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " le {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " par {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Dernière mise à jour{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags :", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Fermer", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Navigation des articles récents dans le blog", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copié", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copier le code dans le presse-papiers", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copie", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Afficher/Masquer les mots", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Principal", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Langues", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Sur cette page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Lecture d'une minute |{readingTime} min de lecture", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "En savoir plus", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "En savoir plus sur {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Page d'accueil", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Réduire la barre latérale", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Réduire la barre latérale", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Fermer la barre de navigation", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": " Retour au menu principal", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Basculer la barre de navigation", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Nouvelle version disponible", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Rafraîchir", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Fermer", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Réessayez", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Passer au contenu principal", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "avertissement", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Développer la catégorie de la barre latérale '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Réduire la catégorie de la barre latérale '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Page non listée", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Cette page n'est pas répertoriée. Les moteurs de recherche ne l'indexeront pas, et seuls les utilisateurs ayant un lien direct peuvent y accéder.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} éléments", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 67494164bff..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Suivant", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord.", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 84ca9b0abb4..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Historique des modifications -hide_title: true -sidebar_label: Historique des modifications ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index ac5f706db38..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code de conduite -hide_title: true -sidebar_label: Code de conduite ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index e918d419759..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contribuer" -hide_title: true -sidebar_label: "Contribuer" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 26dcffb536a..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Téléchargements" -} \ No newline at end of file diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index d45c9645652..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Version de la version stable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Version de la sortie nocturne](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Configuration minimale requise - -* Android 5.0 (API niveau 21) ou supérieur. - -## Binaires - -
- - Écurie - - - Nuit - -
- -En savoir plus sur la version nocturne de Flow [ici](/nightly). diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 5a610ccd398..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Construisez la vôtre" -sidebar_position: 1 ---- - -1. Installer git et flutter (bêta) -2. Cloner le dépôt -3. Naviguer vers le répertoire de l'application -4. Utilisez l'outil flotteur pour compiler l'application - * `apk de construction flutter` - * `appbundle de construction de flotteur` - * `web de construction de flotteur` - * `linux de construction de flotteur` - * `fenêtres de construction de flotteur` -5. Les fichiers compilés sont dans le répertoire de compilation diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index c55afbb1dd6..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Téléchargements ---- - -![Version de la version stable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Version de la sortie nocturne](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choisissez votre plateforme - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Serveur - Selfhosting - -
- -## Liens utiles - -- [Historique des modifications](changelog) -- [Anciennes versions](https://github.com/LinwoodDev/Flow/releases) -- [Dernière version](https://github.com/LinwoodDev/Flow/releases/latest) -- [Soutien](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 2b84ae693f3..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Version de la version stable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Version de la sortie nocturne](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Veuillez utiliser la version flatpak si possible. Sinon, vous devez installer `libsecret-1-dev` et `libjsoncpp-dev`. - -::: - -## Binaires - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -En savoir plus sur la version nocturne de Flow [ici](/nightly). diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 3fb629fbf10..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Version de la version stable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Version de la sortie nocturne](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Liens - - diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 16f369475d9..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Merci d'avoir téléchargé -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Merci d'avoir téléchargé - - - -## SmartScreen Windows - - -Windows avertit les utilisateurs lors de l'installation d'un logiciel sans certificat. - -![Écran intelligent](/img/smart-screen.png) - -Pour installer l'application, vous devez cliquer sur "Plus d'infos". - -![Plus d'informations sur l'écran intelligent](/img/smart-screen-more-info.png) - -Ensuite, cliquez sur "Exécuter quand même". - -
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 06ac9385a3e..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Version de la version stable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Version de la sortie nocturne](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Il est très facile d'héberger votre propre serveur web de flux. - -## Serveur simple - -Installez flotter et construisez l'application en utilisant : - -```bash -cd app -flotter pub obtenir -flutter build web -``` - -Tous les fichiers se trouvent dans le répertoire `app/build/web`. - -## Docker - -Clonez le dépôt et construisez le `Dockerfile` en utilisant : `docker build -t linwood-flow`. Démarrez le serveur en utilisant : `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 7fc5ddc1a3c..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Merci d'avoir téléchargé -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Merci d'avoir téléchargé - - - -
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 4302cf23f6e..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Version de la version stable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Version de la sortie nocturne](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Ceci est une application web progressive. Vous pouvez l'installer sur votre navigateur et l'utiliser hors ligne. Toutes les données sont stockées dans votre navigateur. - -::: - - -## Liens - - - -## Versions - -Les versions principale et la version preview (développement) de Flow ne sont pas les mêmes que les versions stable et nocturne. Ils ne sont pas directement associés à une publication. Ils sont mis à jour dès qu'un nouveau commit est poussé dans le référentiel. diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index e6949153b72..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Fenêtres" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Version de la version stable](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Version de la sortie nocturne](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Configuration minimale requise - -* Windows 10 ou supérieur. - -## Binaires - -
-
- -
    -
  • - - Configuration - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Configuration - -
  • -
  • - - Portable - -
  • -
-
-
- -En savoir plus sur la version nocturne de Flow [ici](/nightly). diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 04c28371ac7..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Foire aux questions" -sidebar_label: "Foire Aux Questions" ---- - -Voici quelques questions fréquemment posées. diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 726a5b7c759..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Domicile" -sidebar_position: 0 -title: "Communauté" ---- - -Bienvenue dans la section de la communauté. - -## Remerciements - -Un remerciement spécial va à: - -* [Flutter](https://github.com/flutter/flutter) pour fournir ce framework interplateforme utile -* [window_manager](https://github.com/leanflutter/window_manager) pour toutes ces fonctionnalités de bureau utiles -* [Docusaurus](https://github.com/facebook/docusaurus) pour un framework de documentation statique de réaction facile à utiliser - -Toutes les autres licences peuvent être trouvées dans les paramètres. - -## Liens utiles - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord.](https://go.linwood.dev/discord) -* [Matrice](https://go.linwood.dev/matrix) diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 8dfb4dc9bc3..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Compilations nocturnes" -slug: "/nightly" ---- - -:::avertissement - -N'utilisez pas la version nocturne de Flow pour la production. - -::: - -Les versions nocturnes sont conçues pour vous donner la possibilité de tester la dernière version et d'obtenir les dernières fonctionnalités et de donner des commentaires. - -## Obtenir les builds - -Allez sur les pages de téléchargement de votre plateforme. Toutes les versions nightly sont également publiées en tant que pré-version sur github. diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 74a52a50c09..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Versions antérieures à 1.0" ---- - -Ces versions ne sont plus supportées. De nouvelles versions sont disponibles à [versions](versions.md). - -| Version | Supporté | | -| ------- | -------- | | -| | | | diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index dd38f4e1fa5..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Politique de confidentialité" -slug: /privacypolicy ---- - -Ceci est la politique de confidentialité de l'application. Veuillez le lire attentivement. Cliquez [ici](https://go.linwood.dev/privacypolicy) pour lire la politique de confidentialité du site Web. - -CodeDoctor a construit l'application Flow en tant qu'application Open Source. Ce SERVICE est fourni par CodeDoctor sans frais et est destiné à être utilisé tel quel. - -Cette page est utilisée pour informer les visiteurs de mes politiques avec la collection, l'utilisation et la divulgation de renseignements personnels si quelqu'un a décidé d'utiliser mon Service. - -Si vous choisissez d'utiliser mon Service, vous acceptez la collecte et l'utilisation de l'information relative à cette politique. Les informations personnelles que je collecte sont utilisées pour fournir et améliorer le service . Je n'utiliserai ni ne partagerai vos informations qu'avec la présente politique de confidentialité. - -Les termes utilisés dans cette politique de confidentialité ont les mêmes significations que dans nos conditions générales, qui est accessible à Flow sauf indication contraire dans la présente Politique de confidentialité. - -**Collecte et utilisation des informations** - -Pour une meilleure expérience, tout en utilisant notre Service, je peux vous demander de nous fournir certaines informations personnelles identifiables. Les informations que je demande seront conservées sur votre appareil et ne sont collectées par moi d'aucune façon. - -L'application utilise des services tiers qui peuvent recueillir des informations utilisées pour vous identifier. - -Lien vers la politique de confidentialité des fournisseurs de services tiers utilisés par l'application - -* [Services Google Play](https://www.google.com/policies/privacy/) - -**Cookies** - -Les cookies sont des fichiers contenant une petite quantité de données qui sont couramment utilisés comme identificateurs uniques anonymes. Celles-ci sont envoyées à votre navigateur à partir des sites Web que vous visitez et sont stockées sur la mémoire interne de votre appareil. - -Ce Service n'utilise pas explicitement ces "cookies". Cependant, l'application peut utiliser du code de tiers et des bibliothèques qui utilisent des « cookies » pour recueillir des informations et améliorer leurs services. Vous avez l’option d’accepter ou de refuser ces cookies et de savoir quand un cookie est envoyé à votre appareil. Si vous choisissez de refuser nos cookies, il se peut que vous ne puissiez pas utiliser certaines parties de ce service. - -**Fournisseurs de services** - -Je peux employer des entreprises et des particuliers tiers pour les raisons suivantes : - -* Pour faciliter notre service ; -* Fournir le service en notre nom ; -* Pour effectuer des services liés au service ; ou -* Pour nous aider à analyser comment notre Service est utilisé. - -Je veux informer les utilisateurs de ce Service que ces tiers ont accès à vos informations personnelles. La raison est d'accomplir les tâches qui leur sont assignées en notre nom. Cependant, ils sont obligés de ne pas divulguer ou d'utiliser ces informations à d'autres fins. - -**Sécurité** - -J'apprécie votre confiance en nous fournissant vos informations personnelles, c'est pourquoi nous nous efforçons d'utiliser des moyens commercialement acceptables pour les protéger. Mais rappelez-vous qu'il n'y a pas de méthode de transmission sur Internet, ou la méthode de stockage électronique est 100% sécurisée et fiable, et je ne peux pas garantir sa sécurité absolue. - -**Liens vers d'autres sites** - -Ce Service peut contenir des liens vers d'autres sites. Si vous cliquez sur un lien tiers, vous serez dirigé vers ce site. Notez que ces sites externes ne sont pas exploités par moi. Par conséquent, je vous conseille fortement de consulter la politique de confidentialité de ces sites Web. Je n'ai aucun contrôle sur et n'assume aucune responsabilité pour le contenu, les politiques de confidentialité ou les pratiques de tout site ou service tiers. - -**Modifications de cette politique de confidentialité** - -Je peux mettre à jour notre politique de confidentialité de temps à autre. Il est donc conseillé de consulter régulièrement cette page pour toute modification. Je vous informerai de toute modification en publiant la nouvelle politique de confidentialité sur cette page . - -Cette politique est en vigueur à partir de 2021-02-07 - -**Contactez-nous** - -Si vous avez des questions ou des suggestions au sujet de ma politique de confidentialité, n'hésitez pas à me contacter à contact@linwood.dev. - -Cette page de politique de confidentialité a été créée sur [privacypolicytemplate.net](https://privacypolicytemplate.net) et modifiée/générée par [le générateur de politique de confidentialité des applications](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current.json b/docs/i18n/fr/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 52775e9264b..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Suivant", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "serveur", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb35060e0cf..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Bientôt disponible diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 71620289e2c..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Liste des erreurs - -| Code d'erreur | Code de statut HTTP | Libellé | -| ------------- | ------------------- | ------------------------- | -| `0` | `404` | Page introuvable | -| `1` | `404` | Version de l'api invalide | -| `2` | `403` | Interdit | -| `3` | `400` | Mauvaise requête | diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json deleted file mode 100644 index 135e4a6858b..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Basics", - "position": 2 -} diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md deleted file mode 100644 index 9ef99bbadd9..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -sidebar_position: 6 ---- - -# Congratulations! - -You have just learned the **basics of Docusaurus** and made some changes to the **initial template**. - -Docusaurus has **much more to offer**! - -Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**. - -Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610) - -## What's next? - -- Read the [official documentation](https://docusaurus.io/). -- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout) -- Add a [search bar](https://docusaurus.io/docs/search) -- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase) -- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support) diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index d893e1c74fd..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -sidebar_position: 3 ---- - -# Create a Blog Post - -Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed... - -## Create your first Post - -Create a file at `blog/2021-02-28-greetings.md`: - -```md title="blog/2021-02-28-greetings.md" ---- -slug: greetings -title: Greetings! -author: Steven Hansel -author_title: Docusaurus Contributor -author_url: https://github.com/ShinteiMai -author_image_url: https://github.com/ShinteiMai.png -tags: [greetings] ---- - -Congratulations, you have made your first post! - -Feel free to play around and edit this post as much you like. -``` - -A new blog post is now available at `http://localhost:3000/blog/greetings`. diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md deleted file mode 100644 index 66b58543d43..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Create a Document - -Documents are **groups of pages** connected through: - -- a **sidebar** -- **previous/next navigation** -- **versioning** - -## Create your first Doc - -Create a markdown file at `docs/hello.md`: - -```md title="docs/hello.md" -# Hello - -This is my **first Docusaurus document**! -``` - -A new document is now available at `http://localhost:3000/docs/hello`. - -## Configure the Sidebar - -Docusaurus automatically **creates a sidebar** from the `docs` folder. - -Add metadatas to customize the sidebar label and position: - -```diff title="docs/hello.md" -+ --- -+ sidebar_label: "Hi!" -+ sidebar_position: 3 -+ --- - - -# Hello - -This is my **first Docusaurus document**! -``` - -It is also possible to create your sidebar explicitly in `sidebars.js`: - -```diff title="sidebars.js" -module.exports = { - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', -- items: [...], -+ items: ['hello'], - }, - ], -}; -``` diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md deleted file mode 100644 index e7254eeae3b..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Create a Page - -Add **Markdown or React** files to `src/pages` to create a **standalone page**: - -- `src/pages/index.js` -> `localhost:3000/` -- `src/pages/foo.md` -> `localhost:3000/foo` -- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar` - -## Create your first React Page - -Create a file at `src/pages/my-react-page.js`: - -```jsx title="src/pages/my-react-page.js" -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function MyReactPage() { - return ( - -

My React page

-

This is a React page

-
- ); -} -``` - -A new page is now available at `http://localhost:3000/my-react-page`. - -## Create your first Markdown Page - -Create a file at `src/pages/my-markdown-page.md`: - -```mdx title="src/pages/my-markdown-page.md" -# My Markdown page - -This is a Markdown page -``` - -A new page is now available at `http://localhost:3000/my-markdown-page`. diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md deleted file mode 100644 index 492eae0276b..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -sidebar_position: 5 ---- - -# Deploy your site - -Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**). - -It builds your site as simple **static HTML, JavaScript and CSS files**. - -## Build your site - -Build your site **for production**: - -```bash -npm run build -``` - -The static files are generated in the `build` folder. - -## Deploy your site - -Test your production build locally: - -```bash -npm run serve -``` - -The `build` folder is now served at `http://localhost:3000/`. - -You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json deleted file mode 100644 index ca3f8e06408..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Extras", - "position": 3 -} diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md deleted file mode 100644 index 2a449098946..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Manage Docs Versions - -Docusaurus can manage multiple versions of your docs. - -## Create a docs version - -Release a version 1.0 of your project: - -```bash -npm run docusaurus docs:version 1.0 -``` - -The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created. - -Your docs now have 2 versions: - -- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs -- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs** - -## Add a Version Dropdown - -To navigate seamlessly across versions, add a version dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'docsVersionDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The docs version dropdown appears in your navbar: - -## Update an existing version - -It is possible to edit versioned docs in their respective folder: - -- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello` -- `docs/hello.md` updates `http://localhost:3000/docs/next/hello` diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md b/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md deleted file mode 100644 index 5568ca5b993..00000000000 --- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Translate your site - -Let's translate `docs/getting-started.md` to French. - -## Configure i18n - -Modify `docusaurus.config.js` to add support for the `fr` locale: - -```js title="docusaurus.config.js" -module.exports = { - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - }, -}; -``` - -## Translate a doc - -Copy the `docs/getting-started.md` file to the `i18n/fr` folder: - -```bash -mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/ - -cp docs/getting-started.md i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md -``` - -Translate `i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md` in French. - -## Start your localized site - -Start your site on the French locale: - -```bash -npm run start -- --locale fr -``` - -Your localized site is accessible at `http://localhost:3000/fr/` and the `Getting Started` page is translated. - -:::caution - -In development, you can only use one locale at a same time. - -::: - -## Add a Locale Dropdown - -To navigate seamlessly across languages, add a locale dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'localeDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The locale dropdown now appears in your navbar: - -## Build your localized site - -Build your site for a specific locale: - -```bash -npm run build -- --locale fr -``` - -Or build your site to include all the locales at once: - -```bash -npm run build -``` diff --git a/docs/i18n/fr/docusaurus-theme-classic/footer.json b/docs/i18n/fr/docusaurus-theme-classic/footer.json deleted file mode 100644 index 34ab4523c15..00000000000 --- a/docs/i18n/fr/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Communauté", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Code source", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Mentions légales", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord.", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrice", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Application", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Serveur", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Documents", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Partagé", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Guide de contribution", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Mentions légales", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Politique de confidentialité de l'application", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Politique de confidentialité du site web", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logo de bois de lin", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/fr/docusaurus-theme-classic/navbar.json b/docs/i18n/fr/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 755c4516847..00000000000 --- a/docs/i18n/fr/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flux", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logo de flux", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutoriel", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Téléchargements", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Communauté", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "En savoir plus", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrice", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord.", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blogue", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licence", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/he/code.json b/docs/i18n/he/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/he/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/he/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/he/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/he/docusaurus-plugin-content-docs/current.json b/docs/i18n/he/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/he/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/he/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/he/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/he/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/he/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/he/docusaurus-theme-classic/footer.json b/docs/i18n/he/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/he/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/he/docusaurus-theme-classic/navbar.json b/docs/i18n/he/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/he/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/hu/code.json b/docs/i18n/hu/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/hu/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs/current.json b/docs/i18n/hu/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/hu/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/hu/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/hu/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/hu/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/hu/docusaurus-theme-classic/footer.json b/docs/i18n/hu/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/hu/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/hu/docusaurus-theme-classic/navbar.json b/docs/i18n/hu/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/hu/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/it/code.json b/docs/i18n/it/code.json deleted file mode 100644 index 86b104029a5..00000000000 --- a/docs/i18n/it/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Per iniziare", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Scarica per Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Scarica per Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Scarica per Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Apri l'app web", - "description": "homepage web button" - }, - "Downloads": { - "message": "Download", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Gestione del tempo", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Gestire l'efficienza temporale e automatizzarla.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Gestione eventi", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Pianificare gli eventi, assegnare gli utenti e dare attività a loro", - "description": "Features Event management description" - }, - "Your data": { - "message": "I tuoi dati", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Ognuno può creare il proprio server e avere i tuoi dati su di esso.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "L'app e il server sono tutti open source. Tutti possono contribuire!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Questa pagina si è bloccata.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Pagina Non Trovata", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Non siamo riusciti a trovare quello che stavi cercando.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Si prega di contattare il proprietario del sito che ti ha collegato all'URL originale e fargli sapere che il loro link è rotto.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "nota", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "pericolo", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "cautela", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archivio", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archivio", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scorri verso l'alto", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navigazione pagina lista blog", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Nuove Voci", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Voci Anziane", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Navigazione pagina post del blog", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Post Più Recente", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Post Più Vecchio", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Un post{count} post", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} taggato con \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Visualizza Tutte Le Etichette", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Passa tra modalità scura e luce (attualmente {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "modalità scura", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "modalità leggera", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} elementi", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navigazione pagine documenti", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Precedente", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Successivo", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Un doc taggato{count} docs taggato", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} con \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versione: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Questa documentazione non è stata rilasciata per la versione {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Questa è la documentazione per {siteTitle} {versionLabel}, che non è più attivamente mantenuta.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Per una documentazione aggiornata, vedi il {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "ultima versione", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Modifica questa pagina", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Link diretto a {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " il {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " da {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Ultimo aggiornamento{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versioni", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tag:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Chiudi", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recenti post di navigazione", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copiato", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copia il codice negli appunti", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copia", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Attiva/disattiva a capo automatico", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Principale", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Lingue", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Su questa pagina", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Un min ha letto{readingTime} min", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Leggi Di Più", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Per saperne di più su {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Pagina iniziale", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Comprimi barra laterale", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Comprimi barra laterale", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Chiudi barra di navigazione", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Torna al menu principale", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Attiva/Disattiva barra di navigazione", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Nuova versione disponibile", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Aggiorna", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Chiudi", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Riprova", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Passa al contenuto principale", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Etichette", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "avviso", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Espandi categoria barra laterale '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Comprimi categoria barra laterale '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Pagina non elencata", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Questa pagina non è elencata. I motori di ricerca non la indicizzeranno, e solo gli utenti che hanno un collegamento diretto possono accedervi.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} elementi", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/it/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3e1d50c0696..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Successivo", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 0d0003f2a10..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Codice di condotta -hide_title: true -sidebar_label: Codice di condotta ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 28050ad065c..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contribuire" -hide_title: true -sidebar_label: "Contribuire" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 8eb7352aefd..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Download" -} \ No newline at end of file diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 7833e77059d..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versione di rilascio stabile](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versione di rilascio notturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisiti minimi di sistema - -* Android 5.0 (livello API 21) o superiore. - -## Binari - -
- - Stabile - - - Notte - -
- -Leggi di più sulla versione notturna di Flow [qui](/nightly). diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 5cdf55508d4..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Costruisci il tuo" -sidebar_position: 1 ---- - -1. Installare git e flutter (beta) -2. Clona il repository -3. Vai alla directory dell'app -4. Utilizzare lo strumento flutter per compilare l'applicazione - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. I file compilati sono nella directory di compilazione diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index b0d0fbaa631..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Download ---- - -![Versione di rilascio stabile](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versione di rilascio notturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Scegli la tua piattaforma - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Link utili - -- [Changelog](changelog) -- [Rilasci più vecchi](https://github.com/LinwoodDev/Flow/releases) -- [Ultima release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Supporto](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index ae5e427ab8e..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versione di rilascio stabile](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versione di rilascio notturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Si prega di utilizzare la versione flatpak se possibile. Altrimenti è necessario installare `libsecret-1-dev` e `libjsoncpp-dev`. - -::: - -## Binari - -
-
- -
    -
  • - - Portatile - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portatile - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Leggi di più sulla versione notturna di Flow [qui](/nightly). diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index eb9c7673bb0..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Versione di rilascio stabile](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versione di rilascio notturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Collegamenti - - diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index caa8b43e79a..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Grazie per il download -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Grazie per il download - - - -## Windows SmartScreen - - -Windows avvisa gli utenti durante l'installazione di software senza certificato. - -![Smart screen](/img/smart-screen.png) - -Per installare l'applicazione, è necessario cliccare su "Maggiori informazioni". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Poi, clicca su "Esegui comunque". - -
diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 0ab3f82cc50..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Versione di rilascio stabile](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versione di rilascio notturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -È molto facile ospitare il proprio server web di flusso. - -## Server semplice - -Installa flutter e crea l'app utilizzando: - -```bash -cd app -flutter pub get -flutter build web -``` - -Tutti i file sono nella directory `app/build/web`. - -## Docker - -Clona il repository e crea il file Docker `` utilizzando: `docker build -t linwood-flow`. Avvia il server utilizzando: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 220fdee504e..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Grazie per il download -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Grazie per il download - - - -
diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index b85af077f8c..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Versione di rilascio stabile](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versione di rilascio notturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Questa è un'applicazione web progressiva. Puoi installarlo sul tuo browser e usarlo offline. Tutti i dati sono memorizzati nel browser. - -::: - - -## Collegamenti - - - -## Versioni - -Le versioni principali e quelle di anteprima (sviluppo) di Flow non sono le stesse delle versioni stabili e notturne. Non sono direttamente associati a una liberazione. Essi vengono aggiornati non appena un nuovo commit viene inviato al repository. diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b8cd6dbd0f5..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Finestre" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versione di rilascio stabile](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versione di rilascio notturno](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisiti minimi di sistema - -* Windows 10 o superiore. - -## Binari - -
-
- -
    -
  • - - Configurazione - -
  • -
  • - - Portatile - -
  • -
-
-
- -
    -
  • - - Configurazione - -
  • -
  • - - Portatile - -
  • -
-
-
- -Leggi di più sulla versione notturna di Flow [qui](/nightly). diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index ba6b7c6dd8c..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Domande Frequenti" -sidebar_label: "FAQ" ---- - -Ecco alcune domande frequenti. diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index ed06cb1c752..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Benvenuti nella sezione della comunità. - -## Riconoscimenti - -Un ringraziamento speciale va a: - -* [Flutter](https://github.com/flutter/flutter) per fornire questo utile framework cross-platform ui -* [window_manager](https://github.com/leanflutter/window_manager) per tutte le utili funzioni della finestra desktop -* [Docusaurus](https://github.com/facebook/docusaurus) per un quadro di documentazione di reazione statica facile da usare - -Tutte le altre licenze possono essere trovate nelle impostazioni. - -## Link utili - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrice](https://go.linwood.dev/matrix) diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 8dacc3ad65a..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Costruzioni Notturne" -slug: "/nightly" ---- - -:::warning - -Non utilizzare la versione notturna di Flow per la produzione. - -::: - -Le build di notte sono progettate per darti la possibilità di testare l'ultima versione e ottenere le funzionalità più recenti e dare un feedback. - -## Ottieni le build - -Vai alle pagine di download della tua piattaforma. Tutte le costruzioni notturne vengono pubblicate anche come pre-release su github. diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index f418d347b93..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Versioni pre-1.0" ---- - -Queste versioni non sono più supportate. Le nuove versioni sono disponibili su [versioni](versions.md). - -| Versione | Supportato | | -| -------- | ---------- | | -| | | | diff --git a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/it/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 8ff288b8c4d..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Politica Sulla Privacy" -slug: /privacypolicy ---- - -Questa è l'informativa sulla privacy dell'app. Per piacere, la legga attentamente. Clicca [qui](https://go.linwood.dev/privacypolicy) per leggere la privacy policy del sito. - -CodeDoctor ha costruito l'app Flow come app Open Source. Questo SERVIZIO è fornito da CodeDoctor senza costi ed è destinato all'uso come è. - -Questa pagina è utilizzata per informare i visitatori sulle mie politiche con la collezione, uso e divulgazione dei Dati Personali se qualcuno ha deciso di utilizzare il mio Servizio. - -Se scegliete di utilizzare il mio servizio, accettate la raccolta e l'uso di informazioni in relazione a questa politica. I Dati Personali che raccolgo vengono utilizzati per fornire e migliorare il Servizio . Non userò o condividerò le tue informazioni con nessuno se non come descritto nella presente Informativa sulla privacy. - -I termini utilizzati nella presente Informativa sulla privacy hanno lo stesso significato dei nostri Termini e Condizioni, che è accessibile a Flow se non diversamente definito nella presente Informativa sulla privacy. - -**Raccolta e utilizzo delle informazioni** - -Per una migliore esperienza, durante l'utilizzo del nostro Servizio, posso richiederti di fornirci alcune informazioni personali identificabili. Le informazioni che richiedo verranno conservate sul tuo dispositivo e non vengono raccolte da me in alcun modo. - -L'app utilizza servizi di terze parti che potrebbero raccogliere informazioni utilizzate per identificarti. - -Link all'informativa sulla privacy dei fornitori di servizi terzi utilizzati dall'app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookie** - -I cookie sono file con una piccola quantità di dati comunemente utilizzati come identificatori unici anonimi. Questi vengono inviati al tuo browser dai siti web che visiti e vengono memorizzati sulla memoria interna del tuo dispositivo. - -Questo Servizio non utilizza questi “cookie” esplicitamente. Tuttavia, l'app può utilizzare codici di terze parti e librerie che utilizzano “cookie” per raccogliere informazioni e migliorare i loro servizi. Hai la possibilità di accettare o rifiutare questi cookie e di sapere quando viene inviato un cookie al tuo dispositivo. Se scegli di rifiutare i nostri cookie, potresti non essere in grado di utilizzare alcune porzioni di questo Servizio. - -**Fornitori Di Servizi** - -Posso impiegare società e individui terzi per i seguenti motivi: - -* Per facilitare il nostro Servizio; -* Fornire il Servizio per nostro conto; -* Per eseguire servizi connessi al servizio; o -* Per aiutarci ad analizzare come viene utilizzato il nostro Servizio. - -Voglio informare gli utenti di questo Servizio che queste terze parti hanno accesso alle tue Informazioni Personali. Il motivo è quello di svolgere i compiti loro assegnati per nostro conto. Essi sono tuttavia obbligati a non divulgare o utilizzare le informazioni per altri scopi. - -**Sicurezza** - -Apprezzo la vostra fiducia nel fornirci le vostre informazioni personali, così ci sforziamo di utilizzare mezzi commercialmente accettabili per proteggerle. Ma ricordate che nessun metodo di trasmissione su internet, o metodo di archiviazione elettronica è 100% sicuro e affidabile, e non posso garantire la sua assoluta sicurezza. - -**Collegamenti ad altri siti** - -Questo servizio può contenere collegamenti ad altri siti. Se clicchi su un link di terze parti, verrai indirizzato a quel sito. Nota che questi siti esterni non sono gestiti da me. Pertanto, vi consiglio vivamente di rivedere la Privacy Policy di questi siti web. Non ho alcun controllo e non assumo alcuna responsabilità per i contenuti, le politiche sulla privacy o le pratiche di siti o servizi di terze parti. - -**Modifiche alla presente informativa sulla privacy** - -Potrei aggiornare di tanto in tanto la nostra Informativa sulla privacy. Pertanto, si consiglia di rivedere questa pagina periodicamente per eventuali modifiche. Ti informerò di eventuali modifiche pubblicando la nuova Informativa sulla privacy su questa pagina . - -Questa politica è efficace a partire dal 2021-02-07 - -**Contattaci** - -Se avete domande o suggerimenti sulla mia Informativa sulla privacy, non esitate a contattarmi a contact@linwood.dev. - -Questa pagina di privacy policy è stata creata su [privacypolicytemplate.net](https://privacypolicytemplate.net) e modificata/generata da [Generatore di App Privacy Policy](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current.json b/docs/i18n/it/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a6671680a40..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Successivo", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 50782a279ee..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduzione - -In arrivo diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index c9f7df9814d..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Elenco degli errori - -| Codice di errore | Codice di stato HTTP | Descrizione | -| ---------------- | -------------------- | ----------------------- | -| `0` | `404` | Pagina non trovata | -| `1` | `404` | Versione API non valida | -| `2` | `403` | Vietato | -| `3` | `400` | Richiesta errata | diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json deleted file mode 100644 index 135e4a6858b..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Basics", - "position": 2 -} diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md deleted file mode 100644 index 9ef99bbadd9..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -sidebar_position: 6 ---- - -# Congratulations! - -You have just learned the **basics of Docusaurus** and made some changes to the **initial template**. - -Docusaurus has **much more to offer**! - -Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**. - -Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610) - -## What's next? - -- Read the [official documentation](https://docusaurus.io/). -- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout) -- Add a [search bar](https://docusaurus.io/docs/search) -- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase) -- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support) diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index d893e1c74fd..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -sidebar_position: 3 ---- - -# Create a Blog Post - -Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed... - -## Create your first Post - -Create a file at `blog/2021-02-28-greetings.md`: - -```md title="blog/2021-02-28-greetings.md" ---- -slug: greetings -title: Greetings! -author: Steven Hansel -author_title: Docusaurus Contributor -author_url: https://github.com/ShinteiMai -author_image_url: https://github.com/ShinteiMai.png -tags: [greetings] ---- - -Congratulations, you have made your first post! - -Feel free to play around and edit this post as much you like. -``` - -A new blog post is now available at `http://localhost:3000/blog/greetings`. diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md deleted file mode 100644 index 66b58543d43..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Create a Document - -Documents are **groups of pages** connected through: - -- a **sidebar** -- **previous/next navigation** -- **versioning** - -## Create your first Doc - -Create a markdown file at `docs/hello.md`: - -```md title="docs/hello.md" -# Hello - -This is my **first Docusaurus document**! -``` - -A new document is now available at `http://localhost:3000/docs/hello`. - -## Configure the Sidebar - -Docusaurus automatically **creates a sidebar** from the `docs` folder. - -Add metadatas to customize the sidebar label and position: - -```diff title="docs/hello.md" -+ --- -+ sidebar_label: "Hi!" -+ sidebar_position: 3 -+ --- - - -# Hello - -This is my **first Docusaurus document**! -``` - -It is also possible to create your sidebar explicitly in `sidebars.js`: - -```diff title="sidebars.js" -module.exports = { - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', -- items: [...], -+ items: ['hello'], - }, - ], -}; -``` diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md deleted file mode 100644 index e7254eeae3b..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Create a Page - -Add **Markdown or React** files to `src/pages` to create a **standalone page**: - -- `src/pages/index.js` -> `localhost:3000/` -- `src/pages/foo.md` -> `localhost:3000/foo` -- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar` - -## Create your first React Page - -Create a file at `src/pages/my-react-page.js`: - -```jsx title="src/pages/my-react-page.js" -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function MyReactPage() { - return ( - -

My React page

-

This is a React page

-
- ); -} -``` - -A new page is now available at `http://localhost:3000/my-react-page`. - -## Create your first Markdown Page - -Create a file at `src/pages/my-markdown-page.md`: - -```mdx title="src/pages/my-markdown-page.md" -# My Markdown page - -This is a Markdown page -``` - -A new page is now available at `http://localhost:3000/my-markdown-page`. diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md deleted file mode 100644 index 492eae0276b..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -sidebar_position: 5 ---- - -# Deploy your site - -Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**). - -It builds your site as simple **static HTML, JavaScript and CSS files**. - -## Build your site - -Build your site **for production**: - -```bash -npm run build -``` - -The static files are generated in the `build` folder. - -## Deploy your site - -Test your production build locally: - -```bash -npm run serve -``` - -The `build` folder is now served at `http://localhost:3000/`. - -You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json deleted file mode 100644 index ca3f8e06408..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Extras", - "position": 3 -} diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md deleted file mode 100644 index 2a449098946..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Manage Docs Versions - -Docusaurus can manage multiple versions of your docs. - -## Create a docs version - -Release a version 1.0 of your project: - -```bash -npm run docusaurus docs:version 1.0 -``` - -The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created. - -Your docs now have 2 versions: - -- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs -- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs** - -## Add a Version Dropdown - -To navigate seamlessly across versions, add a version dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'docsVersionDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The docs version dropdown appears in your navbar: - -## Update an existing version - -It is possible to edit versioned docs in their respective folder: - -- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello` -- `docs/hello.md` updates `http://localhost:3000/docs/next/hello` diff --git a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md b/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md deleted file mode 100644 index 5568ca5b993..00000000000 --- a/docs/i18n/it/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Translate your site - -Let's translate `docs/getting-started.md` to French. - -## Configure i18n - -Modify `docusaurus.config.js` to add support for the `fr` locale: - -```js title="docusaurus.config.js" -module.exports = { - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - }, -}; -``` - -## Translate a doc - -Copy the `docs/getting-started.md` file to the `i18n/fr` folder: - -```bash -mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/ - -cp docs/getting-started.md i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md -``` - -Translate `i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md` in French. - -## Start your localized site - -Start your site on the French locale: - -```bash -npm run start -- --locale fr -``` - -Your localized site is accessible at `http://localhost:3000/fr/` and the `Getting Started` page is translated. - -:::caution - -In development, you can only use one locale at a same time. - -::: - -## Add a Locale Dropdown - -To navigate seamlessly across languages, add a locale dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'localeDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The locale dropdown now appears in your navbar: - -## Build your localized site - -Build your site for a specific locale: - -```bash -npm run build -- --locale fr -``` - -Or build your site to include all the locales at once: - -```bash -npm run build -``` diff --git a/docs/i18n/it/docusaurus-theme-classic/footer.json b/docs/i18n/it/docusaurus-theme-classic/footer.json deleted file mode 100644 index 4325e30d7ee..00000000000 --- a/docs/i18n/it/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Codice sorgente", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legale", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrice", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Documenti", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Condiviso", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Guida ai contributi", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Informativa sulla privacy dell'app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Informativa sulla privacy del sito", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logo Di Linwood", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/it/docusaurus-theme-classic/navbar.json b/docs/i18n/it/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 4caf7ab86ec..00000000000 --- a/docs/i18n/it/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flusso", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logo Di Flusso", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Download", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Altro", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrice", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licenza", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/ja/code.json b/docs/i18n/ja/code.json deleted file mode 100644 index cde634de293..00000000000 --- a/docs/i18n/ja/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "はじめに", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Windows用にダウンロード", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Linux用にダウンロード", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Android用にダウンロード", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Web アプリを開く", - "description": "homepage web button" - }, - "Downloads": { - "message": "ダウンロード", - "description": "homepage downloads button" - }, - "Time management": { - "message": "時間管理", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "時間効率を管理し、自動化します。", - "description": "Features Time management description" - }, - "Event management": { - "message": "イベント管理", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "予定をスケジュールし、ユーザーを割り当て、タスクを彼らに与える", - "description": "Features Event management description" - }, - "Your data": { - "message": "あなたのデータ", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "誰もが独自のサーバーを作成し、あなたのデータを持つことができます。", - "description": "Features Your data description" - }, - "Open source": { - "message": "オープンソース", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "アプリとサーバーはすべてオープンソースです。誰でも参加できます!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "このページはクラッシュしました。", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "ページが見つかりません", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "お探しのものが見つかりませんでした。", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "元のURLにリンクしたサイトの所有者に連絡し、リンクが切れていることを知らせてください。", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "メモ", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "危険", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "情報", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "注意", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "アーカイブ", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "アーカイブ", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "トップに戻る", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "ブログ一覧ページのナビゲーション", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "新しい項目", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "古い項目", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "ブログ投稿ページのナビゲーション", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "新しい投稿", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "以前の投稿", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "1 つの投稿|{count} 個の投稿", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} は \"{tagName}\" でタグ付けされています", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "すべてのタグを表示", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "ダークモードとライトモードを切り替えます(現在は {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "ダークモード", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "ライトモード", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "パンくずリスト", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} 個のアイテム", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "ページナビゲーションをドキュメント", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "前", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "次へ", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "タグ付けされた doc tagged|{count} ドキュメント", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} と \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "バージョン: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "これは {siteTitle} {versionLabel} バージョンの未リリースのドキュメントです。", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "これは {siteTitle} {versionLabel}のドキュメントであり、現在アクティブにメンテナンスされていません。", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "最新のドキュメントについては、 {latestVersionLink} ({versionLabel} ) を参照してください。", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "最新バージョン", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "このページを編集", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "{heading} への直接リンク", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " {date} に", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "最終更新{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "バージョン", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "タグ:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "閉じる", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "ブログの最近の投稿ナビゲーション", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "コピーしました", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "クリップボードにコードをコピー", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "コピー", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "ワードラップの切り替え", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "メイン", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "言語", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "このページ", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "1 分で読む|{readingTime} 分で読む。", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "続きを読む", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "{title} についてもっと読む", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "ホームページ", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "サイドバーを閉じる", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "サイドバーを閉じる", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "ナビゲーションバーを閉じる", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "→ メインメニューに戻る", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "ナビゲーションバーの切り替え", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "新しいバージョンが利用可能です", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "更新", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "閉じる", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "もう一度やり直してください", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "メインコンテンツにスキップ", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "タグ", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "警告", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "サイドバーカテゴリ '{label} ' を展開", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "サイドバーカテゴリ「{label}」を閉じる", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "リストされていないページ", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "このページはリストされていません。検索エンジンはインデックスを作成せず、ダイレクトリンクを持つユーザーのみがアクセスできます。", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} 個のアイテム", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 789d62fd2e6..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "次へ", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 331858f338c..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: 更新履歴 -hide_title: true -sidebar_label: 更新履歴 ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 12b1ffd9f8b..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: 行動基準 -hide_title: true -sidebar_label: 行動基準 ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 228808bc7bb..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "コントリビューション" -hide_title: true -sidebar_label: "コントリビューション" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index f4848b0ca40..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "ダウンロード" -} \ No newline at end of file diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 7c0eadc9626..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![安定版のリリース](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightlyリリースバージョン](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## 最小システム要件 - -* Android 5.0 (API レベル 21) 以上。 - -## バイナリ - -
- - 安定版 - - - ナイトリー - -
- -Flow [のナイトリーバージョンについてはこちら](/nightly) をご覧ください。 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index c04e29bb131..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "自分で作ってください" -sidebar_position: 1 ---- - -1. git とフラッタをインストール (ベータ版) -2. リポジトリを複製 -3. アプリのディレクトリに移動します -4. フラッターツールを使用してアプリケーションをコンパイルする - * `Flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `フラッタビルドウィンドウ` -5. コンパイルされたファイルはビルドディレクトリにあります diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 1f68d0dde1e..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: ダウンロード ---- - -![安定版のリリース](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightlyリリースバージョン](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## プラットフォームを選択 - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - サーバー - Selfhosting - -
- -## 有用なリンク - -- [更新履歴](changelog) -- [古いリリース](https://github.com/LinwoodDev/Flow/releases) -- [最新リリース](https://github.com/LinwoodDev/Flow/releases/latest) -- [サポート](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 073a3636e05..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![安定版のリリース](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightlyリリースバージョン](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -可能であればflatpakバージョンをご利用ください。 そうでなければ、 `libsecret-1-dev` と `libjsoncpp-dev` をインストールする必要があります。 - -::: - -## バイナリ - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Flow [のナイトリーバージョンについてはこちら](/nightly) をご覧ください。 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index cce6a5b8385..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![安定版のリリース](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightlyリリースバージョン](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## リンク - - diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 1ceecd3fa18..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: ダウンロードいただきありがとうございます -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# ダウンロードいただきありがとうございます - - - -## Windows SmartScreen - - -Windowsは証明書なしでソフトウェアをインストールするときにユーザーに警告します。 - -![Smart screen](/img/smart-screen.png) - -アプリをインストールするには、"More info"をクリックする必要があります。 - -![Smart screen more info](/img/smart-screen-more-info.png) - -それから、「とにかく実行」をクリックしてください。 - -
diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index a4815a13ac5..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![安定版のリリース](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightlyリリースバージョン](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -独自のフローWebサーバーをホストすることは非常に簡単です。 - -## シンプルなサーバー - -Flutterをインストールし、アプリをビルドします。 - -```bash -cd app -flutter pub get -flutter build web -``` - -全てのファイルは `app/build/web` ディレクトリにあります。 - -## Docker - -リポジトリをクローンし、 `Dockerfile` を使用してビルドします。 `docker build -t linwood-flow`. `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 8f19c91f314..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: ダウンロードいただきありがとうございます -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# ダウンロードいただきありがとうございます - - - -
diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 87f92a97681..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "ウェブ" -sidebar_position: 5 ---- - -![安定版のリリース](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightlyリリースバージョン](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -これはプログレッシブウェブアプリケーションです。 ブラウザにインストールしてオフラインで使用できます。 すべてのデータはブラウザに保存されます。 - -::: - - -## リンク - - - -## バージョン - -Flow のメインバージョンとプレビュー版(開発版)は、安定版と夜版とは異なります。 これらはリリースと直接関連付けられていません。 新しいコミットがリポジトリにプッシュされるとすぐに更新されます。 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 9beee0ed7f3..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![安定版のリリース](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightlyリリースバージョン](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## 最小システム要件 - -* Windows 10以上。 - -## バイナリ - -
-
- -
    -
  • - - セットアップ - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - セットアップ - -
  • -
  • - - Portable - -
  • -
-
-
- -Flow [のナイトリーバージョンについてはこちら](/nightly) をご覧ください。 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 67b4ad6a212..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "よく寄せられる質問" -sidebar_label: "FAQ" ---- - -よくある質問をいくつか紹介します。 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 306f3fbd287..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "ホーム" -sidebar_position: 0 -title: "コミュニティ" ---- - -コミュニティセクションへようこそ。 - -## 謝辞 - -特別な感謝は次のとおりです: - -* [Flutter](https://github.com/flutter/flutter) この便利なクロスプラットフォームUIフレームワークを提供する -* [window_manager](https://github.com/leanflutter/window_manager) このすべての便利なデスクトップウィンドウ機能について -* [Docusaurus](https://github.com/facebook/docusaurus) 使いやすい静的反応文書化フレームワーク用 - -他のすべてのライセンスは、設定で見つけることができます。 - -## 有用なリンク - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [マトリクス](https://go.linwood.dev/matrix) diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 15b8169fca8..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "夜のビルド" -slug: "/nightly" ---- - -:::warning - -Flow の毎晩のバージョンを本番用に使用しないでください。 - -::: - -Nightlyビルドは、最新バージョンをテストして最新の機能を取得し、 フィードバックを与えるオプションを提供するように設計されています。 - -## ビルドを取得する - -プラットフォームのダウンロードページに移動します。 すべてのナイトリービルドもgithubのプレリリースとして公開されます。 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 8467622c723..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "1.0より前のバージョン" ---- - -これらのバージョンはサポートされていません。 新しいバージョンは [バージョン](versions.md) で入手できます。 - -| バージョン | サポート | | -| ----- | ---- | | -| | | | diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 160c4df4f67..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "プライバシーポリシー" -slug: /privacypolicy ---- - -これはアプリのプライバシーポリシーです。 よく読んでください。 [](https://go.linwood.dev/privacypolicy) をクリックして、ウェブサイトのプライバシーポリシーを読んでください。 - -CodeDoctorはオープンソースアプリとしてFlowアプリを構築しました。 本サービスはCodeDoctorが無償で提供し、そのまま使用することを意図しています。 - -このページは、私のコレクションに関するポリシーを訪問者に知らせるために使用されます。 個人情報の利用および開示について 当社が本サービスを利用することを決定した場合。 - -お客様が本サービスを利用することを選択した場合、お客様は本ポリシーに関連する情報の収集および使用に同意するものとします。 私が収集した個人情報は、 サービスの提供と改善のために使用されます。 本プライバシーポリシーに記載されている場合を除き、お客様の情報を使用または共有することはありません。 - -本プライバシーポリシーで使用される用語は、当社の利用規約と同じ意味を持ちます。 このプライバシーポリシーに別段の定義がない限り、Flowからアクセスできます。 - -**情報収集と使用** - -より良い経験のために, 私は、当社のサービスを使用している間, 私は、特定の個人を特定できる情報を当社に提供するように要求することがあります. 私がリクエストした情報はお客様のデバイスに保存され、 はいかなる方法でも私が収集するものではありません。 - -本アプリは、お客様を識別するために使用される情報を収集する可能性のある第三者サービスを使用します。 - -アプリが使用するサードパーティのサービスプロバイダーのプライバシーポリシーへのリンク - -* [Google Play サービス](https://www.google.com/policies/privacy/) - -**Cookie** - -クッキーは、匿名の固有識別子として一般的に使用される少量のデータを持つファイルです。 これらは、あなたが訪問したウェブサイトからブラウザに送信され、デバイスの 内部メモリに保存されます。 - -本サービスはこれらの「クッキー」を明示的に使用しません。 ただし、アプリは情報を収集し、サービスを向上させるために「クッキー」を使用するサードパーティのコードやライブラリを使用することがあります。 これらのクッキーを受け入れるか拒否し、クッキーがいつあなたのデバイスに送信されるかを知るオプションがあります 。 お客様が当社のクッキーを拒否する場合、本サービスの一部を使用することができない場合があります。 - -**サービス プロバイダー** - -私は以下の理由により、サードパーティの会社や個人を雇うことがあります: - -* 私たちのサービスを促進するために; -* 当社に代わって本サービスを提供するため、 -* サービス関連サービスを実行するには; または -* 当社のサービスがどのように使用されているかを分析するのに役立ちます。 - -私はこれらの第三者がお客様の個人情報にアクセスできることをユーザーに通知したいと思います。 理由は、私たちに代わって割り当てられたタスクを実行することです。 しかし、それらは他の目的のために情報を開示または使用しない 義務付けられています。 - -**セキュリティ** - -私はあなたの個人情報を私たちに提供することに対するあなたの信頼を尊重します, 従って私たちは、それを保護する商業的に受け入れられる手段を使用するように努めています. しかし、インターネット上の伝送のない方法を覚えておいてください。 または電子ストレージの方法は100%安全で信頼性があり、絶対的なセキュリティを保証することはできません。 - -**他のサイトへのリンク** - -このサービスには他のサイトへのリンクが含まれている場合があります。 サードパーティのリンクをクリックすると、そのサイトに誘導されます。 これらの外部サイトは私が運営しているものではありません。 したがって、私は強くこれらのウェブサイトのプライバシーポリシーを確認することをお勧めします 。 私は、いかなるサードパーティのサイトやサービスのコンテンツ、プライバシーポリシー、または慣行についても管理せず、責任を負いません。 - -**本プライバシーポリシーの変更** - -私は時々私達のプライバシーポリシーを更新することができます。 したがって、変更については定期的にこのページを確認することをお勧めします。 私はこの ページに新しいプライバシーポリシーを掲載することにより、変更を通知します。 - -この方針は2021-02-07年の時点で有効です。 - -**お問い合わせ** - -プライバシーポリシーに関するご質問やご提案がございましたら、contact@linwood.devまでお気軽にお問い合わせください。 - -このプライバシーポリシーページは [privacypolicytemplate.net](https://privacypolicytemplate.net) で作成され、 [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) によって修正/生成されました。 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs/current.json b/docs/i18n/ja/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index aca7cb06edf..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "次へ", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "サーバー", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/ja/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 49c30646d02..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# はじめに - -近日公開 diff --git a/docs/i18n/ja/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/ja/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 00c80ae736a..00000000000 --- a/docs/i18n/ja/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# エラーリスト - -| エラーコード | HTTPステータスコードです | 説明 | -| ------ | -------------- | ------------- | -| `0` | `404` | ページが見つかりません | -| `1` | `404` | 無効な api バージョン | -| `2` | `403` | アクセス禁止 | -| `3` | `400` | 不正なリクエスト | diff --git a/docs/i18n/ja/docusaurus-theme-classic/footer.json b/docs/i18n/ja/docusaurus-theme-classic/footer.json deleted file mode 100644 index b68aa05a1ba..00000000000 --- a/docs/i18n/ja/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "コミュニティ", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "ソース コード", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "マトリクス", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "アプリ", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "サーバー", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "ドキュメント", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "共有", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "コントリビューションガイド", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "インプリント", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "アプリのプライバシーポリシー", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "ウェブサイトのプライバシーポリシー", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood ロゴ", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/ja/docusaurus-theme-classic/navbar.json b/docs/i18n/ja/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 9817011aded..00000000000 --- a/docs/i18n/ja/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "フロー", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "フローロゴ", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "チュートリアル", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "ダウンロード", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "コミュニティ", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "もっと見る", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "マトリクス", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "ブログ", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "ライセンス", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/ko/code.json b/docs/i18n/ko/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/ko/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs/current.json b/docs/i18n/ko/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/ko/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/ko/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/ko/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/ko/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/ko/docusaurus-theme-classic/footer.json b/docs/i18n/ko/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/ko/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/ko/docusaurus-theme-classic/navbar.json b/docs/i18n/ko/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/ko/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/nl/code.json b/docs/i18n/nl/code.json deleted file mode 100644 index 473e8edc472..00000000000 --- a/docs/i18n/nl/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Aan de slag", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Downloaden voor Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download voor Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download voor Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open de webapp", - "description": "homepage web button" - }, - "Downloads": { - "message": "downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Tijdsbeheer", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Beheer de tijd efficiëntie en automatiseer het.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Gebeurtenis beheer", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Plan gebeurtenissen, wijs gebruikers hieraan toe en geef taken aan hen", - "description": "Features Event management description" - }, - "Your data": { - "message": "Uw gegevens", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Iedereen kan zijn eigen server maken en er jouw gegevens op hebben.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open bron", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "De app en de server zijn allemaal open source. Iedereen kan bijdragen!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Deze pagina is gecrasht.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Pagina niet gevonden", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We konden niet vinden waar je naar op zoek was.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Neem contact op met de eigenaar van de site die u aan de oorspronkelijke URL heeft gekoppeld en laat hen weten dat hun link kapot is.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "opmerking", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "gevaar", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "voorzichtigheid", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archief", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archief", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll terug naar boven", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog lijst navigatie pagina", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Nieuwere invoer", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Oudere ingangen", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post navigatie pagina", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Nieuwere post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Oudere post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Één bericht{count} berichten", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} gelabeld met \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Alle tags weergeven", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Schakelen tussen donkere en lichte modus (momenteel {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "Donkere modus", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "licht modus", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Broodkruimels", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} artikelen", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Pagina's navigatie in documenten", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "named@@0", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Volgende", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Één doc getagd{count} docs getagd", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} met \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versie: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Dit is niet vrijgegeven documentatie voor versie {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Dit is documentatie voor {siteTitle} {versionLabel}, die niet langer actief wordt onderhouden.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Zie voor up-to-date documentatie, {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "laatste versie", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Deze pagina bewerken", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Directe link naar {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " op {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " door {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Laatst bijgewerkt op{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "versies", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Afsluiten", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recente navigatie berichten", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Gekoppeld", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Kopieer code naar klembord", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopiëren", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Schakelen tussen woordwrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Algemeen", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Leren", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Op deze pagina", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Één minuut gelezen,{readingTime} minuten gelezen", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Meer informatie", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Lees meer over {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Persoonlijke webpagina", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Zijbalk inklappen", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Zijbalk inklappen", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Navigatiebalk sluiten", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Terug naar hoofdmenu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Navigatiebalk in-/uitschakelen", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Nieuwe versie beschikbaar", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Vernieuwen", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Afsluiten", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Opnieuw proberen", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Ga naar de hoofdinhoud", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Labels", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "waarschuwing", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Zijbalk categorie '{label} ' uitvouwen", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Zijbalk categorie{label} samenvouwen", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Niet-genoteerde pagina", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Deze pagina is niet vermeld. Zoekmachines zullen het niet indexeren en alleen gebruikers met een directe link kunnen het bekijken.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} artikelen", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 1d11d8bcf79..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Volgende", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Onenigheid", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index fbf12fbc4de..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Wijzigingslogboek -hide_title: true -sidebar_label: Wijzigingslogboek ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index dfb9c6b0365..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Gedragscode -hide_title: true -sidebar_label: Gedragscode ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 754943268b2..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Bijdragen" -hide_title: true -sidebar_label: "Bijdragen" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 40b9cea8d03..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "downloads" -} \ No newline at end of file diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index e22ee40d2a3..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabiele versie van release](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachtelijke versie versie](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimale systeemvereisten - -* Android 5.0 (API level 21) of hoger. - -## Binairs - -
- - Stabiel - - - Nachtelijk - -
- -Lees meer over de nightly versie van Flow [hier](/nightly). diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e9d08f1363c..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Bouw je eigen" -sidebar_position: 1 ---- - -1. Installeer git en flutter (bèta) -2. Kloon de repository -3. Navigeer naar de app directory -4. Gebruik het flutter gereedschap om de applicatie te compileren - * `flutter build apk` - * `flutter build appbundel` - * `flutter build web` - * `flutter build linux` - * `flutter build vensters` -5. De gecompileerde bestanden zijn in de build-map diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 834ea34eb5d..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: downloads ---- - -![Stabiele versie van release](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachtelijke versie versie](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Kies uw platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Nuttige links - -- [Wijzigingslogboek](changelog) -- [Oudere releases](https://github.com/LinwoodDev/Flow/releases) -- [Laatste release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Ondersteuning](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 1c965a30716..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabiele versie van release](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachtelijke versie versie](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Gebruik indien mogelijk de flatpak versie. Anders moet je `libsecret-1-dev` en `libjsoncpp-dev` installeren. - -::: - -## Binairs - -
-
- -
    -
  • - - Draagbaar - -
  • -
  • - - VERWIJDER - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Draagbaar - -
  • -
  • - - VERWIJDER - -
  • -
  • - - AppImage - -
  • -
-
-
- -Lees meer over de nightly versie van Flow [hier](/nightly). diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 0419f7ca616..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stabiele versie van release](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachtelijke versie versie](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Koppelingen - - diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 53d4ae7b957..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Bedankt voor het downloaden -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Bedankt voor het downloaden - - - -## Windows SmartScreen - - -Windows waarschuwt gebruikers bij het installeren van software zonder certificaat. - -![Smart screen](/img/smart-screen.png) - -Om de app te installeren, moet je op "Meer info" klikken. - -![Slim scherm meer info](/img/smart-screen-meere-info.png) - -Dan klik op "Toch uitvoeren". - -
diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index c294d87e9a8..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stabiele versie van release](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachtelijke versie versie](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Het is heel makkelijk om je eigen debit-webserver te hosten. - -## Eenvoudige server - -Installeer de flutter en bouw de app met gebruik: - -```bash -cd app -flutter pub get -flutter build web -``` - -Alle bestanden staan in de map `app/build/web`. - -## Docker - -Kloon de repository en bouw het `Docker-bestand` met gebruiking: `docker build -t linwood-flow`. Start de server gebruiken: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 8e116888b2a..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Bedankt voor het downloaden -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Bedankt voor het downloaden - - - -
diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index fda6d76682d..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Internet" -sidebar_position: 5 ---- - -![Stabiele versie van release](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachtelijke versie versie](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Dit is een progressieve webapplicatie. U kunt deze installeren in uw browser en deze offline gebruiken. Alle gegevens worden opgeslagen in uw browser. - -::: - - -## Koppelingen - - - -## versies - -De belangrijkste en de preview (ontwikkelde) versies van Flow zijn niet hetzelfde als de stabiele en nachtelijke versies. Ze zijn niet rechtstreeks verbonden met een vrijlating. Ze worden bijgewerkt zodra een nieuwe commit is gepusht naar de repository. diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 61217b2bccc..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Vensters" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabiele versie van release](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nachtelijke versie versie](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimale systeemvereisten - -* Windows 10 of hoger. - -## Binairs - -
-
- -
    -
  • - - Instellen - -
  • -
  • - - Draagbaar - -
  • -
-
-
- -
    -
  • - - Instellen - -
  • -
  • - - Draagbaar - -
  • -
-
-
- -Lees meer over de nightly versie van Flow [hier](/nightly). diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 08764053f07..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Veelgestelde vragen (FAQ's)" -sidebar_label: "FAQ" ---- - -Hier zijn enkele vaak gestelde vragen. diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index f015712dc97..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Startpagina" -sidebar_position: 0 -title: "Gemeenschap" ---- - -Welkom bij de community sectie. - -## Erkenningen - -Een speciale dank aan: - -* [Flutter](https://github.com/flutter/flutter) voor het leveren van dit handige crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) voor alle functies van dit bureaublad -* [Docusaurus](https://github.com/facebook/docusaurus) voor een eenvoudig te gebruiken statische reactie documentatie framework - -Alle andere licenties vind je in de instellingen. - -## Nuttige links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Onenigheid](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 046fb682eba..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nachtelijke builds" -slug: "/nightly" ---- - -:::waarschuwing - -Gebruik niet de nachtelijke versie van Flow voor productie. - -::: - -Nightly builds zijn ontworpen om je de optie te geven om de laatste versie te testen en de nieuwste functies te krijgen en om feedback te geven. - -## Verkrijg de builds - -Ga naar de downloadpagina's van uw platform. Alle nightly builds worden ook gepubliceerd als pre-release op github. diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 14084469f11..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versies" ---- - -Deze versies worden niet meer ondersteund. Nieuwe versies zijn beschikbaar op [versies](versions.md). - -| Versie | Ondersteund | | -| ------ | ----------- | | -| | | | diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 45087109910..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Beleid" -slug: /privacypolicy ---- - -Dit is het privacybeleid van de app. Leest u het alstublieft zorgvuldig. Klik [hier](https://go.linwood.dev/privacypolicy) om het privacybeleid van de website te lezen. - -CodeDoctor heeft de Flow app gebouwd als een Open Source app. Deze SERVICE wordt geleverd door CodeDoctor zonder kosten en is bedoeld voor gebruik zoals dat is. - -Deze pagina wordt gebruikt om bezoekers te informeren over mijn beleid met de verzameling, gebruik en openbaarmaking van persoonlijke informatie als iemand heeft besloten om mijn dienst te gebruiken. - -Als je mijn dienst gebruikt, ga je akkoord met het verzamelen en gebruiken van informatie met betrekking tot dit beleid. De persoonlijke informatie die ik verzamel, wordt gebruikt om de service te verstrekken en te verbeteren. Ik zal uw informatie niet gebruiken of met iemand delen behalve zoals beschreven in dit Privacybeleid. - -De gebruikte voorwaarden in dit privacybeleid hebben dezelfde betekenis als in onze Algemene Voorwaarden, die toegankelijk is in Flow tenzij anders gedefinieerd in dit privacybeleid. - -**Informatie verzamelen en gebruiken** - -Voor een betere ervaring, kan het zijn dat ik je nodig heb om ons bepaalde persoonlijk identificeerbare informatie te verstrekken. De informatie die ik verzoek wordt bewaard op uw apparaat en wordt op geen enkele manier door mij verzameld. - -De app maakt wel gebruik van diensten van derden die informatie kunnen verzamelen om u te identificeren. - -Link naar privacybeleid van externe serviceproviders gebruikt door de app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Koekjes** - -Cookies zijn bestanden met een kleine hoeveelheid gegevens die vaak worden gebruikt als anonieme unieke ID's. Deze worden verzonden naar uw browser van de websites die u bezoekt en worden opgeslagen in het interne geheugen van uw apparaat. - -Deze dienst gebruikt deze "cookies" niet expliciet. De app kan echter wel de code van derden en bibliotheken gebruiken die "cookies" gebruiken om informatie te verzamelen en hun diensten te verbeteren. U heeft de optie om deze cookies te accepteren of te weigeren en te weten wanneer een cookie wordt verzonden naar uw apparaat. Als u onze cookies wenst te weigeren, kunt u sommige delen van deze service niet gebruiken. - -**Service providers** - -Ik kan bedrijven en personen uit derde landen in dienst nemen om de volgende redenen: - -* Om onze service te faciliteren; -* Om de dienst namens ons te leveren; -* Service-gerelateerde diensten uitvoeren; of -* Om ons te helpen bij het analyseren van hoe onze Service wordt gebruikt. - -Ik wil de gebruikers van deze dienst informeren dat deze derden toegang hebben tot uw persoonlijke informatie. De reden is om de taken die hun namens ons zijn toegewezen uit te voeren. Ze zijn echter verplicht om de informatie niet voor enig ander doel openbaar te maken of te gebruiken. - -**Beveiliging** - -Ik stel het op prijs dat u ons op de hoogte stelt van uw persoonlijke informatie, en wij proberen dus commercieel aanvaardbare middelen te gebruiken om deze te beschermen. Maar vergeet niet dat er geen methode is voor overdracht via het internet of elektronische opslag is 100% veilig en betrouwbaar, en ik kan de absolute veiligheid ervan niet garanderen. - -**Links naar andere sites** - -Deze dienst kan links naar andere websites bevatten. Als u op een link van derden klikt, wordt u doorverwezen naar die site. Merk op dat deze externe sites niet door mij worden beheerd. Daarom raad ik u sterk aan om het privacybeleid van deze websites te herzien. Ik heb geen controle over en neem geen verantwoordelijkheid op mij voor de inhoud, het privacybeleid of de praktijken van websites of diensten van derden. - -**Wijzigingen in dit privacybeleid** - -Ik kan ons privacybeleid van tijd tot tijd updaten. U wordt dus aangeraden om deze pagina periodiek te bekijken voor eventuele wijzigingen. Ik zal u op de hoogte brengen van eventuele wijzigingen door het nieuwe privacybeleid op deze pagina te plaatsen. - -Dit beleid is van kracht vanaf 2021-02-07 - -**Contacteer ons** - -Als u vragen of suggesties hebt over mijn privacybeleid, aarzel dan niet om contact met mij op te nemen via contact@linwood.dev. - -Deze pagina over privacybeleid is gemaakt op [privacytemplate.net](https://privacypolicytemplate.net) en bewerkt / gegenereerd door [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs/current.json b/docs/i18n/nl/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index aeb572d711e..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Volgende", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "Server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/nl/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index cf3135f197f..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introductie - -Binnenkort beschikbaar diff --git a/docs/i18n/nl/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/nl/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 91dfdd0a631..00000000000 --- a/docs/i18n/nl/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Fout lijst - -| Foutmelding code | HTTP status code | Beschrijving | -| ---------------- | ---------------- | -------------------- | -| `0` | `404` | Pagina niet gevonden | -| `1` | `404` | Ongeldige API versie | -| `2` | `403` | Verboden | -| `3` | `400` | Slecht verzoek | diff --git a/docs/i18n/nl/docusaurus-theme-classic/footer.json b/docs/i18n/nl/docusaurus-theme-classic/footer.json deleted file mode 100644 index 3a7be75953b..00000000000 --- a/docs/i18n/nl/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Gemeenschap", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Bron code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Juridisch", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Onenigheid", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Documentatie", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Gedeeld", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Handleiding voor bijdragen", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Impressum", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacybeleid van de app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacybeleid van de website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/nl/docusaurus-theme-classic/navbar.json b/docs/i18n/nl/docusaurus-theme-classic/navbar.json deleted file mode 100644 index abcca0c2d44..00000000000 --- a/docs/i18n/nl/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Stroom", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Handleiding", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Gemeenschap", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Meer", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Onenigheid", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licentie", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/no/code.json b/docs/i18n/no/code.json deleted file mode 100644 index 8cb9be41987..00000000000 --- a/docs/i18n/no/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Komme i gang", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Last ned for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Last ned for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Last ned for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Åpne nettappen", - "description": "homepage web button" - }, - "Downloads": { - "message": "Nedlastinger", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Administrasjon av tid", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Behandle tidseffektiviteten og automatisér den.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Administrere arrangementer", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Planlegg hendelser, tildele brukere til det og gi oppgaver til dem", - "description": "Features Event management description" - }, - "Your data": { - "message": "Dine data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Alle kan opprette sin egen server og ha dataene dine i den.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Åpen kildekode", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Appen og serveren er alle åpen kildekode. Alle kan bidra!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Denne siden krasjet.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Side ikke funnet", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Vi fant ikke det du lette etter.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Vennligst kontakt eieren av nettstedet som er koblet deg til den opprinnelige URL-en, og la dem få vite at lenken deres er ødelagt.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "merknad", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "fare", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "informasjon", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "forsiktighet", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Arkiv", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Arkiv", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Rull tilbake til toppen", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blogg Liste Sidenavigering", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Nyere innganger", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Eldre innlegg", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blogg Sidenavigering", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Nyere innlegg", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Eldre innlegg", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "En postby{count} innlegg", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagget med \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Vis alle tagger", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Veksle mellom mørk og lys modus (for tiden {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "mørk modus", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "lett modus", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Brødsmuler", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} objekter", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs side navigasjon", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Forrige", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Neste", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "En doc tagged◊{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} med \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versjon: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Dette er uutgitt dokumentasjon for {siteTitle} {versionLabel} -versjon.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Dette er dokumentasjonen for {siteTitle} {versionLabel}som ikke lenger vedlikeholdes aktivt.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For oppdatert dokumentasjon, se {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "siste versjon", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Rediger denne siden", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direkte lenke til {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " på {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " av {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Sist oppdatert{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versjoner", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Stikkord:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Lukk", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blogg nylige innlegg navigasjon", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Kopiert", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Kopier koden til utklippstavlen", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopier", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Veksle tekstbryting", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Hoved", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Språk", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "På denne siden", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Et minutt lest lest{readingTime} min", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Les mer", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Les mer om {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Hjemme Side", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Skjul sidepanelet", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Skjul sidepanelet", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Lukk navigasjonsfelt", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "AP tilbake til hovedmenyen", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Vis/Skjul navigasjonsfelt", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Ny versjon tilgjengelig", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Oppdater", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Lukk", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Prøv igjen", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Gå til hovedinnhold", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tagger", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "advarsel", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Utvid sidepanelkategori '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Skjul sidestolpe kategori '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unotert side", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Denne siden er ikke listet opp. Søkemotorer vil ikke indeksere den, og bare brukere med en direktelink har tilgang til den.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} objekter", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/no/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index d8c3d37df30..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Neste", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Splid", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 63f1bb3e2f0..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Endringslogg -hide_title: true -sidebar_label: Endringslogg ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 93d25e96efa..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Etiske retningslinjer -hide_title: true -sidebar_label: Etiske retningslinjer ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 1ad17031a90..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Bidra" -hide_title: true -sidebar_label: "Bidra" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index b59dea109e2..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Nedlastinger" -} \ No newline at end of file diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 634ba4ae373..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable utgivelsesversjon](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Slipp versjon for nattlig](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimumskrav til systemer - -* Android 5.0 (API nivå 21) eller høyere. - -## Binærfiler - -
- - Stabil - - - Nattlig - -
- -Les mer om den nattlige versjonen av Flow [her](/nightly). diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 4ff8b234d44..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Bygg din egen" -sidebar_position: 1 ---- - -1. Installere git og flutter (beta) -2. Klon kodelageret -3. Naviger til app mappen -4. Bruk fløderverktøyet for å kompilere applikasjonen - * `flutter bygger aper` - * `flutter build appbundle` - * `flutter bygget på web` - * `linux baserer flutter` - * `vinduer for installasjon av flutter` -5. De kompilerte filene finnes i byggemappen diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index afe3dafd15b..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Nedlastinger ---- - -![Stable utgivelsesversjon](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Slipp versjon for nattlig](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Velg din plattform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Tjener - Selfhosting - -
- -## Nyttige lenker - -- [Endringslogg](changelog) -- [Eldre utgivelser](https://github.com/LinwoodDev/Flow/releases) -- [Siste utgivelse](https://github.com/LinwoodDev/Flow/releases/latest) -- [Brukerstøtte](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 8fa6568058b..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable utgivelsesversjon](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Slipp versjon for nattlig](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Vennligst bruk flatpak versjonen hvis det er mulig. Ellers må du installere `libsecret-1-dev` og `libjsoncpp-dev`. - -::: - -## Binærfiler - -
-
- -
    -
  • - - Portabel - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portabel - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Les mer om den nattlige versjonen av Flow [her](/nightly). diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 26184600ee4..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable utgivelsesversjon](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Slipp versjon for nattlig](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Lenker - - diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index cbaaffc8121..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Takk for at du lastet ned -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Takk for at du lastet ned - - - -## Windows SmartScreen - - -Advarer brukere når du installerer programvare uten sertifikat. - -η Smart skjermer](/img/smart-skjerm. png) - -For å installere appen, må du klikke på "Mer informasjon". - -⌘ Smart skjerm mer informasjon](/img/smart-screen-more-info.png) - -Deretter, klikk på "Kjør uansett". - -
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index f1facd51a3d..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable utgivelsesversjon](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Slipp versjon for nattlig](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Det er veldig enkelt å verne din egen flyt-webserver. - -## Enkel server - -Installer flutter og bygg appen ved hjelp av - -```bash -cd app -flutter pub får -flutter bygge web -``` - -Alle filene finnes i `app/build/web` mappen. - -## Docker - -Klon depotet og bygg `Dockerfile` bruker: `docker build -t linwood-flow`. Start serveren med: `docker run -p 80:8080 -d linwood-flow`. diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 9f80fac7bf7..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Takk for at du lastet ned -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Takk for at du lastet ned - - - -
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 863bce172d4..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Nett" -sidebar_position: 5 ---- - -![Stable utgivelsesversjon](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Slipp versjon for nattlig](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Dette er en progressiv webapplikasjon. Du kan installere den i nettleseren din og bruke den utenfor Internett. Alle data er lagret i nettleseren din. - -::: - - -## Lenker - - - -## Versjoner - -Hovedversjonene og forhåndsvisningen (develop) av Flow er ikke de samme som de stabile og nattlige versjonene. De er ikke direkte knyttet til en utgivelse. De oppdateres så snart en ny utførelse presses inn i arkivet. diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 1ca442d50ca..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Vinduer" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable utgivelsesversjon](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Slipp versjon for nattlig](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimumskrav til systemer - -* Windows 10 eller høyere. - -## Binærfiler - -
-
- -
    -
  • - - Oppsett - -
  • -
  • - - Portabel - -
  • -
-
-
- -
    -
  • - - Oppsett - -
  • -
  • - - Portabel - -
  • -
-
-
- -Les mer om den nattlige versjonen av Flow [her](/nightly). diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 80b03769ddd..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Ofte stilte spørsmål" -sidebar_label: "OSS" ---- - -Her er noen ofte stilte spørsmål. diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 05725fa9c86..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Hjem" -sidebar_position: 0 -title: "Fellesskap" ---- - -Velkommen til samfunnsseksjonen. - -## Anerkjennelser - -En spesiell takk går til: - -* [Flutter](https://github.com/flutter/flutter) for å sikre dette nyttige crossplatform ui rammeverket -* [window_manager](https://github.com/leanflutter/window_manager) for alle dette nyttige skrivebordsvinduets funksjoner -* [Docusaurus](https://github.com/facebook/docusaurus) for et lett å bruke statisk reaksjons dokumentasjon - -Du finner alle andre lisenser i innstillingene. - -## Nyttige lenker - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Splid](https://go.linwood.dev/discord) -* [Matrise](https://go.linwood.dev/matrix) diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 5f126f2822d..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nattlig bygger" -slug: "/nightly" ---- - -:::advarsel - -Ikke bruk den nattlige versjonen av Flow til produksjon. - -::: - -Nattlige bygg er utformet for å gi deg muligheten til å teste den nyeste versjonen og få de nyeste funksjonene og gi tilbakemeldinger. - -## Få byggene - -Gå til nedlastingssidene i din plattform. Alle nattlige bygger også blir publisert som forhåndslansering på github. diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 324d6ae32ce..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versjoner" ---- - -Disse versjonene støttes ikke lenger. Nye versjoner er tilgjengelige på [versjoner](versions.md). - -| Versjon | Støttet | | -| ------- | ------- | | -| | | | diff --git a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/no/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index d70bd8c9ec8..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Retningslinjer for personvern" -slug: /privacypolicy ---- - -Dette er personvernet til appen. Les det nøye. Klikk [her](https://go.linwood.dev/privacypolicy) for å lese personvernerklæringen til nettstedet. - -CodeDoctor bygget Flow appen som en åpen kildekode-app. Denne SERVICE leveres av CodeDoctor uten kostnad og er beregnet på bruk som den er. - -Denne siden brukes til å informere besøkende om mine retningslinjer med samlingen, bruk og formidling av personlig informasjon hvis noen bestemte seg for å bruke Tjenesten min. - -Dersom du velger å bruke min Tjeneste er du enig i innsamling og bruk av informasjon i forhold til denne politikken. Personlig informasjon som jeg samler inn brukes til å gi og forbedre Tjenesten. Jeg vil ikke bruke eller dele informasjon med noen som er unntatt beskrevet i denne personvernerklæringen. - -Begrepene som brukes i denne personvernerklæringen har samme betydning som i våre vilkår og betingelser, som er tilgjengelig på Flow med mindre noe annet er definert i denne personvernerklæringen. - -**Informasjonsinnsamling og bruk** - -Bedre erfaring når du bruker vår Tjeneste krever jeg at du gir oss sikker personlig identifiserbar informasjon. Informasjonen jeg ber om blir beholdt på din enhet og blir ikke samlet inn av meg på noen måte. - -Appen bruker tredjepartstjenester som kan samle informasjon som brukes til å identifisere deg. - -Lenke til personvernregler for tredjeparts tjenesteleverandører som appen bruker - -* [Google Play tjenester](https://www.google.com/policies/privacy/) - -**Informasjonskapsler** - -Informasjonskapsler er filer med en liten mengde data som vanligvis brukes som anonym unik identifikator. Disse sendes til nettleseren din fra nettstedene du besøker og lagres på enhetens interne minne. - -Denne tjenesten bruker ikke disse «cookies» eksplisitt. Appen kan imidlertid benytte tredjepartskode og biblioteker som bruker "cookies" for å samle inn informasjon og forbedre tjenestene deres. Du har muligheten til å enten akseptere eller avslå disse informasjonskapslene og vite når en informasjonskapsel sendes til enheten. Dersom du velger å avvise våre informasjonskapsler, kan det hende at du ikke kan bruke noen deler av denne tjenesten. - -**Tjenesteleverandører** - -Jeg kan ansette tredjepartsselskaper og enkeltpersoner av følgende årsaker: - -* For å lette tjenesten; -* Å levere tjenesten på våre vegne, -* Å utføre driftsrelaterte tjenester; eller -* Som hjelp til å analysere hvordan tjenesten brukes. - -Jeg ønsker å informere brukere om denne tjenesten om at disse tredjepartene har tilgang til din personlige informasjon. Årsaken er at de oppgavene de er tilordnet på vegne av oss. De er imidlertid forpliktet til ikke å offentliggjøre eller bruke informasjonen til noe annet formål. - -**Sikkerhet** - -Jeg verdsetter din tillit til å gi oss din personlige informasjon. Derfor arbeider vi med å bruke kommersielt akseptable metoder for å beskytte den. Men husk at det ikke er noen overføringsmetode over Internett, eller en metode for elektronisk lagring er 100% sikker og pålitelig, og jeg kan ikke garantere den absolutte sikkerheten. - -**Lenker til andre nettsteder** - -Denne tjenesten kan inneholde lenker til andre nettsteder. Hvis du klikker på en tredjeparts lenke, blir du sendt til dette nettstedet. Vær oppmerksom på at disse eksterne lokalitetene ikke drives av meg. Derfor vil jeg sterkt råde deg til å gjennomgå personvernreglene på disse nettsidene. Jeg har ingen kontroll over og tar ikke ansvar for innholdet, personvernpolitikken eller praksis hos tredjeparter eller tjenester. - -**Endringer i denne personvernerklæringen** - -Jeg kan fra tid til annen oppdatere våre retningslinjer for personvern. Derfor anbefales du å gjennomgå denne siden med jevne mellomrom for eventuelle endringer. Jeg vil varsle deg om endringer ved å legge ut de nye personvernerklæringen på denne siden . - -Denne politikken gjelder fra 2021-02-07. - -**Kontakt oss** - -Hvis du har spørsmål eller forslag om min personvernerklæring, ikke nøl med å kontakte meg på contact@linwood.dev. - -Denne siden for personvern ble opprettet på [privacypolicytemplate.net](https://privacypolicytemplate.net) og endret/generert av [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current.json b/docs/i18n/no/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index d37fdf74bc7..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Neste", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "tjener", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/no/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index ca79966f4a9..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduksjon - -Kommer snart diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/no/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index bf2b549d20b..00000000000 --- a/docs/i18n/no/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Feilliste over feil - -| Feil kode | HTTP statuskode | Beskrivelse | -| --------- | --------------- | --------------------- | -| `0` | `404` | Siden ble ikke funnet | -| `1` | `404` | Ugyldig api versjon | -| `2` | `403` | Forbudt | -| `3` | `400` | Ugyldig forespørsel | diff --git a/docs/i18n/no/docusaurus-theme-classic/footer.json b/docs/i18n/no/docusaurus-theme-classic/footer.json deleted file mode 100644 index 03c9a53d09d..00000000000 --- a/docs/i18n/no/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Fellesskap", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Kildekode", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Juridisk", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Splid", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrise", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Tjener", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Dokumenter", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Delt", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Hjelp for bidrag", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Avtrykk", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Appens retningslinjer for personvern", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Personvern på nettstedet", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Opphavsrett ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logo fra kobling", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/no/docusaurus-theme-classic/navbar.json b/docs/i18n/no/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 9cac5be333c..00000000000 --- a/docs/i18n/no/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Bevegelse", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flyt logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Opplæring", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Nedlastinger", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Fellesskap", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Mer", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrise", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Splid", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blogg", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Lisens", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/pl/code.json b/docs/i18n/pl/code.json deleted file mode 100644 index 121d6ecb1a2..00000000000 --- a/docs/i18n/pl/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Pierwsze kroki", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Pobierz dla Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Pobierz na Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Pobierz na Androida", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Otwórz aplikację internetową", - "description": "homepage web button" - }, - "Downloads": { - "message": "Pobrania", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Zarządzanie czasem", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Zarządzaj wydajnością czasu i zautomatyzuj to.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Zarządzanie zdarzeniami", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Zaplanuj wydarzenia, przypisz użytkowników do niego i daj im zadania", - "description": "Features Event management description" - }, - "Your data": { - "message": "Twoje dane", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Każdy może utworzyć własny serwer i mieć na nim swoje dane.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Otwarte źródło", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Aplikacja i serwer są otwartym oprogramowaniem. Każdy może się do tego przyczynić!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Ta strona uległa awarii.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Strona nie znaleziona", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Nie mogliśmy znaleźć tego, czego szukałeś.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Skontaktuj się z właścicielem witryny, która połączyła Cię z oryginalnym adresem URL i daj im znać, że ich link jest uszkodzony.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "notatka", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "niebezpieczeństwo", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "informacje", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "Należy zachować ostrożność", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archiwum", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archiwum", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Przewiń z powrotem do góry", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Nawigacja strony listy blogów", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Nowsze wpisy", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Starsze wpisy", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Nawigacja na blogu", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Nowszy post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Starszy post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Jeden post|{count} postów", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} otagował \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Zobacz wszystkie tagi", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Przełącz pomiędzy trybem ciemnym i jasnym (obecnie {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "tryb ciemny", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "tryb oświetlenia", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Ścieżki", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} przedmiotów", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Nawigacja stron dokumentów", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Poprzedni", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Następny", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Jeden dokument oznaczony|{count} dokumentów oznaczonych", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} z \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Wersja: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "To jest niewydana dokumentacja dla wersji {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "To jest dokumentacja dla {siteTitle} {versionLabel}, która nie jest już aktywnie utrzymywana.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Aby uzyskać aktualną dokumentację, zobacz {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "najnowsza wersja", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edytuj tę stronę", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Bezpośredni link do {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " przez {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Ostatnia aktualizacja{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Wersje", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tagi:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Zamknij", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Nawigacja na blogu", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Skopiowano", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Skopiuj kod do schowka", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopiuj", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Przełącz zawijanie słów", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Główny", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Języki", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Na tej stronie", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Przeczytano minutę|{readingTime} min", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Przeczytaj więcej", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Przeczytaj więcej o {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Strona główna", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Zwiń pasek boczny", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Zwiń pasek boczny", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Zamknij pasek nawigacji", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "◆ Powrót do menu głównego", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Przełącz pasek nawigacji", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Dostępna jest nowa wersja", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Odśwież", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Zamknij", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Spróbuj ponownie", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Przejdź do głównej zawartości", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tagi", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "ostrzeżenie", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Rozwiń kategorię paska bocznego '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Zwiń kategorię paska bocznego '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Strona niewymieniona", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Ta strona jest niewymieniona. Wyszukiwarki nie będą indeksować jej i tylko użytkownicy posiadający bezpośredni link mogą mieć do niej dostęp.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} przedmiotów", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index ecb7dec6f37..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Następny", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 517bf921dd7..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Lista zmian -hide_title: true -sidebar_label: Lista zmian ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index e52cfeda10a..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Kodeks postępowania -hide_title: true -sidebar_label: Kodeks postępowania ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index f346b11631a..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Przyczynianie się" -hide_title: true -sidebar_label: "Przyczynianie się" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 0dd4fd6a2e9..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Pobrania" -} \ No newline at end of file diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 9e019486d30..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabilna wersja wydania](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Wersja Nightly](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimalne wymagania systemowe - -* Android 5.0 (API level 21) lub wyższy. - -## Pliki binarne - -
- - Stabilność - - - Nocny - -
- -Dowiedz się więcej o nocnej wersji przepływu [tutaj](/nightly). diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index f0cc9cb5080..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Zbuduj swój własny" -sidebar_position: 1 ---- - -1. Zainstaluj git i flutter (beta) -2. Sklonuj repozytorium -3. Przejdź do katalogu aplikacji -4. Użyj narzędzia do kompilacji aplikacji - * `apk kompilacji trzepotów` - * `paczka aplikacji do budowy trzepotów` - * `kompilacja trzepotów` - * `kompilacja flutter linuks` - * `okno budowy trzepotów` -5. Skompilowane pliki są w katalogu kompilacji diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index b99e8c3ee00..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Pobrania ---- - -![Stabilna wersja wydania](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Wersja Nightly](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Wybierz swoją platformę - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Serwer - Selfhosting - -
- -## Przydatne linki - -- [Lista zmian](changelog) -- [Starsze wydania](https://github.com/LinwoodDev/Flow/releases) -- [Najnowsze wydanie](https://github.com/LinwoodDev/Flow/releases/latest) -- [Wsparcie](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 6d7d0b0caf6..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabilna wersja wydania](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Wersja Nightly](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Użyj wersji flatpak, jeśli to możliwe. W przeciwnym razie musisz zainstalować `libsecret-1-dev` i `libjsoncpp-dev`. - -::: - -## Pliki binarne - -
-
- -
    -
  • - - Przenośne - -
  • -
  • - - PT - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Przenośne - -
  • -
  • - - PT - -
  • -
  • - - AppImage - -
  • -
-
-
- -Dowiedz się więcej o nocnej wersji przepływu [tutaj](/nightly). diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index be760ca9c93..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stabilna wersja wydania](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Wersja Nightly](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Linki - - diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 575c653d8d8..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Dziękujemy za pobranie -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Dziękujemy za pobranie - - - -## Windows SmartScreen - - -Windows ostrzega użytkowników podczas instalacji oprogramowania bez certyfikatu. - -![Inteligentny ekran](/img/smart-screen.png) - -Aby zainstalować aplikację, kliknij "Więcej informacji". - -![Inteligentny ekran więcej informacji](/img/smart-screen-more-info.png) - -Następnie kliknij przycisk "Uruchom mimo to". - -
diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 1f7df446dae..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stabilna wersja wydania](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Wersja Nightly](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Łatwo jest hostować swój własny serwer blokowy. - -## Prosty serwer - -Zainstaluj flutter i zbuduj aplikację za pomocą: - -```bash -cd app -flutter pub get -flutter build web -``` - -Wszystkie pliki znajdują się w katalogu `app/build/web`. - -## Dokujący - -Sklonuj repozytorium i zbuduj `Dockerfile` używając `docker build -t linwood-flow`. Uruchom serwer używając `docker run -p 808080:8080 -d linwood-flow`. diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 1afa252acb0..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Dziękujemy za pobranie -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Dziękujemy za pobranie - - - -
diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index d73b7b26793..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stabilna wersja wydania](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Wersja Nightly](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Jest to postępowa aplikacja internetowa. Możesz go zainstalować w przeglądarce i używać w trybie offline. Wszystkie dane są przechowywane w przeglądarce. - -::: - - -## Linki - - - -## Wersje - -Główne i podgląd (rozwijają) wersji Flow nie są takie same jak wersje stabilne i nocne. Nie są one bezpośrednio związane z wydaniem. Są one aktualizowane natychmiast po wypychaniu nowego zobowiązania do repozytorium. diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 481b17d6004..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Okna" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabilna wersja wydania](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Wersja Nightly](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimalne wymagania systemowe - -* Okna 10 lub wyższe. - -## Pliki binarne - -
-
- -
    -
  • - - Ustawienia - -
  • -
  • - - Przenośne - -
  • -
-
-
- -
    -
  • - - Ustawienia - -
  • -
  • - - Przenośne - -
  • -
-
-
- -Dowiedz się więcej o nocnej wersji przepływu [tutaj](/nightly). diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 91f9475cbd5..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Często zadawane pytania" -sidebar_label: "Często zadawane pytania" ---- - -Tutaj często zadawane są pytania. diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 170fb82245a..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Strona główna" -sidebar_position: 0 -title: "Społeczność" ---- - -Witamy w sekcji społeczności. - -## Potwierdzenia - -Specjalne podziękowania należą się do: - -* [Flutter](https://github.com/flutter/flutter) dla zapewnienia tej użytecznej struktury interfejsu krzyżykowego -* [window_manager](https://github.com/leanflutter/window_manager) dla wszystkich przydatnych funkcji okna stacjonarnego -* [Docusaurus](https://github.com/facebook/docusaurus) dla łatwego w użyciu systemu dokumentacji reakcji statycznej - -Wszystkie inne licencje można znaleźć w ustawieniach. - -## Przydatne linki - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matryca](https://go.linwood.dev/matrix) diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 078a547b226..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Kompilacje Nightly" -slug: "/nightly" ---- - -:::Ostrzeżenie - -Nie używaj nocnej wersji przepływu do produkcji. - -::: - -Nocne kompilacje zostały zaprojektowane, aby dać Ci możliwość przetestowania najnowszej wersji i uzyskania najnowszych funkcji i przekazania opinii. - -## Pobierz kompilacje - -Przejdź do stron pobierania platformy. Wszystkie wersje nocne są również publikowane jako wstępne wydanie na githubie. diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 4c492ec8c21..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Wersje przed 1.0" ---- - -Te wersje nie są już obsługiwane. Nowe wersje są dostępne w [wersjach](versions.md). - -| Wersja | Wspierane | | -| ------ | --------- | | -| | | | diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 3b9d9363184..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Polityka prywatności" -slug: /privacypolicy ---- - -To jest polityka prywatności aplikacji. Należy uważnie przeczytać ten dokument. Kliknij [tutaj](https://go.linwood.dev/privacypolicy) aby przeczytać politykę prywatności strony. - -CodeDoctor zbudował aplikację Flow jako aplikację Open Source. Usługa ta jest świadczona przez CodeDoctor za wszelką cenę i jest przeznaczona do użytku. - -Ta strona jest używana do informowania odwiedzających o moich zasadach z kolekcją, wykorzystanie i ujawnianie informacji osobowych, jeżeli ktoś zdecydował się skorzystać z mojej usługi. - -Jeśli zdecydujesz się korzystać z mojej usługi, zgadzasz się na zbieranie i wykorzystywanie informacji w związku z tą polityką. Osobiste informacje, które gromadzę, są wykorzystywane do świadczenia i doskonalenia usługi . Nie wykorzystam ani nie udostępnię twoich informacji nikomu poza opisem w niniejszej Polityce prywatności. - -Terminy używane w niniejszej Polityce Prywatności mają takie same znaczenie jak w naszym Regulaminie, które są dostępne przy przepływie danych, chyba że określono inaczej w niniejszej polityce prywatności. - -**Gromadzenie i wykorzystanie informacji** - -Dla lepszego doświadczenia, korzystając z naszego serwisu, mogę wymagać od Państwa dostarczenia pewnych informacji możliwych do identyfikacji osobiście. Informacje, których zażądam, zostaną zachowane na Twoim urządzeniu i nie są zbierane przez mnie w żaden sposób. - -Aplikacja korzysta z usług firm trzecich, które mogą gromadzić informacje używane do identyfikacji Ciebie. - -Link do polityki prywatności dostawców usług będących osobami trzecimi używanych przez aplikację - -* [Usługi Google Play](https://www.google.com/policies/privacy/) - -**Pliki cookie** - -Pliki cookie to pliki z niewielką ilością danych, które są powszechnie używane jako anonimowe niepowtarzalne identyfikatory. Są one wysyłane do Twojej przeglądarki ze stron, które odwiedzasz i są przechowywane w pamięci wewnętrznej urządzenia. - -Ta usługa nie używa tych "ciasteczek" bezpośrednio. Aplikacja może jednak używać kodu firm trzecich i bibliotek, które używają plików cookie do zbierania informacji i ulepszania swoich usług. Masz opcję , aby zaakceptować lub odrzucić te ciasteczka i wiedzieć kiedy ciasteczka są wysyłane na twoje urządzenie. Jeśli zdecydujesz się odrzucić nasze ciasteczka, możesz nie być w stanie użyć części tej usługi. - -**Dostawcy usług** - -Mogę zatrudniać przedsiębiorstwa i osoby fizyczne z następujących powodów: - -* Ułatwić korzystanie z naszych usług; -* świadczyć usługę w naszym imieniu; -* Do świadczenia usług związanych z usługami; lub -* Aby pomóc nam przeanalizować sposób korzystania z naszej usługi. - -Chcę poinformować użytkowników tej usługi o tym, że te osoby trzecie mają dostęp do Twoich danych osobowych. Powodem jest wykonanie zadań przydzielonych im w naszym imieniu. Są one jednak zobowiązane do nieujawniania lub wykorzystywania informacji do innych celów. - -**Bezpieczeństwo** - -Doceniam wasze zaufanie do dostarczania nam Twoich danych osobowych, dlatego staramy się wykorzystać akceptowalne z handlowego punktu widzenia sposoby ich ochrony. Należy jednak pamiętać, że nie ma żadnej metody transmisji przez Internet, lub metoda przechowywania elektronicznego jest w 100% bezpieczna i niezawodna i nie mogę zagwarantować jej absolutnego bezpieczeństwa. - -**Linki do innych witryn** - -Ta usługa może zawierać linki do innych witryn. Jeśli klikniesz na link osoby trzeciej, zostaniesz przekierowany na tę stronę. Pamiętaj, że te zewnętrzne strony nie są obsługiwane przeze mnie. Dlatego też zdecydowanie zalecam zapoznanie się z Polityką Prywatności tych stron. Nie mam kontroli nad treścią, polityką ochrony prywatności ani praktykami stron internetowych lub usług osób trzecich. - -**Zmiany w polityce prywatności** - -Mogę od czasu do czasu aktualizować naszą Politykę prywatności. Zaleca się zatem, aby okresowo przeglądać tę stronę pod kątem jakichkolwiek zmian. Powiadomię Cię o wszelkich zmianach, publikując nową Politykę prywatności na tej stronie . - -Polityka ta jest skuteczna od 2021-02-07 - -**Skontaktuj się z nami** - -Jeśli masz jakiekolwiek pytania lub sugestie dotyczące mojej polityki prywatności, nie wahaj się skontaktować ze mną pod adresem contact@linwood.dev. - -Ta strona polityki prywatności została utworzona w [privacypolicytemplate.net](https://privacypolicytemplate.net) i zmodyfikowana/wygenerowana przez [Generator Polityki prywatności](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs/current.json b/docs/i18n/pl/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 3700864364f..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Następny", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "serwer", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/pl/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 551c28cfb00..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Wprowadzanie - -Już wkrótce diff --git a/docs/i18n/pl/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/pl/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index cabc553badd..00000000000 --- a/docs/i18n/pl/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Lista błędów - -| Kod błędu | Kod statusu HTTP | Opis | -| --------- | ---------------- | ------------------------ | -| `0` | `404` | Strona nie znaleziona | -| `1` | `404` | Nieprawidłowa wersja api | -| `2` | `403` | Zabronione | -| `3` | `400` | Złe żądanie | diff --git a/docs/i18n/pl/docusaurus-theme-classic/footer.json b/docs/i18n/pl/docusaurus-theme-classic/footer.json deleted file mode 100644 index 5b119584c99..00000000000 --- a/docs/i18n/pl/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Społeczność", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Kod źródłowy", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Prawne", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matryca", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Aplikacja", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Serwer", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Dokumentacja", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Udostępnione", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Przewodnik wkładu", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Nadruk", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Polityka prywatności aplikacji", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Polityka prywatności strony internetowej", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logo Liniowodne", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/pl/docusaurus-theme-classic/navbar.json b/docs/i18n/pl/docusaurus-theme-classic/navbar.json deleted file mode 100644 index cb6523ddf7a..00000000000 --- a/docs/i18n/pl/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Przepływy", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logo przepływu", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Samouczek", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Pobrania", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Społeczność", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Więcej", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matryca", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licencja", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/pt-BR/code.json b/docs/i18n/pt-BR/code.json deleted file mode 100644 index 163fd573691..00000000000 --- a/docs/i18n/pt-BR/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Primeiros Passos", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Baixar para Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Baixar para Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Baixar para Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Abrir o aplicativo web", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Gerenciamento de tempo", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Gerencie e automatize a eficiência de tempo.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Gerenciamento de eventos", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Programar eventos, atribuir usuários a ele e fornecer tarefas", - "description": "Features Event management description" - }, - "Your data": { - "message": "Seus dados", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Todo mundo pode criar seu próprio servidor e ter seus dados nele.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Código-fonte aberto", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "O aplicativo e o servidor são todos de código aberto. Todos podem contribuir!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Esta página parou.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Página não encontrada", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Não conseguimos encontrar o que você está procurando.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Por favor, entre em contato com o proprietário do site que vinculou você à URL original e informe-lhes que o link está quebrado.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "Nota", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "perigo", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "informações", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "cuidado", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Arquivo", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Arquivo", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Voltar ao topo", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navegação da página lista do blog", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Entradas mais recentes", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Entradas mais antigas", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Navegação na página do blog", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Publicação mais recente", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Postagem mais antiga", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Uma postagem em{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} marcou com \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Ver Todos os Marcadores", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Alternar entre modo escuro e claro (atualmente {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "modo escuro", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "Modo luminoso", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Trilhos", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} itens", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navegação por páginas da documentação", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Anterior", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Próximo", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Um documento marcadolate.{count} documentos etiquetados", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} com \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versão: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Essa documentação não foi lançada para a versão {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Esta é a documentação do {siteTitle} {versionLabel}, que não é mais ativamente mantida.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Para documentação atualizada, veja o {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "última versão", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Editar esta página", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Link direto para {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " em {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " por {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Última atualização{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versões", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Marcadores:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "FECHAR", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Navegação nas postagens recentes do blog", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copiado", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copiar código para área de transferência", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "copiar", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Alternar quebra de palavra", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Principal", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Idiomas", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Nesta página", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Leitura de um min.{readingTime} min", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Ler Mais", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Leia mais sobre {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Página principal", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Fechar barra lateral", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Fechar barra lateral", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Fechar barra de navegação", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "Volte ao menu principal", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Alternar barra de navegação", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Nova versão disponível", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "atualizar", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "FECHAR", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Tente novamente", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Pular para o conteúdo principal", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Etiquetas", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "advertência", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expandir categoria de barra lateral '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Recolher categoria de barra lateral '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Página não listada", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Esta página não está listada. Motores de busca não irão indexá-la, e somente usuários com um link direto podem acessá-la.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} itens", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 5342568f1d0..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Próximo", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 48487142ff6..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Mudanças -hide_title: true -sidebar_label: Mudanças ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index ddfac6dcf76..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Código de conduta -hide_title: true -sidebar_label: Código de conduta ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 805c53dc37f..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contribuições" -hide_title: true -sidebar_label: "Contribuições" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index bdae391cfd8..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisitos mínimos do sistema - -* Android 5.0 (API nível 21) ou superior. - -## Binários - -
- - Estável - - - Noturno - -
- -Leia mais sobre a versão noturna do Flow [aqui](/nightly). diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index b83fc0cdef9..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Construa seu próprio" -sidebar_position: 1 ---- - -1. Instale o git e o flutter (beta) -2. Clonar o repositório -3. Navegue até o diretório de aplicativos -4. Use a ferramenta de aglutro para compilar o aplicativo - * `build build flamejante apk` - * `pacote de compilação flamejante` - * `construir uma teia de agitadores` - * `linux de agitação` - * `janelas de compilação flamejante` -5. Os arquivos compilados estão no diretório de compilação diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 5d4bf8e99d0..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Escolha sua plataforma - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Servidor - Selfhosting - -
- -## Links úteis - -- [Mudanças](changelog) -- [Lançamentos mais antigos](https://github.com/LinwoodDev/Flow/releases) -- [Última versão](https://github.com/LinwoodDev/Flow/releases/latest) -- [SUPORTE](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index bbaa5eced40..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::nota - -Por favor, use a versão flatpak, se possível. Caso contrário, você precisa instalar o `libsecret-1-dev` e `libjsoncpp-dev`. - -::: - -## Binários - -
-
- -
    -
  • - - Portátil - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portátil - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Leia mais sobre a versão noturna do Flow [aqui](/nightly). diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 4027b026bef..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 2363f2a6d2d..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Obrigado por baixar -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Obrigado por baixar - - - -## O Windows SmartScreen - - -o Windows avisa os usuários quando instalam programas sem um certificado. - -![Tela inteligente](/img/smart-screen.png) - -Para instalar o aplicativo, você precisa clicar em "Mais informações". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Então, clique em "Run anyway". - -
diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 2ce6e6eb903..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -É muito fácil hospedar seu próprio servidor web de fluxo. - -## Servidor simples - -Instale o flutter e construa o aplicativo usando: - -```bash -aplicativo cd -lutador pub obter -compilação web -``` - -Todos os arquivos estão no diretório `app/build/web`. - -## Atracador - -Clone o repositório e crie o `arquivo Dockerfile` usando: `docker build -t linwood-flow`. Inicie o servidor usando: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 323c4885ca7..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Obrigado por baixar -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Obrigado por baixar - - - -
diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 0e806d816bc..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::nota - -Este é um aplicativo progressivo da web. Você pode instalá-lo no navegador e usá-lo offline. Todos os dados são armazenados no seu navegador. - -::: - - -## Links - - - -## Versões - -A versão principal e a prévia (desenvolvida) do fluxo não são as mesmas que as versões estáveis e noturnas. Eles não estão diretamente associados a uma libertação. Eles são atualizados assim que um novo commit é enviado para o repositório. diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 6efe16ed5df..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Janelas" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisitos mínimos do sistema - -* Windows 10 ou superior. - -## Binários - -
-
- -
    -
  • - - Configuração - -
  • -
  • - - Portátil - -
  • -
-
-
- -
    -
  • - - Configuração - -
  • -
  • - - Portátil - -
  • -
-
-
- -Leia mais sobre a versão noturna do Flow [aqui](/nightly). diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 29f7ecddde5..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Perguntas Frequentes" -sidebar_label: "Perguntas Frequentes" ---- - -Eis algumas perguntas que são feitas com frequência. diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 62ef6490771..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Residencial" -sidebar_position: 0 -title: "Comunidade" ---- - -Bem-vindo à seção da comunidade. - -## Reconhecimentos - -Um agradecimento especial vai: - -* [Frutter](https://github.com/flutter/flutter) para prover essa útil estrutura multiplataforma ui -* [window_manager](https://github.com/leanflutter/window_manager) para todos estes recursos úteis da janela do desktop -* [Docusaurus](https://github.com/facebook/docusaurus) para uma estrutura de documentação de resposta estática fácil de usar - -Todas as outras licenças podem ser encontradas nas configurações. - -## Links úteis - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matriz](https://go.linwood.dev/matrix) diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index b5f1648fc7a..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Builds Noturnas" -slug: "/nightly" ---- - -:::warning - -Não use a versão noturna do Flow para produção. - -::: - -Builds Noturnas são projetadas para lhe dar a opção de testar a versão mais recente e obter os recursos mais recentes e dar feedback. - -## Obter as compilações - -Vá para as páginas de download da sua plataforma. Todas as compilações noturnas também são publicadas como pré-lançamento no github. diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 74f48bbe9a2..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Versões pré-1.0" ---- - -Estas versões não são mais suportadas. Novas versões estão disponíveis em [versões](versions.md). - -| Versão | Suportado | | -| ------ | --------- | | -| | | | diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 4c75b4dcb70..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Política de Privacidade" -slug: /privacypolicy ---- - -Esta é a política de privacidade do aplicativo. Por favor, leia-o com cuidado. Clique em [aqui](https://go.linwood.dev/privacypolicy) para ler a política de privacidade do site. - -CodeDoctor criou o aplicativo Flow como um aplicativo Open Source. Este SERVIÇO é fornecido pelo CodeDoctor sem nenhum custo e destina-se a ser usado como está. - -Esta página é usada para informar aos visitantes sobre minhas políticas com a coleção, uso, e divulgação de Informações Pessoais, se alguém decidir usar meu Serviço. - -Se você optar por usar meu Serviço, você concorda com a coleta e utilização de informações em relação a esta política. As Informações pessoais que eu coleto são usadas para fornecer e melhorar o Serviço. Eu não usarei ou compartilharei suas informações com ninguém, exceto como descrito nesta Política de Privacidade. - -Os termos usados nesta Política de Privacidade têm os mesmos significados em nossos Termos e Condições, que é acessível no Flow, a menos que esteja definido de outra forma nesta Política de Privacidade. - -**Coleta e Uso de Informações** - -Para uma melhor experiência, ao usar nosso Serviço, posso exigir que você nos forneça certas informações de identificação pessoal. As informações que eu solicitei serão mantidas no seu dispositivo e não são coletadas por mim de forma alguma. - -O aplicativo usa serviços de terceiros que podem coletar informações usadas para identificá-lo. - -Link para a política de privacidade de provedores de serviços de terceiros usados pelo aplicativo - -* [Serviços do Google Play](https://www.google.com/policies/privacy/) - -**Biscoitos** - -Cookies são arquivos com uma pequena quantidade de dados que são comumente usados como identificadores únicos anônimos. Estes são enviados para seu navegador a partir dos sites que você visita e são armazenados na memória interna do seu dispositivo. - -Este Serviço não usa esses "cookies" explicitamente. No entanto, o app pode usar códigos de terceiros e bibliotecas que usam "cookies" para coletar informações e melhorar seus serviços. Você tem a opção de aceitar ou recusar esses cookies e saber quando um cookie está sendo enviado para seu dispositivo. Se você optar por recusar nossos cookies, pode não ser capaz de usar algumas partes deste Serviço. - -**Prestadores de serviços** - -Eu posso empregar empresas e indivíduos de terceiros pelas seguintes razões: - -* Para facilitar nosso Serviço; -* Fornecer o Serviço em nosso nome; -* Para executar serviços relacionados ao serviço; ou -* Para nos ajudar a analisar como é usado nosso Serviço. - -Eu quero informar aos usuários deste Serviço que estes terceiros têm acesso às suas Informações Pessoais. O motivo é executar as tarefas que lhes foram atribuídas em nosso nome. No entanto, eles são obrigados a não divulgar ou usar as informações para qualquer outro propósito. - -**Segurança** - -Valorizo a sua confiança ao fornecer-nos suas Informações Pessoais, assim nos esforçamos por utilizar meios comercialmente aceitáveis para as proteger. Mas lembre-se de que nenhum método de transmissão pela internet, ou método de armazenamento eletrônico é 100% seguro e confiável, e não posso garantir sua absoluta segurança. - -**Links para Outros Sites** - -Este Serviço pode conter links para outros sites. Se você clicar em um link de terceiros, você será direcionado para esse site. Note-se que estes sítios externos não são operados por mim. Portanto, recomendo que você revise a Política de Privacidade destes sites. Eu não tenho controle e não assumo nenhuma responsabilidade pelo conteúdo, políticas de privacidade ou práticas de sites ou serviços de terceiros. - -**Alterações nesta Política de Privacidade** - -Eu posso atualizar nossa Política de Privacidade de vez em quando. Assim, recomendamos que você revise esta página periodicamente para quaisquer alterações. Eu irei notificá-lo de qualquer alteração publicando a nova Política de Privacidade nesta página. - -Esta política é eficaz a partir de 2021-02-07 - -**Entre em contato** - -Se você tiver dúvidas ou sugestões sobre a minha Política de Privacidade, não hesite em me contatar pelo contact@linwood.dev. - -Esta página de política de privacidade foi criada em [privacypolicytemplate.net](https://privacypolicytemplate.net) e foi modificada/gerada pelo [Gerador da Política de Privacidade do App](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current.json b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index ea17d074f23..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Próximo", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "Servidor", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 638570739ed..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introdução - -Em breve diff --git a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index c5c2f2722ea..00000000000 --- a/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Lista de erros - -| Código do erro | Código de status HTTP | Descrição: | -| -------------- | --------------------- | ---------------------- | -| `0` | `404` | Página não encontrada | -| `1` | `404` | Versão da api inválida | -| `2` | `403` | Proibido | -| `3` | `400` | Requisição inválida | diff --git a/docs/i18n/pt-BR/docusaurus-theme-classic/footer.json b/docs/i18n/pt-BR/docusaurus-theme-classic/footer.json deleted file mode 100644 index e901013720a..00000000000 --- a/docs/i18n/pt-BR/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Comunidade", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Código fonte", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Informações", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matriz", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Aplicativo", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Servidor", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Documentação", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Compartilhado", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Guia de contribuição", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprimir", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Política de privacidade do aplicativo", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Política de privacidade do site", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logotipo Linwood", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/pt-BR/docusaurus-theme-classic/navbar.json b/docs/i18n/pt-BR/docusaurus-theme-classic/navbar.json deleted file mode 100644 index a3a5ef0d45e..00000000000 --- a/docs/i18n/pt-BR/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Fluxo", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logotipo do Flow", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Comunidade", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "MAIS", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matriz", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blogue", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Tipo:", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/pt/code.json b/docs/i18n/pt/code.json deleted file mode 100644 index 163fd573691..00000000000 --- a/docs/i18n/pt/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Primeiros Passos", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Baixar para Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Baixar para Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Baixar para Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Abrir o aplicativo web", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Gerenciamento de tempo", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Gerencie e automatize a eficiência de tempo.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Gerenciamento de eventos", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Programar eventos, atribuir usuários a ele e fornecer tarefas", - "description": "Features Event management description" - }, - "Your data": { - "message": "Seus dados", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Todo mundo pode criar seu próprio servidor e ter seus dados nele.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Código-fonte aberto", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "O aplicativo e o servidor são todos de código aberto. Todos podem contribuir!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Esta página parou.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Página não encontrada", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Não conseguimos encontrar o que você está procurando.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Por favor, entre em contato com o proprietário do site que vinculou você à URL original e informe-lhes que o link está quebrado.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "Nota", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "perigo", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "informações", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "cuidado", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Arquivo", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Arquivo", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Voltar ao topo", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navegação da página lista do blog", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Entradas mais recentes", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Entradas mais antigas", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Navegação na página do blog", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Publicação mais recente", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Postagem mais antiga", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Uma postagem em{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} marcou com \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Ver Todos os Marcadores", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Alternar entre modo escuro e claro (atualmente {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "modo escuro", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "Modo luminoso", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Trilhos", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} itens", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navegação por páginas da documentação", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Anterior", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Próximo", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Um documento marcadolate.{count} documentos etiquetados", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} com \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versão: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Essa documentação não foi lançada para a versão {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Esta é a documentação do {siteTitle} {versionLabel}, que não é mais ativamente mantida.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Para documentação atualizada, veja o {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "última versão", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Editar esta página", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Link direto para {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " em {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " por {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Última atualização{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versões", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Marcadores:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "FECHAR", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Navegação nas postagens recentes do blog", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copiado", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copiar código para área de transferência", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "copiar", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Alternar quebra de palavra", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Principal", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Idiomas", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Nesta página", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Leitura de um min.{readingTime} min", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Ler Mais", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Leia mais sobre {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Página principal", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Fechar barra lateral", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Fechar barra lateral", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Fechar barra de navegação", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "Volte ao menu principal", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Alternar barra de navegação", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Nova versão disponível", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "atualizar", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "FECHAR", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Tente novamente", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Pular para o conteúdo principal", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Etiquetas", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "advertência", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expandir categoria de barra lateral '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Recolher categoria de barra lateral '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Página não listada", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Esta página não está listada. Motores de busca não irão indexá-la, e somente usuários com um link direto podem acessá-la.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} itens", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 5342568f1d0..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Próximo", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 48487142ff6..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Mudanças -hide_title: true -sidebar_label: Mudanças ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index ddfac6dcf76..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Código de conduta -hide_title: true -sidebar_label: Código de conduta ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 805c53dc37f..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contribuições" -hide_title: true -sidebar_label: "Contribuições" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index bdae391cfd8..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisitos mínimos do sistema - -* Android 5.0 (API nível 21) ou superior. - -## Binários - -
- - Estável - - - Noturno - -
- -Leia mais sobre a versão noturna do Flow [aqui](/nightly). diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index b83fc0cdef9..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Construa seu próprio" -sidebar_position: 1 ---- - -1. Instale o git e o flutter (beta) -2. Clonar o repositório -3. Navegue até o diretório de aplicativos -4. Use a ferramenta de aglutro para compilar o aplicativo - * `build build flamejante apk` - * `pacote de compilação flamejante` - * `construir uma teia de agitadores` - * `linux de agitação` - * `janelas de compilação flamejante` -5. Os arquivos compilados estão no diretório de compilação diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 5d4bf8e99d0..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Escolha sua plataforma - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Servidor - Selfhosting - -
- -## Links úteis - -- [Mudanças](changelog) -- [Lançamentos mais antigos](https://github.com/LinwoodDev/Flow/releases) -- [Última versão](https://github.com/LinwoodDev/Flow/releases/latest) -- [SUPORTE](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index bbaa5eced40..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::nota - -Por favor, use a versão flatpak, se possível. Caso contrário, você precisa instalar o `libsecret-1-dev` e `libjsoncpp-dev`. - -::: - -## Binários - -
-
- -
    -
  • - - Portátil - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portátil - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Leia mais sobre a versão noturna do Flow [aqui](/nightly). diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 4027b026bef..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 2363f2a6d2d..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Obrigado por baixar -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Obrigado por baixar - - - -## O Windows SmartScreen - - -o Windows avisa os usuários quando instalam programas sem um certificado. - -![Tela inteligente](/img/smart-screen.png) - -Para instalar o aplicativo, você precisa clicar em "Mais informações". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Então, clique em "Run anyway". - -
diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 2ce6e6eb903..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -É muito fácil hospedar seu próprio servidor web de fluxo. - -## Servidor simples - -Instale o flutter e construa o aplicativo usando: - -```bash -aplicativo cd -lutador pub obter -compilação web -``` - -Todos os arquivos estão no diretório `app/build/web`. - -## Atracador - -Clone o repositório e crie o `arquivo Dockerfile` usando: `docker build -t linwood-flow`. Inicie o servidor usando: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 323c4885ca7..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Obrigado por baixar -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Obrigado por baixar - - - -
diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 0e806d816bc..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::nota - -Este é um aplicativo progressivo da web. Você pode instalá-lo no navegador e usá-lo offline. Todos os dados são armazenados no seu navegador. - -::: - - -## Links - - - -## Versões - -A versão principal e a prévia (desenvolvida) do fluxo não são as mesmas que as versões estáveis e noturnas. Eles não estão diretamente associados a uma libertação. Eles são atualizados assim que um novo commit é enviado para o repositório. diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 6efe16ed5df..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Janelas" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versão de lançamento estável](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versão de lançamento noturna](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Requisitos mínimos do sistema - -* Windows 10 ou superior. - -## Binários - -
-
- -
    -
  • - - Configuração - -
  • -
  • - - Portátil - -
  • -
-
-
- -
    -
  • - - Configuração - -
  • -
  • - - Portátil - -
  • -
-
-
- -Leia mais sobre a versão noturna do Flow [aqui](/nightly). diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 29f7ecddde5..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Perguntas Frequentes" -sidebar_label: "Perguntas Frequentes" ---- - -Eis algumas perguntas que são feitas com frequência. diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 62ef6490771..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Residencial" -sidebar_position: 0 -title: "Comunidade" ---- - -Bem-vindo à seção da comunidade. - -## Reconhecimentos - -Um agradecimento especial vai: - -* [Frutter](https://github.com/flutter/flutter) para prover essa útil estrutura multiplataforma ui -* [window_manager](https://github.com/leanflutter/window_manager) para todos estes recursos úteis da janela do desktop -* [Docusaurus](https://github.com/facebook/docusaurus) para uma estrutura de documentação de resposta estática fácil de usar - -Todas as outras licenças podem ser encontradas nas configurações. - -## Links úteis - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matriz](https://go.linwood.dev/matrix) diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index b5f1648fc7a..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Builds Noturnas" -slug: "/nightly" ---- - -:::warning - -Não use a versão noturna do Flow para produção. - -::: - -Builds Noturnas são projetadas para lhe dar a opção de testar a versão mais recente e obter os recursos mais recentes e dar feedback. - -## Obter as compilações - -Vá para as páginas de download da sua plataforma. Todas as compilações noturnas também são publicadas como pré-lançamento no github. diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 74f48bbe9a2..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Versões pré-1.0" ---- - -Estas versões não são mais suportadas. Novas versões estão disponíveis em [versões](versions.md). - -| Versão | Suportado | | -| ------ | --------- | | -| | | | diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 4c75b4dcb70..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Política de Privacidade" -slug: /privacypolicy ---- - -Esta é a política de privacidade do aplicativo. Por favor, leia-o com cuidado. Clique em [aqui](https://go.linwood.dev/privacypolicy) para ler a política de privacidade do site. - -CodeDoctor criou o aplicativo Flow como um aplicativo Open Source. Este SERVIÇO é fornecido pelo CodeDoctor sem nenhum custo e destina-se a ser usado como está. - -Esta página é usada para informar aos visitantes sobre minhas políticas com a coleção, uso, e divulgação de Informações Pessoais, se alguém decidir usar meu Serviço. - -Se você optar por usar meu Serviço, você concorda com a coleta e utilização de informações em relação a esta política. As Informações pessoais que eu coleto são usadas para fornecer e melhorar o Serviço. Eu não usarei ou compartilharei suas informações com ninguém, exceto como descrito nesta Política de Privacidade. - -Os termos usados nesta Política de Privacidade têm os mesmos significados em nossos Termos e Condições, que é acessível no Flow, a menos que esteja definido de outra forma nesta Política de Privacidade. - -**Coleta e Uso de Informações** - -Para uma melhor experiência, ao usar nosso Serviço, posso exigir que você nos forneça certas informações de identificação pessoal. As informações que eu solicitei serão mantidas no seu dispositivo e não são coletadas por mim de forma alguma. - -O aplicativo usa serviços de terceiros que podem coletar informações usadas para identificá-lo. - -Link para a política de privacidade de provedores de serviços de terceiros usados pelo aplicativo - -* [Serviços do Google Play](https://www.google.com/policies/privacy/) - -**Biscoitos** - -Cookies são arquivos com uma pequena quantidade de dados que são comumente usados como identificadores únicos anônimos. Estes são enviados para seu navegador a partir dos sites que você visita e são armazenados na memória interna do seu dispositivo. - -Este Serviço não usa esses "cookies" explicitamente. No entanto, o app pode usar códigos de terceiros e bibliotecas que usam "cookies" para coletar informações e melhorar seus serviços. Você tem a opção de aceitar ou recusar esses cookies e saber quando um cookie está sendo enviado para seu dispositivo. Se você optar por recusar nossos cookies, pode não ser capaz de usar algumas partes deste Serviço. - -**Prestadores de serviços** - -Eu posso empregar empresas e indivíduos de terceiros pelas seguintes razões: - -* Para facilitar nosso Serviço; -* Fornecer o Serviço em nosso nome; -* Para executar serviços relacionados ao serviço; ou -* Para nos ajudar a analisar como é usado nosso Serviço. - -Eu quero informar aos usuários deste Serviço que estes terceiros têm acesso às suas Informações Pessoais. O motivo é executar as tarefas que lhes foram atribuídas em nosso nome. No entanto, eles são obrigados a não divulgar ou usar as informações para qualquer outro propósito. - -**Segurança** - -Valorizo a sua confiança ao fornecer-nos suas Informações Pessoais, assim nos esforçamos por utilizar meios comercialmente aceitáveis para as proteger. Mas lembre-se de que nenhum método de transmissão pela internet, ou método de armazenamento eletrônico é 100% seguro e confiável, e não posso garantir sua absoluta segurança. - -**Links para Outros Sites** - -Este Serviço pode conter links para outros sites. Se você clicar em um link de terceiros, você será direcionado para esse site. Note-se que estes sítios externos não são operados por mim. Portanto, recomendo que você revise a Política de Privacidade destes sites. Eu não tenho controle e não assumo nenhuma responsabilidade pelo conteúdo, políticas de privacidade ou práticas de sites ou serviços de terceiros. - -**Alterações nesta Política de Privacidade** - -Eu posso atualizar nossa Política de Privacidade de vez em quando. Assim, recomendamos que você revise esta página periodicamente para quaisquer alterações. Eu irei notificá-lo de qualquer alteração publicando a nova Política de Privacidade nesta página. - -Esta política é eficaz a partir de 2021-02-07 - -**Entre em contato** - -Se você tiver dúvidas ou sugestões sobre a minha Política de Privacidade, não hesite em me contatar pelo contact@linwood.dev. - -Esta página de política de privacidade foi criada em [privacypolicytemplate.net](https://privacypolicytemplate.net) e foi modificada/gerada pelo [Gerador da Política de Privacidade do App](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs/current.json b/docs/i18n/pt/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index ea17d074f23..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Próximo", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "Servidor", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/pt/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 638570739ed..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introdução - -Em breve diff --git a/docs/i18n/pt/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/pt/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index c5c2f2722ea..00000000000 --- a/docs/i18n/pt/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Lista de erros - -| Código do erro | Código de status HTTP | Descrição: | -| -------------- | --------------------- | ---------------------- | -| `0` | `404` | Página não encontrada | -| `1` | `404` | Versão da api inválida | -| `2` | `403` | Proibido | -| `3` | `400` | Requisição inválida | diff --git a/docs/i18n/pt/docusaurus-theme-classic/footer.json b/docs/i18n/pt/docusaurus-theme-classic/footer.json deleted file mode 100644 index e901013720a..00000000000 --- a/docs/i18n/pt/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Comunidade", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Código fonte", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Informações", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matriz", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Aplicativo", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Servidor", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Documentação", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Compartilhado", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Guia de contribuição", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprimir", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Política de privacidade do aplicativo", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Política de privacidade do site", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logotipo Linwood", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/pt/docusaurus-theme-classic/navbar.json b/docs/i18n/pt/docusaurus-theme-classic/navbar.json deleted file mode 100644 index a3a5ef0d45e..00000000000 --- a/docs/i18n/pt/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Fluxo", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logotipo do Flow", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Comunidade", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "MAIS", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matriz", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blogue", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Tipo:", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/ro/code.json b/docs/i18n/ro/code.json deleted file mode 100644 index 34913691bdc..00000000000 --- a/docs/i18n/ro/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Noțiuni de bază", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Descarcă pentru Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Descarcă pentru Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Descarcă pentru Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Deschide aplicația web", - "description": "homepage web button" - }, - "Downloads": { - "message": "Descărcări", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Managementul timpului", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Gestionați eficiența timpului și automatizați-o.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Gestionare eveniment", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Programați evenimente, atribuiți utilizatorilor și dați-i sarcini", - "description": "Features Event management description" - }, - "Your data": { - "message": "Datele tale", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Oricine își poate crea propriul server și poate avea datele tale pe el.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Sursă deschisă", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Aplicația și serverul sunt toate open source. Toată lumea poate să contribuie!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Această pagină s-a prăbușit.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Pagina nu a fost găsită", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Nu am putut găsi ceea ce căutați.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Vă rugăm să contactaţi proprietarul site-ului care v-a asociat la URL-ul original şi să îi anunţaţi că link-ul este stricat.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "notă", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "pericol", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "informaţii", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "precauţie", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Arhivează", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Arhivează", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Derulează înapoi în sus", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Navigare pagină listă blog", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Intrari mai noi", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Intrari mai vechi", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Navigare pagină postare blog", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Post mai nou", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Articol vechi", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "O postare{count}", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} etichetat cu \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Vezi toate etichetele", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Comutați între modul întunecat și cel deschis (în prezent {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "mod întunecat", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "mod luminos", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumb-uri", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} obiecte", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Navigare pagini documente", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Anterior", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Următoarea", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Un document etichetat{count} documente etichetate", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} cu \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Versiune: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Aceasta este documentaţia neeliberată pentru versiunea {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Această documentație este pentru {siteTitle} {versionLabel}, care nu mai este întreținută activ.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Pentru documentație actualizată, a se vedea {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "ultima versiune", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Editează această pagină", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Legătură directă către {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " pe {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " până la {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Ultima actualizare{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versiuni", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Etichete:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Inchide", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Navigare postări recente pe blog", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copiat", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copiază codul în clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copiază", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Comută înglobarea cuvintelor", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Principal", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Limbi", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "Pe această pagină", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Un min citire{readingTime} min", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Citește mai mult", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Citește mai multe despre {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Pagina principală", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Restrânge bara laterală", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Restrânge bara laterală", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Închide bara de navigare", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "-Înapoi la meniul principal", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Comută bara de navigare", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Versiune nouă disponibilă", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Împrospătează", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Inchide", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Încercați din nou", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Salt la conținutul principal", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Etichete", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "avertizare", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Extinde categoria barei laterale '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Restrânge categoria barei laterale '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Pagină nelistată", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Această pagină nu este listată. Motoarele de căutare nu o vor indexa, și numai utilizatorii care au un link direct îl pot accesa.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} obiecte", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index c49693ffe4b..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Următoarea", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 9053bfed98a..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Jurnal modificări -hide_title: true -sidebar_label: Jurnal modificări ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index dbfdf3f6014..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Codul de conduită -hide_title: true -sidebar_label: Codul de conduită ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 41500e29a23..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contribuție" -hide_title: true -sidebar_label: "Contribuție" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 6c98c0ddf4c..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Descărcări" -} \ No newline at end of file diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 060b0d79960..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versiune stabilă de lansare](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versiune lansare nocturnă](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Cerințe minime de sistem - -* Android 5.0 (API nivel 21) sau mai mare. - -## Binare - -
- - Stabil - - - Noptez - -
- -Citește mai multe despre versiunea nocturnă a fluxului [aici](/nightly). diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 15d6f10ca95..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Construiți-vă propriul" -sidebar_position: 1 ---- - -1. Instalează git și flutter (beta) -2. Clonează depozitul -3. Navigați în directorul de aplicații -4. Folosiți instrumentul flutter pentru a compila aplicația - * `flutter construit apk` - * `flutter construit apppachet` - * `flutter construit web` - * `flutter construit linux` - * `flutter construit ferestre` -5. Fișierele compilate sunt în directorul de construcții diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index dff746689ae..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Descărcări ---- - -![Versiune stabilă de lansare](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versiune lansare nocturnă](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Alege-ți platforma - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Link-uri utile - -- [Jurnal modificări](changelog) -- [Partajări mai vechi](https://github.com/LinwoodDev/Flow/releases) -- [Ultima versiune](https://github.com/LinwoodDev/Flow/releases/latest) -- [Suport](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index fa70f353867..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versiune stabilă de lansare](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versiune lansare nocturnă](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Vă rugăm să folosiți versiunea netedă, dacă este posibil. Altfel trebuie să instalezi `libsecret-1-dev` și `libjsoncpp-dev`. - -::: - -## Binare - -
-
- -
    -
  • - - Portabil - -
  • -
  • - - DEO - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portabil - -
  • -
  • - - DEO - -
  • -
  • - - AppImage - -
  • -
-
-
- -Citește mai multe despre versiunea nocturnă a fluxului [aici](/nightly). diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 46dc598ab44..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Versiune stabilă de lansare](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versiune lansare nocturnă](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Link-uri - - diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index e3216313456..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Vă mulțumim pentru descărcare -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Vă mulțumim pentru descărcare - - - -## SmartScreen - - -Windows avertizează utilizatorii când instalează software-ul fără certificat. - -![Ecran inteligent](/img/smart-screen.png) - -Pentru a instala aplicația, trebuie să faceți clic pe "Mai multe informații". - -![Mai multe informații despre ecranul inteligent](/img/smart-screen-more-info.png) - -Apoi, apasă pe "Rulează oricum". - -
diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 9eea6cb542f..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Versiune stabilă de lansare](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versiune lansare nocturnă](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Este foarte ușor să îți găzduiești propriul server de flux. - -## Server simplu - -Instalați flutter și construiți aplicația folosind: - -```bash -cd app -flutter pub obţine -flutter build web -``` - -Toate fișierele sunt în directorul `app/build/web`. - -## Doctor - -Clonează depozitul și construiește fișierul `Dockerfile` folosind: `docker construiește -t linwood-flow`. Pornește serverul folosind: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index fe4fafc06e7..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Vă mulțumim pentru descărcare -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Vă mulțumim pentru descărcare - - - -
diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 820b6569487..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Versiune stabilă de lansare](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versiune lansare nocturnă](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Aceasta este o aplicație web progresivă. Îl poți instala în browser și îl poți folosi offline. Toate datele sunt stocate în browser-ul tău. - -::: - - -## Link-uri - - - -## Versiuni - -Versiunile principale și cele de previzualizare (dezvoltare) ale Flow nu sunt la fel cu cele stabile și nocturne . Acestea nu sunt asociate direct cu o eliberare. Acestea sunt actualizate de îndată ce un nou angajament este împins către depozit. diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index dea7dd938f6..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Ferestre" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Versiune stabilă de lansare](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Versiune lansare nocturnă](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Cerințe minime de sistem - -* Windows 10 sau mai mult. - -## Binare - -
-
- -
    -
  • - - Configurare - -
  • -
  • - - Portabil - -
  • -
-
-
- -
    -
  • - - Configurare - -
  • -
  • - - Portabil - -
  • -
-
-
- -Citește mai multe despre versiunea nocturnă a fluxului [aici](/nightly). diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a2c7bea1296..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Întrebări frecvente" -sidebar_label: "Întrebări" ---- - -Iată câteva întrebări puse frecvent. diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 8c48215d27b..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Acasă" -sidebar_position: 0 -title: "Comunitate" ---- - -Bine ați venit la secțiunea comunitate. - -## Mulţumiri - -Mulțumiri speciale se referă la: - -* [Flutter](https://github.com/flutter/flutter) pentru furnizarea acestui cadru util pentru platforma intersectare ui -* [window_manager](https://github.com/leanflutter/window_manager) pentru toate aceste funcții utile pentru fereastra desktop -* [Docusaurus](https://github.com/facebook/docusaurus) pentru un documentație de reacție statică ușor de utilizat - -Toate celelalte licențe pot fi găsite în setări. - -## Link-uri utile - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matricea](https://go.linwood.dev/matrix) diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 5ea314c7e8f..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Construire nocturnă" -slug: "/nightly" ---- - -:::Avertisment - -Nu utilizaţi versiunea nocturnă a fluxului pentru producţie. - -::: - -Construcțiile nocturne sunt concepute pentru a vă oferi opțiunea de a testa cea mai recentă versiune și de a obține cele mai noi funcționalități și de a da feedback. - -## Obțineți versiunile - -Mergeți la paginile de descărcare ale platformei dvs. Toate construcțiile nocturne sunt publicate și ca versiune pre-lansată pe github. diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 2a9b329b4b7..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Versiuni Pre-1.0" ---- - -Aceste versiuni nu mai sunt acceptate. Versiuni noi sunt disponibile la [versiuni](versions.md). - -| Versiune | Suportat | | -| -------- | -------- | | -| | | | diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 89c113f353f..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Politica de confidenţialitate" -slug: /privacypolicy ---- - -Aceasta este politica de confidențialitate a aplicației. Vă rugăm să o citiţi cu atenţie. Faceţi clic [aici](https://go.linwood.dev/privacypolicy) pentru a citi politica de confidenţialitate a website-ului. - -CodeDoctor a construit aplicația Flow ca aplicație Open Source. Acest SERVICE este furnizat de CodeDoctor fără costuri și este destinat utilizării așa cum este. - -Această pagină este folosită pentru a informa vizitatorii cu privire la politicile mele cu privire la colecție, utilizarea și divulgarea de informații personale în cazul în care cineva a decis să folosească serviciul meu. - -Dacă alegi să folosești serviciul meu, atunci ești de acord cu colectarea și utilizarea informațiilor legate de această politică. Informațiile personale pe care le colectez sunt folosite pentru furnizarea și îmbunătățirea Serviciului. Nu voi folosi și nici nu voi împărtăși informațiile tale cu nimeni, cu excepția celor descrise în această Politică de confidențialitate. - -Termenii utilizaţi în această Politică de Confidenţialitate au aceleaşi înţelesuri ca în Termenii şi Condiţiile noastre, care este accesibil în Flux, cu excepția cazului în care se prevede altfel în prezenta politică de confidențialitate. - -**Colectarea și utilizarea informațiilor** - -Pentru o experiență mai bună, în timp ce folosesc serviciul nostru, vă pot cere să ne furnizați anumite informații care pot fi identificate personal. Informațiile pe care le solicit vor fi păstrate pe dispozitivul dvs. și nu sunt colectate de mine în niciun fel. - -Aplicația folosește servicii terțe care pot colecta informații folosite pentru a vă identifica. - -Link către politica de confidențialitate a furnizorilor terți de servicii utilizați de aplicație - -* [Servicii Google Play](https://www.google.com/policies/privacy/) - -**Cookie-uri** - -Cookie-urile sunt fișiere cu o cantitate mică de date care sunt utilizate în mod curent ca identificatori unici anonimi. Acestea sunt trimise browser-ului tău de pe site-urile pe care le vizitezi și sunt stocate pe memoria internă a dispozitivului. - -Acest serviciu nu folosește aceste „cookies” în mod explicit. Cu toate acestea, aplicația poate utiliza codul și bibliotecile terțe care folosesc "cookies" pentru a colecta informații și a îmbunătăți serviciile lor. Aveți opțiunea de a accepta sau refuza aceste cookie-uri și de a ști când un cookie este trimis pe dispozitivul dvs. Dacă alegeți să refuzați cookie-urile noastre, este posibil să nu puteți utiliza unele porțiuni din acest serviciu. - -**Furnizori de servicii** - -Pot angaja societăți terțe și persoane fizice din următoarele motive: - -* Pentru a facilita serviciul nostru; -* Furnizarea serviciului în numele nostru; -* Pentru a efectua servicii conexe serviciilor sau -* Pentru a ne ajuta în analizarea modului în care este folosit serviciul nostru. - -Doresc să informez utilizatorii acestui serviciu că aceşti terţi au acces la informaţiile dumneavoastră personale. Motivul este de a îndeplini sarcinile care le-au fost atribuite în numele nostru. Cu toate acestea, ei sunt obligați să nu dezvăluie sau să folosească informațiile în alt scop. - -**Securitate** - -Apreciez încrederea dvs. în furnizarea de informații personale, astfel că ne străduim să folosim mijloace acceptabile din punct de vedere comercial de protejare a acestora. Reţineţi însă că nu există nicio metodă de transmitere prin internet, sau metoda de stocare electronică este 100% sigură și fiabilă și nu îi pot garanta securitatea absolută. - -**Link-uri către alte site-uri** - -Acest serviciu poate conține link-uri către alte site-uri. Dacă faceți clic pe un link terț, veți fi direcționat către acel site. Reţineţi că aceste site-uri externe nu sunt exploatate de mine. Prin urmare, vă sfătuiesc insistent să revizuiţi Politica de confidenţialitate a acestor site-uri. Nu am control și nu îmi asum nicio responsabilitate pentru conținutul, politicile de confidențialitate sau practicile niciunui site sau serviciu terț. - -**Modificări ale acestei Politici de confidenţialitate** - -Pot actualiza Politica noastră de confidențialitate din când în când. De aceea, vi se recomandă să revizuiţi periodic această pagină pentru a vedea orice modificări. Vă voi notifica orice modificări postând noua Politică de Confidențialitate pe această pagină . - -Această politică este eficientă începând cu 2021-02-07. - -**Contactează-ne** - -Dacă aveți întrebări sau sugestii despre Politica mea de confidențialitate, nu ezitați să mă contactați la contact@linwood.dev. - -Această pagină a politicii de confidențialitate a fost creată la [privacypolicytemplate.net](https://privacypolicytemplate.net) și modificat/generată de [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs/current.json b/docs/i18n/ro/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 3fc528d9d0d..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Următoarea", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/ro/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 604ac5c407f..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introducere - -În curând diff --git a/docs/i18n/ro/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/ro/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 5d10e0c76a9..00000000000 --- a/docs/i18n/ro/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Listă de erori - -| Cod eroare | Cod de stare HTTP | Descriere | -| ---------- | ----------------- | ----------------------- | -| `0` | `404` | Pagina nu a fost găsită | -| `1` | `404` | Versiune API nevalidă | -| `2` | `403` | Interzis | -| `3` | `400` | Solicitare greșită | diff --git a/docs/i18n/ro/docusaurus-theme-classic/footer.json b/docs/i18n/ro/docusaurus-theme-classic/footer.json deleted file mode 100644 index b80f5cfeace..00000000000 --- a/docs/i18n/ro/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Comunitate", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Cod sursă", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Juridic", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matricea", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Aplicație", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Documente", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Partajat", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Ghid de contribuție", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Amprentă", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Politica de confidențialitate a aplicației", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Politica de confidențialitate a site-ului", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Logo Linwood", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/ro/docusaurus-theme-classic/navbar.json b/docs/i18n/ro/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 32cbaed598a..00000000000 --- a/docs/i18n/ro/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Fluxuri", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Logo Flow", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Descărcări", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Comunitate", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Mai", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matricea", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licenta", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/ru/code.json b/docs/i18n/ru/code.json deleted file mode 100644 index fe4561b7849..00000000000 --- a/docs/i18n/ru/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Приступая к работе", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Скачать для Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Скачать для Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Скачать для Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Открыть веб-приложение", - "description": "homepage web button" - }, - "Downloads": { - "message": "Загрузки", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Управление временем", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Управляйте эффективностью времени и автоматизируйте его.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Управление событиями", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Запланировать мероприятия, назначать пользователей и давать им задачи", - "description": "Features Event management description" - }, - "Your data": { - "message": "Ваши данные", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Каждый может создать свой собственный сервер и иметь на нем свои данные.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Открытый код", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Приложение и сервер все открытые исходные коды. Все могут внести свой вклад!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Эта страница прервана.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Страница не найдена", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Мы не смогли найти то, что вы искали.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Пожалуйста, свяжитесь с владельцем сайта, который связал вас с оригинальным URL и сообщите, что их ссылка повреждена.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "заметка", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "опасность", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "инфо", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "осторожность", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Архивировать", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Архивировать", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Вернуться к началу", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Навигация по списку блогов", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Новые записи", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Старые записи", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Навигация страницы блога", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Новый пост", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Старый пост", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Одно сообщение|{count} сообщений", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} с тегом \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Все теги", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Переключение между темным и светлым режимом (сейчас {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "темный режим", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "легкий режим", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Навигационные крошки", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} элементов", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Навигация страниц документов", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Предыдущий", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Следующий", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Один doc с тегом|{count} документов с тегом", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} с \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Версия: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Это невыпущенная документация для версии {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Это документация для {siteTitle} {versionLabel}, которая больше не поддерживается.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Для получения актуальной документации обратитесь к {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "последняя версия", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Редактировать эту страницу", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Прямая ссылка на {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " на {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " от {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Последнее обновление{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Версии", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Теги:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Закрыть", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Блог последних сообщений навигации", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Скопировано", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Копировать код в буфер обмена", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Копировать", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Переключить перенос слов", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Главный", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Языки", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "На этой странице", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "Один мин чтения|{readingTime} мин прочитано", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Читать далее", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Подробнее о {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Главная страница", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Свернуть боковую панель", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Свернуть боковую панель", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Закрыть панель навигации", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": " Назад в главное меню", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Переключить панель навигации", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Доступна новая версия", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Обновить", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Закрыть", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Попробовать еще раз", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Перейти к основному контенту", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Теги", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "предупреждение", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Развернуть категорию боковой панели '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Свернуть боковую панель категории '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Страница не внесена", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Эта страница удалена. Поисковые системы не будут индексировать ее, и только пользователи, имеющие прямую ссылку, имеют доступ к ней.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} элементов", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index e4fd6395d68..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Следующий", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 70138e61c15..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Список изменений -hide_title: true -sidebar_label: Список изменений ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 0604e9a4ef2..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Кодекс поведения -hide_title: true -sidebar_label: Кодекс поведения ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index a0cf8ffd1df..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Вклад" -hide_title: true -sidebar_label: "Вклад" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 7e7c5610ef4..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Загрузки" -} \ No newline at end of file diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index ee3ad322ac8..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Стабильная версия релиза](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Ночной релиз версии](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Минимальные системные требования - -* Android 5.0 (API уровень 21) или выше. - -## Бинары - -
- - Конюшня - - - Ночной - -
- -Подробнее о ночной версии Flow [здесь](/nightly). diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 03abd0d3cb5..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Создайте свой собственный" -sidebar_position: 1 ---- - -1. Установить git и flutter (бета-версия) -2. Клонировать репозиторий -3. Перейдите в каталог приложения -4. Используйте инструмент flutter для компиляции приложения - * `apk сборки flutter` - * `пакет для сборки flutter` - * `веб-сборка flutter` - * `сборка flutter linux` - * `окна для флэттера` -5. Скомпилированные файлы находятся в каталоге сборки diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index b164cd81053..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Загрузки ---- - -![Стабильная версия релиза](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Ночной релиз версии](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Выберите платформу - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Сервер - Selfhosting - -
- -## Полезные ссылки - -- [Список изменений](changelog) -- [Старые релизы](https://github.com/LinwoodDev/Flow/releases) -- [Последний релиз](https://github.com/LinwoodDev/Flow/releases/latest) -- [Поддержка](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 09358140054..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Стабильная версия релиза](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Ночной релиз версии](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Пожалуйста, используйте версию flatpak, если это возможно. В противном случае вам нужно установить `libsecret-1-dev` и `libjsoncpp-dev`. - -::: - -## Бинары - -
-
- -
    -
  • - - Портативный - -
  • -
  • - - ДЕБ - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Портативный - -
  • -
  • - - ДЕБ - -
  • -
  • - - AppImage - -
  • -
-
-
- -Подробнее о ночной версии Flow [здесь](/nightly). diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 121bf65ab40..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Стабильная версия релиза](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Ночной релиз версии](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Ссылки - - diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index f898da63efb..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Спасибо за загрузку -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Спасибо за загрузку - - - -## Windows SmartScreen - - -Windows предупреждает пользователей при установке программного обеспечения без сертификата. - -![Умный экран](/img/smart-screen.png) - -Чтобы установить приложение, нажмите на "Подробнее". - -![Больше информации о умном экране](/img/smart-screen-more-info.png) - -Затем нажмите на кнопку "В любом случае". - -
diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index a39f28cc700..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Стабильная версия релиза](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Ночной релиз версии](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Это очень легко разместить собственный веб-сервер потока. - -## Простой сервер - -Установите flutter и постройте приложение с помощью: - -```bash -Приложение cd -flutter pub получить -flutter build web -``` - -Все файлы находятся в папке `app/build/web`. - -## Докер - -Клонируйте репозиторий и создайте `Dockerfile` с помощью: `docker build -t linwood-flow`. Запустите сервер используя `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 702fa19d131..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Спасибо за загрузку -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - - diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 46423177bfe..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Веб" -sidebar_position: 5 ---- - -![Стабильная версия релиза](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Ночной релиз версии](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Это прогрессивное веб-приложение. Вы можете установить его в вашем браузере и использовать его в автономном режиме. Все данные хранятся в Вашем браузере. - -::: - - -## Ссылки - - - -## Версии - -Основные и предварительные (разрабатываемые) версии Flow не совпадают со стабильными и ночными версиями. Они не связаны напрямую с выпуском. Они обновляются, как только новые коммиты будут отправлены в репозиторий. diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index d6925a421d7..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Окна" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Стабильная версия релиза](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Ночной релиз версии](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Минимальные системные требования - -* Windows 10 или выше. - -## Бинары - -
-
- -
    -
  • - - Настройка - -
  • -
  • - - Портативный - -
  • -
-
-
- -
    -
  • - - Настройка - -
  • -
  • - - Портативный - -
  • -
-
-
- -Подробнее о ночной версии Flow [здесь](/nightly). diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 5e10da07e48..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Часто задаваемые вопросы" -sidebar_label: "ЧАВО" ---- - -Вот некоторые часто задаваемые вопросы. diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index d602ad924a7..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Домашний" -sidebar_position: 0 -title: "Сообщество" ---- - -Добро пожаловать в раздел сообщества. - -## Выражение признательности - -Особая благодарность дает: - -* [Flutter](https://github.com/flutter/flutter) для предоставления этой полезной кросплатформенной UI рамки -* [window_manager](https://github.com/leanflutter/window_manager) для всех функций рабочего окна -* [Docusaurus](https://github.com/facebook/docusaurus) для простой в использовании статической реактуальной документации - -Все остальные лицензии могут быть найдены в настройках. - -## Полезные ссылки - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Матрица](https://go.linwood.dev/matrix) diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index c34084eee01..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Ночные сборки" -slug: "/nightly" ---- - -:::warning - -Не используйте ночную версию Flow для производства. - -::: - -Ночные сборки предназначены для того, чтобы дать вам возможность протестировать последнюю версию и получить новейшие возможности и оставить отзыв. - -## Получить сборки - -Перейдите на страницы загрузки вашей платформы. Все ночные сборки также публикуются в качестве предварительного релиза на github. diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 77e3a649a18..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 версий" ---- - -Эти версии больше не поддерживаются. Новые версии доступны на [версиях](versions.md). - -| Версии | Поддерживается | | -| ------ | -------------- | | -| | | | diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index caa27756f32..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Политика конфиденциальности" -slug: /privacypolicy ---- - -Это политика конфиденциальности приложения. Пожалуйста, внимательно прочитайте его. Нажмите [здесь](https://go.linwood.dev/privacypolicy) для ознакомления с политикой конфиденциальности сайта. - -CodeDoctor создал приложение Flow как приложение с открытым исходным кодом. Этот СЕРВИС предоставляется CodeDoctor бесплатно, и предназначен для использования как есть. - -Эта страница используется для информирования посетителей о моих политиках с коллекцией, Использование и разглашение Личной информации, если кто-либо решит использовать мою Услугу. - -Если вы решите воспользоваться моим Сервисом, вы соглашаетесь со сбором и использованием информации в связи с этой политикой. Личная информация, которую я собираю, используется для предоставления и улучшения Сервиса . Я не буду использовать ваши данные и не передавать их никому, кроме как описано в настоящей Политике конфиденциальности. - -Термины, используемые в настоящей Политике конфиденциальности, имеют те же значения, что и в наших Правилах и Условиях, , который доступен на Flow, если в данной Политике конфиденциальности не указано иное. - -**Сбор и использование информации** - -Для получения более качественного опыта, при использовании нашего Сервиса, я могу потребовать от вас предоставить нам определенную личную информацию. Информация, которую я запрашиваю, будет сохранена на вашем устройстве и не собирается мной никоим образом. - -Приложение использует сторонние сервисы, которые могут собирать информацию, используемую для идентификации вас. - -Ссылка на политику конфиденциальности сторонних поставщиков услуг, используемых приложением - -* [Сервисы Google Play](https://www.google.com/policies/privacy/) - -**Печенье** - -Cookies - это файлы с небольшим количеством данных, которые обычно используются в качестве анонимных уникальных идентификаторов. Они отправляются в ваш браузер с сайтов, которые вы посещаете и хранятся на внутренней памяти вашего устройства. - -Данная Сервис не использует эти «cookies» явно. Однако приложение может использовать сторонний код и библиотеки, использующие «cookies» для сбора информации и улучшения их сервисов. У вас есть возможность принять или отклонить эти cookies и знать, когда cookie отправляется на ваше устройство. Если вы решите отказать в наших куках, вы можете не использовать некоторые части данного сервиса. - -**Поставщики услуг** - -Я могу использовать компании и физические лица третьих сторон по следующим причинам: - -* оказывать содействие нашей службе; -* Предоставление Услуг от нашего имени; -* Выполнение сервисных услуг; или -* Чтобы помочь нам в анализе использования нашего Сервиса. - -Я хочу сообщить пользователям об этом Сервисе, что эти третьи лица имеют доступ к вашим персональным данным. Причина заключается в выполнении задач, возложенных на них от нашего имени. Тем не менее, они обязаны не разглашать или не использовать эту информацию в других целях. - -**Безопасность** - -Я высоко ценю Ваше доверие к нам в предоставлении Вашей Личной информации, поэтому мы стремимся использовать коммерчески приемлемые средства ее защиты. Но помните, что ни один из способов передачи через интернет, или метод электронного хранилища на 100% надежный, и я не могу гарантировать его абсолютную безопасность. - -**Ссылки на другие сайты** - -Сервис может содержать ссылки на другие сайты. Нажав на ссылку, вы будете перенаправлены на этот сайт. Обратите внимание, что эти внешние сайты не управляются мной. Therefore, I strongly advise you to review the Privacy Policy of these websites. Я не контролирую и не беру на себя ответственность за содержание, политику конфиденциальности или практику каких-либо сторонних сайтов или услуг. - -**Изменения в Политике конфиденциальности** - -Я могу периодически обновлять нашу политику конфиденциальности. Таким образом, вам периодически рекомендуется просматривать эту страницу о любых изменениях. Я сообщу вам о любых изменениях, разместив новую Политику конфиденциальности на этой странице. - -Эта политика действует начиная с 2021-02-07 - -**Свяжитесь с нами** - -Если у вас есть какие-либо вопросы или предложения по моей Политике конфиденциальности, не стесняйтесь связаться со мной по адресу contact@linwood.dev. - -Эта страница политики конфиденциальности была создана на [privacypolicytemplate.net](https://privacypolicytemplate.net) и изменена/сгенерирована [Генератором Политики Конфиденциальности Приложения](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current.json b/docs/i18n/ru/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index dc73b600544..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Следующий", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "сервер", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 320292b5c7c..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Введение - -Скоро появится diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 6832e737742..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Список ошибок - -| Код ошибки | Код состояния HTTP | Описание | -| ---------- | ------------------ | ------------------- | -| `0` | `404` | Страница не найдена | -| `1` | `404` | Неверная версия api | -| `2` | `403` | Запрещено | -| `3` | `400` | Неверный запрос | diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json deleted file mode 100644 index 135e4a6858b..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Basics", - "position": 2 -} diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md deleted file mode 100644 index 9ef99bbadd9..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/congratulations.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -sidebar_position: 6 ---- - -# Congratulations! - -You have just learned the **basics of Docusaurus** and made some changes to the **initial template**. - -Docusaurus has **much more to offer**! - -Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**. - -Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610) - -## What's next? - -- Read the [official documentation](https://docusaurus.io/). -- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout) -- Add a [search bar](https://docusaurus.io/docs/search) -- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase) -- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support) diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index d893e1c74fd..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -sidebar_position: 3 ---- - -# Create a Blog Post - -Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed... - -## Create your first Post - -Create a file at `blog/2021-02-28-greetings.md`: - -```md title="blog/2021-02-28-greetings.md" ---- -slug: greetings -title: Greetings! -author: Steven Hansel -author_title: Docusaurus Contributor -author_url: https://github.com/ShinteiMai -author_image_url: https://github.com/ShinteiMai.png -tags: [greetings] ---- - -Congratulations, you have made your first post! - -Feel free to play around and edit this post as much you like. -``` - -A new blog post is now available at `http://localhost:3000/blog/greetings`. diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md deleted file mode 100644 index 66b58543d43..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-document.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Create a Document - -Documents are **groups of pages** connected through: - -- a **sidebar** -- **previous/next navigation** -- **versioning** - -## Create your first Doc - -Create a markdown file at `docs/hello.md`: - -```md title="docs/hello.md" -# Hello - -This is my **first Docusaurus document**! -``` - -A new document is now available at `http://localhost:3000/docs/hello`. - -## Configure the Sidebar - -Docusaurus automatically **creates a sidebar** from the `docs` folder. - -Add metadatas to customize the sidebar label and position: - -```diff title="docs/hello.md" -+ --- -+ sidebar_label: "Hi!" -+ sidebar_position: 3 -+ --- - - -# Hello - -This is my **first Docusaurus document**! -``` - -It is also possible to create your sidebar explicitly in `sidebars.js`: - -```diff title="sidebars.js" -module.exports = { - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', -- items: [...], -+ items: ['hello'], - }, - ], -}; -``` diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md deleted file mode 100644 index e7254eeae3b..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/create-a-page.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Create a Page - -Add **Markdown or React** files to `src/pages` to create a **standalone page**: - -- `src/pages/index.js` -> `localhost:3000/` -- `src/pages/foo.md` -> `localhost:3000/foo` -- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar` - -## Create your first React Page - -Create a file at `src/pages/my-react-page.js`: - -```jsx title="src/pages/my-react-page.js" -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function MyReactPage() { - return ( - -

My React page

-

This is a React page

-
- ); -} -``` - -A new page is now available at `http://localhost:3000/my-react-page`. - -## Create your first Markdown Page - -Create a file at `src/pages/my-markdown-page.md`: - -```mdx title="src/pages/my-markdown-page.md" -# My Markdown page - -This is a Markdown page -``` - -A new page is now available at `http://localhost:3000/my-markdown-page`. diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md deleted file mode 100644 index 492eae0276b..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-basics/deploy-your-site.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -sidebar_position: 5 ---- - -# Deploy your site - -Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**). - -It builds your site as simple **static HTML, JavaScript and CSS files**. - -## Build your site - -Build your site **for production**: - -```bash -npm run build -``` - -The static files are generated in the `build` folder. - -## Deploy your site - -Test your production build locally: - -```bash -npm run serve -``` - -The `build` folder is now served at `http://localhost:3000/`. - -You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json deleted file mode 100644 index ca3f8e06408..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/_category_.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Tutorial - Extras", - "position": 3 -} diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md deleted file mode 100644 index 2a449098946..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/manage-docs-versions.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Manage Docs Versions - -Docusaurus can manage multiple versions of your docs. - -## Create a docs version - -Release a version 1.0 of your project: - -```bash -npm run docusaurus docs:version 1.0 -``` - -The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created. - -Your docs now have 2 versions: - -- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs -- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs** - -## Add a Version Dropdown - -To navigate seamlessly across versions, add a version dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'docsVersionDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The docs version dropdown appears in your navbar: - -## Update an existing version - -It is possible to edit versioned docs in their respective folder: - -- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello` -- `docs/hello.md` updates `http://localhost:3000/docs/next/hello` diff --git a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md b/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md deleted file mode 100644 index 5568ca5b993..00000000000 --- a/docs/i18n/ru/docusaurus-plugin-content-docs/current/tutorial-extras/translate-your-site.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Translate your site - -Let's translate `docs/getting-started.md` to French. - -## Configure i18n - -Modify `docusaurus.config.js` to add support for the `fr` locale: - -```js title="docusaurus.config.js" -module.exports = { - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - }, -}; -``` - -## Translate a doc - -Copy the `docs/getting-started.md` file to the `i18n/fr` folder: - -```bash -mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/ - -cp docs/getting-started.md i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md -``` - -Translate `i18n/fr/docusaurus-plugin-content-docs/current/getting-started.md` in French. - -## Start your localized site - -Start your site on the French locale: - -```bash -npm run start -- --locale fr -``` - -Your localized site is accessible at `http://localhost:3000/fr/` and the `Getting Started` page is translated. - -:::caution - -In development, you can only use one locale at a same time. - -::: - -## Add a Locale Dropdown - -To navigate seamlessly across languages, add a locale dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -module.exports = { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'localeDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The locale dropdown now appears in your navbar: - -## Build your localized site - -Build your site for a specific locale: - -```bash -npm run build -- --locale fr -``` - -Or build your site to include all the locales at once: - -```bash -npm run build -``` diff --git a/docs/i18n/ru/docusaurus-theme-classic/footer.json b/docs/i18n/ru/docusaurus-theme-classic/footer.json deleted file mode 100644 index c1104cec96a..00000000000 --- a/docs/i18n/ru/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Сообщество", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Исходный код", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Юридическая информация", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Матрица", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Твиттер", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Приложение", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Сервер", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Документ", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Общий доступ", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Руководство по участию", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Отпечаток", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Политика конфиденциальности приложения", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Политика конфиденциальности веб-сайта", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Авторское право ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Логотип Linwood", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/ru/docusaurus-theme-classic/navbar.json b/docs/i18n/ru/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 779199f5582..00000000000 --- a/docs/i18n/ru/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Поток", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Логотип Flow", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Обучение", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Загрузки", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Сообщество", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Ещё", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Матрица", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Блог", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Твиттер", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Лицензия", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/sr/code.json b/docs/i18n/sr/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/sr/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs/current.json b/docs/i18n/sr/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/sr/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/sr/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/sr/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/sr/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/sr/docusaurus-theme-classic/footer.json b/docs/i18n/sr/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/sr/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/sr/docusaurus-theme-classic/navbar.json b/docs/i18n/sr/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/sr/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/sv/code.json b/docs/i18n/sv/code.json deleted file mode 100644 index 72bb8737f6a..00000000000 --- a/docs/i18n/sv/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Komma igång", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Ladda ner för Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Ladda ner för Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Ladda ner för Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Öppna webbappen", - "description": "homepage web button" - }, - "Downloads": { - "message": "Nedladdningar", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Tidshantering", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Hantera tidseffektiviteten och automatisera den.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Hantering av händelser", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schemalägga händelser, tilldela användare till den och ge uppgifter till dem", - "description": "Features Event management description" - }, - "Your data": { - "message": "Dina data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Alla kan skapa sin egen server och ha dina data på den.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Öppen källkod", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Appen och servern är alla öppen källkod. Alla kan bidra!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Denna sida kraschade.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Sidan hittades inte", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Vi kunde inte hitta det du sökte.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Vänligen kontakta ägaren av webbplatsen som länkade dig till den ursprungliga webbadressen och låt dem veta att deras länk är bruten.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "anteckning", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "fara", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "information", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "varning", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Arkivera", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Arkivera", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Bläddra tillbaka till toppen", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Sidnavigering på blogglistan", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Nyare inlägg", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Äldre inlägg", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blogginlägg sidnavigering", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Nyare inlägg", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Äldre inlägg", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Ett inlägg{count} inlägg", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} taggade med \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Visa alla taggar", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Växla mellan mörk och ljus (för närvarande {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "mörkt läge", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "ljus läge", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Brödsmulor", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} objekt", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs sidor navigering", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Föregående", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Nästa", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "En doc taggad{count} dokument taggade", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} med \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Detta är outgiven dokumentation för {siteTitle} {versionLabel} -versionen.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Detta är dokumentation för {siteTitle} {versionLabel}som inte längre aktivt underhålls.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "För aktuell dokumentation, se {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "senaste versionen", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Redigera denna sida", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direktlänk till {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " på {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " av {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Senast uppdaterad{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versioner", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Taggar:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Stäng", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blogg senaste inlägg navigering", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Kopierad", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Kopiera kod till urklipp", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Kopiera", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Växla ordinmatning", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Huvud", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Språk", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "På denna sida", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "En min läsa{readingTime} min", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Läs mer", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Läs mer om {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Startsida", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Komprimera sidofält", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Komprimera sidofält", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Stäng navigeringsfältet", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Tillbaka till huvudmenyn", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Växla navigeringsfält", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Ny version tillgänglig", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Uppdatera", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Stäng", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Försök igen", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Hoppa till huvudinnehållet", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Taggar", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "varning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expandera sidokategorin '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Kollapsa sidofältets kategori '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Olistad sida", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Denna sida är inte listad. Sökmotorer kommer inte att indexera den, och endast användare som har en direktlänk kan komma åt den.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} objekt", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 11752215374..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Nästa", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 253169a6c0a..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Ändringslogg -hide_title: true -sidebar_label: Ändringslogg ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 7938582577a..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Uppförandekod -hide_title: true -sidebar_label: Uppförandekod ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index b8c1f49a177..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Bidragande" -hide_title: true -sidebar_label: "Bidragande" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 074a0826573..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Nedladdningar" -} \ No newline at end of file diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index dbf81d58f73..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabil utgåva](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nattlig utgåva](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimala systemkrav - -* Android 5.0 (API-nivå 21) eller högre. - -## Binärer - -
- - Stabil - - - Nattlig - -
- -Läs mer om den nattliga versionen av Flow [här](/nightly). diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index fabb3d25588..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Bygg din egen" -sidebar_position: 1 ---- - -1. Installera git och fladder (beta) -2. Klona förrådet -3. Navigera till app-katalogen -4. Använd fladderverktyget för att sammanställa applikationen - * `fladder bygga apk` - * `fladder bygga äppelbunt` - * `fladder bygga webb` - * `fladder bygga linux` - * `fladder bygga fönster` -5. De kompilerade filerna finns i kompileringskatalogen diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index d28fc7e36a5..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Nedladdningar ---- - -![Stabil utgåva](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nattlig utgåva](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Välj din plattform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Användbara länkar - -- [Ändringslogg](changelog) -- [Äldre utgåvor](https://github.com/LinwoodDev/Flow/releases) -- [Senaste versionen](https://github.com/LinwoodDev/Flow/releases/latest) -- [Stöd](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 263cc2cfbf3..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabil utgåva](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nattlig utgåva](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::::note - -Vänligen använd flatpak versionen om möjligt. Annars behöver du installera `libsecret-1-dev` och `libjsoncpp-dev`. - -::: - -## Binärer - -
-
- -
    -
  • - - Bärbar - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Bärbar - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Läs mer om den nattliga versionen av Flow [här](/nightly). diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index be741baf115..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stabil utgåva](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nattlig utgåva](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Länkar - - diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index bb18876e1c2..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Tack för att du laddade ner -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Tack för nedladdning - - - -## Windows SmartScreen - - -Windows varnar användare vid installation av programvara utan certifikat. - -![Smart skärm](/img/smart-screen.png) - -För att installera appen måste du klicka på "Mer info". - -![Smart skärm mer info](/img/smart-screen-more-info.png) - -Klicka sedan på "Kör ändå". - -
diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 314e3815de5..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stabil utgåva](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nattlig utgåva](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Det är mycket lätt att vara värd för din egen flöde webbserver. - -## Enkel server - -Installera fladder och bygg appen med: - -```bash -cd app -fladder pub få -fladder bygga webben -``` - -Alla filer finns i katalogen `app/build/web`. - -## Docker - -Klona utvecklingskatalogen och bygg `Dockerfilen` med att: `docker build -t linwood-flow`. Starta servern med: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 024ba789616..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Tack för att du laddade ner -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Tack för nedladdning - - - -
diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 5b7b63a04b4..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Webb" -sidebar_position: 5 ---- - -![Stabil utgåva](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nattlig utgåva](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::::note - -Detta är en progressiv webbapplikation. Du kan installera den på din webbläsare och använda den offline. All data lagras i din webbläsare. - -::: - - -## Länkar - - - -## Versioner - -Huvudversionerna och förhandsgranskningen (utveckla) av Flow är inte samma som de stabila och nattliga versionerna. De är inte direkt associerade med en release. De uppdateras så snart en ny commit har skjutits till förrådet. diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 9c9a80c17ed..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Fönster" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stabil utgåva](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nattlig utgåva](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimala systemkrav - -* Windows 10 eller senare. - -## Binärer - -
-
- -
    -
  • - - Konfiguration - -
  • -
  • - - Bärbar - -
  • -
-
-
- -
    -
  • - - Konfiguration - -
  • -
  • - - Bärbar - -
  • -
-
-
- -Läs mer om den nattliga versionen av Flow [här](/nightly). diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 3ecfa5ebe1e..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Vanliga frågor" -sidebar_label: "Vanliga frågor" ---- - -Här är några vanliga frågor. diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index 7b42b7118bf..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Hem" -sidebar_position: 0 -title: "Gemenskap" ---- - -Välkommen till sektionen gemenskap. - -## Erkännanden - -Ett särskilt tack går till: - -* [Flutter](https://github.com/flutter/flutter) för att tillhandahålla detta användbara crossplatform ui ramverk -* [window_manager](https://github.com/leanflutter/window_manager) för alla funktioner i skrivbordet -* [Docusaurus](https://github.com/facebook/docusaurus) för ett lättanvänt statiskt underlag - -Alla andra licenser hittar du i inställningarna. - -## Användbara länkar - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matris](https://go.linwood.dev/matrix) diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index b42532a2cf1..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nattliga byggnader" -slug: "/nightly" ---- - -::::warning - -Använd inte den nattliga versionen av Flow för produktion. - -::: - -Nattliga byggen är utformade för att ge dig möjlighet att testa den senaste versionen och få de nyaste funktionerna och ge feedback. - -## Hämta byggnationerna - -Gå till nedladdningssidorna på din plattform. Alla nattliga byggen publiceras också som förhandsrelease på github. diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 941055610d6..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versioner" ---- - -Dessa versioner stöds inte längre. Nya versioner finns på [versionerna](versions.md). - -| Version | Stöds | | -| ------- | ----- | | -| | | | diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 88231efd42d..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Integritetspolicy" -slug: /privacypolicy ---- - -Detta är integritetspolicyn för appen. Var snäll och läs den noga. Klicka [här](https://go.linwood.dev/privacypolicy) för att läsa sekretesspolicyn för webbplatsen. - -CodeDoctor byggde Flow-appen som en öppen källkodsapp. Denna TJÄNSTEN tillhandahålls av CodeDoctor utan kostnad och är avsedd för användning som är. - -Denna sida används för att informera besökare om mina policyer med samlingen, användning och utlämnande av personuppgifter om någon har beslutat att använda min Tjänst. - -Om ni väljer att använda min tjänst samtycker ni till insamling och användning av information i samband med denna politik. Den personliga information som jag samlar in används för att tillhandahålla och förbättra Tjänsten. Jag kommer inte att använda eller dela dina uppgifter med någon annan än vad som beskrivs i denna sekretesspolicy. - -Villkoren som används i denna sekretesspolicy har samma betydelse som i våra användarvillkor, som är tillgänglig på Flow om inte annat anges i denna sekretesspolicy. - -**Insamling och användning av information** - -För en bättre upplevelse, när du använder vår tjänst, kan jag kräva att du ger oss viss personligt identifierbar information. Den information som jag begär kommer att lagras på din enhet och samlas inte in av mig på något sätt. - -Appen använder tjänster från tredje part som kan samla in information som används för att identifiera dig. - -Länk till integritetspolicy för tredjepartsleverantörer som används av appen - -* [Google Play-tjänster](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies är filer med en liten mängd data som ofta används som anonyma unika identifierare. Dessa skickas till din webbläsare från de webbplatser som du besöker och lagras på enhetens interna minne . - -Denna tjänst använder inte dessa ”cookies” explicit. Appen kan dock använda tredjepartskod och bibliotek som använder ”cookies” för att samla in information och förbättra sina tjänster. Du har möjlighet att antingen acceptera eller vägra dessa cookies och veta när en cookie skickas till din enhet. Om du väljer att vägra våra cookies kanske du inte kan använda vissa delar av denna Tjänst. - -**Tjänsteleverantörer** - -Jag kan anställa tredjepartsföretag och privatpersoner på grund av följande skäl: - -* För att underlätta vår tjänst, -* Att tillhandahålla tjänsten å våra vägnar; -* Att utföra Tjänstrelaterade tjänster; eller -* För att hjälpa oss att analysera hur vår Tjänst används. - -Jag vill informera användarna om att dessa tredje parter har tillgång till din personliga information. Anledningen är att utföra de uppgifter som tilldelats dem för vår räkning. De är dock skyldiga att inte lämna ut eller använda informationen för något annat ändamål. - -**Säkerhet** - -Jag värdesätter ditt förtroende för att ge oss din personliga information, så vi strävar efter att använda kommersiellt acceptabla sätt att skydda den. Men kom ihåg att ingen metod för överföring via internet, eller metod för elektronisk lagring är 100% säker och tillförlitlig, och jag kan inte garantera dess absoluta säkerhet. - -**Länkar till andra webbplatser** - -Denna tjänst kan innehålla länkar till andra webbplatser. Om du klickar på en tredje part länk, kommer du att riktas till den webbplatsen. Observera att dessa externa webbplatser inte drivs av mig. Därför rekommenderar jag starkt att du granskar sekretesspolicyn för dessa webbplatser. Jag har ingen kontroll över och tar inget ansvar för innehållet, sekretesspolicyer eller praxis på någon tredje parts webbplatser eller tjänster. - -**Ändringar i denna sekretesspolicy** - -Jag kan uppdatera vår sekretesspolicy från tid till annan. Således uppmanas du att granska denna sida med jämna mellanrum för eventuella ändringar. Jag kommer att meddela dig om eventuella ändringar genom att publicera den nya sekretesspolicyn på denna sida. - -Denna policy gäller från och med 2021-02-07 - -**Kontakta oss** - -Om du har några frågor eller förslag om min integritetspolicy, tveka inte att kontakta mig på contact@linwood.dev. - -Den här integritetspolicysidan skapades på [privacypolicytemplate.net](https://privacypolicytemplate.net) och modifierade/genererade av [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs/current.json b/docs/i18n/sv/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 86a5750e443..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Nästa", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/sv/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 9355756a989..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduktion - -Kommer snart diff --git a/docs/i18n/sv/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/sv/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index e9ae483cd30..00000000000 --- a/docs/i18n/sv/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Fellista - -| Felkod | HTTP statuskod | Beskrivning | -| ------ | -------------- | ------------------- | -| `0` | `404` | Sidan hittades inte | -| `1` | `404` | Ogiltig api version | -| `2` | `403` | Förbjuden | -| `3` | `400` | Felaktig begäran | diff --git a/docs/i18n/sv/docusaurus-theme-classic/footer.json b/docs/i18n/sv/docusaurus-theme-classic/footer.json deleted file mode 100644 index e8d1555b79a..00000000000 --- a/docs/i18n/sv/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Gemenskap", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Källkod", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Juridisk", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matris", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Dokument", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Delad", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Bidragsguide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Avtryck", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Sekretesspolicyn för appen", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Integritetspolicy för webbplatsen", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood logotyp", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/sv/docusaurus-theme-classic/navbar.json b/docs/i18n/sv/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 323c78548d9..00000000000 --- a/docs/i18n/sv/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flöde", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flödeslogotyp", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Handledning", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Nedladdningar", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Gemenskap", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Mer", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matris", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blogg", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Licens", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/tr/code.json b/docs/i18n/tr/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/tr/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs/current.json b/docs/i18n/tr/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/tr/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/tr/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/tr/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/tr/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/tr/docusaurus-theme-classic/footer.json b/docs/i18n/tr/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/tr/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/tr/docusaurus-theme-classic/navbar.json b/docs/i18n/tr/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/tr/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/uk/code.json b/docs/i18n/uk/code.json deleted file mode 100644 index 903c4884b61..00000000000 --- a/docs/i18n/uk/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Початок роботи", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Завантажити для Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Завантажити для Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Завантажити для Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Відкрити веб-додаток", - "description": "homepage web button" - }, - "Downloads": { - "message": "Завантажень", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Керування часом", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Керуйте ефективністю часу та автоматизуйте її.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Управління подіями", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Запланувати події, призначити користувачів та дати їм завдання", - "description": "Features Event management description" - }, - "Your data": { - "message": "Ваші дані", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Кожен може створити свій власний сервер і мати на ньому ваші дані.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Відкритий код", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "Додаток і сервер мають всі відкриті коди. Кожен може зробити свій внесок!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "Ця сторінка зазнала краху.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Сторінку не знайдено", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "Ми не змогли знайти те, що ви шукали.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Будь ласка, зв'яжіться з власником сайту, який прив'язував вас до оригінального URL, і нехай вони знають, що це посилання було зламано.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "нотатка", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "небезпека", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "інформація", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "обережно", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Архів", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Архів", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Прокрутити вгору", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Навігація по списку блогу", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Нові записи", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Попередні записи", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Навігація з дописів у блозі", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Нові повідомлення", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Попередня пошта", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "Одне повідомлення|{count} повідомлень", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} тегів з \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "Переглянути всі мітки", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Перемикання між темним та світлим режимами (поточно: {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "темний режим", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "легкий режим", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Навіґативний ланцюжок", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} позицій", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Навігація документах", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Попереднє", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Уперед", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "Один doc теґ |{count} документації позначено", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} з \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Версія: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "Це неопублікована документація для версії {siteTitle} {versionLabel}.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "Це документація для {siteTitle} {versionLabel}, яка більше не підтримується активністю.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "Для оновлення документації перегляньте {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "остання версія", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Редагувати сторінку", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Пряме посилання на {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " на {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " від {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Востаннє оновлено{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Версії", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Теги:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Закрити", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Навігація в блозі", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Скопійовано", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Скопіювати код в буфер обміну", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Копія", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Увімкнути або вимкнути обгортання слів", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Основне", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Мови", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "На цій сторінці", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "1 хв. прочитане|{readingTime} хв", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Читати більше", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Детальніше про {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Домашня сторінка", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Згорнути панель", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Згорнути панель", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Закрити панель навігації", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Назад до головного меню", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Перемикач панелі навігації", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "Доступна нова версія", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Оновити", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Закрити", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Спробуйте ще раз", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Перейти до основного вмісту", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Мітки", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "попередження", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Розгорнути бічну панель категорії '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Згорнути бічну панель категорії '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Поза списком", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "Ця сторінка зникає. Пошук не буде індексувати її лише користувачі, які мають пряме посилання, можуть отримати доступ до цієї сторінки.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} позицій", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index f75d7a13793..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Уперед", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 1bc42330560..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Список змін -hide_title: true -sidebar_label: Список змін ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index a0538bfc2fa..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Кодекс поведінки -hide_title: true -sidebar_label: Кодекс поведінки ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index d1d6acc9584..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Зробити внесок" -hide_title: true -sidebar_label: "Зробити внесок" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 29c5363eb85..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Завантажень" -} \ No newline at end of file diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index b587cab810b..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![стабільна версія](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Нічна версія](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Мінімальні вимоги системи - -* Android 5.0 (API рівень 21) або вище. - -## Двійкові файли - -
- - Стабільний - - - Нічна - -
- -Дізнайтеся більше про нічну версію Flow [тут](/nightly). diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index 2a8e588e37f..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Створіть свій власний" -sidebar_position: 1 ---- - -1. Встановити git і блимати (бета-версія) -2. Скопіювати репозиторій -3. Перейти до каталогу додатків -4. Використовувати інструмент спалаху для компіляції програми - * `додати збірку apk` - * `пробка ромба` - * `прошивати мережу` - * `передач збірки linux` - * `блимнути вікна збірки` -5. Скомпільовані файли в каталозі збірки diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 7b1b92889e6..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Завантажень ---- - -![стабільна версія](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Нічна версія](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Виберіть платформу - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Сервер - Selfhosting - -
- -## Корисні посилання - -- [Список змін](changelog) -- [Старі випуски](https://github.com/LinwoodDev/Flow/releases) -- [Останній реліз](https://github.com/LinwoodDev/Flow/releases/latest) -- [Підтримка](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 1003f9fffdc..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![стабільна версія](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Нічна версія](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Будь ласка, використовуйте версію flatpak, якщо можливо. В іншому випадку вам необхідно встановити `libsecret-1-dev` та `libjsoncpp-dev`. - -::: - -## Двійкові файли - -
-
- -
    -
  • - - Портативний - -
  • -
  • - - ДЕБ - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Портативний - -
  • -
  • - - ДЕБ - -
  • -
  • - - AppImage - -
  • -
-
-
- -Дізнайтеся більше про нічну версію Flow [тут](/nightly). diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 14add52a50b..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![стабільна версія](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Нічна версія](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Посилання - - diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 55ac7b2be54..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Дякуємо вам за завантаження -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Дякуємо за завантаження - - - -## SmartScreen Windows - - -Користувачі Windows попереджують про встановлення програмного забезпечення без сертифікату. - -![Smart screen](/img/smart-screen.png) - -, щоб встановити додаток, необхідно натиснути на "Докладніше". - -![Смарт-екран детальніше](/img/smart-screenen-more-info.png) - -Потім натисніть "Все одно запустити". - -
diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 950ea7482b9..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![стабільна версія](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Нічна версія](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -Це дуже легко провести власний веб-сервер. - -## Простий сервер - -Встановити flutter і побудувати програму за допомогою: - -```bash -cd додаток -прошивати pub отримати -водостільний збірку -``` - -Всі файли в каталозі `app/build/web`. - -## Докер - -Клонуйте репозиторій і збудуйте `Dockerfile` , використовуючи: `docker build -t linwood-flow`. Запустити сервер за допомогою: `докер запускає -p 80:8080 -d linwood-flow`. diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 4168297c02b..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Дякуємо вам за завантаження -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - - diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 68a44d1e0ba..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Веб" -sidebar_position: 5 ---- - -![стабільна версія](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Нічна версія](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -::note - -Це прогресивна веб-програма. Ви можете встановити його на ваш браузер і використовувати його в автономному режимі. Всі дані зберігаються в браузері. - -::: - - -## Посилання - - - -## Версії - -Основні та попередній перегляд (розвитки) версії Flow не співпадають з стабільними та нічними версіями. Вони не асоціюються з звільненням. Вони оновлюються, щойно в репозиторій буде відправлений новий коміт. diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index ef8f257712d..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Вікна" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![стабільна версія](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Нічна версія](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Мінімальні вимоги системи - -* Windows 10 або вище. - -## Двійкові файли - -
-
- -
    -
  • - - Установка - -
  • -
  • - - Портативний - -
  • -
-
-
- -
    -
  • - - Установка - -
  • -
  • - - Портативний - -
  • -
-
-
- -Дізнайтеся більше про нічну версію Flow [тут](/nightly). diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index 895dd0d10ed..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Найчастіші питання" -sidebar_label: "ЧАП" ---- - -Ось кілька питань, що часто ставляться. diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index be8dd2d3454..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Домашній екран" -sidebar_position: 0 -title: "Спільнота" ---- - -Ласкаво просимо до розділу спільноти. - -## Подяки - -Особлива подяка: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) для всіх цих корисних функцій робочого столу -* [Docusaurus](https://github.com/facebook/docusaurus) для простий у використанні статичний фреймворк для фізичного реагування - -Усі інші ліцензії ви можете знайти в налаштуваннях. - -## Корисні посилання - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Матриця](https://go.linwood.dev/matrix) diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 5f66a001fc4..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Нічна збірка" -slug: "/nightly" ---- - -:::warning - -Не використовувати нічну версію Flow для виробництва. - -::: - -Нічні збірки розроблені, щоб надати вам можливість перевірити останню версію і отримати нові функції і дати відгук. - -## Отримати збірки - -Перейдіть на сторінку завантаження своєї платформи. Всі нічні збірки також будуть опубліковані як пре-реліз на github. diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index 252bdbbb2f9..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Пре-1.0 версії" ---- - -Ці версії більше не підтримуються. Нові версії доступні на [версії](versions.md). - -| Версія | Підтримується | | -| ------ | ------------- | | -| | | | diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index fb0488df1ad..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Політика конфіденційності" -slug: /privacypolicy ---- - -Це політика конфіденційності додатку. Будь ласка, прочитайте це обережно. Натисніть [тут](https://go.linwood.dev/privacypolicy) , щоб прочитати політику конфіденційності сайту. - -CodeDoctor створив застосунок для потоку як додаток з відкритим вихідним кодом. Цей SERVICE надається CodeDoctor за безцінної вартості і призначений для використання як є. - -Ця сторінка використовується для відправки інформації відвідувачам про мої політики з колекцією, Користуйтесь та розголошуйте особистою інформацією, якщо хто-небудь вирішив використовувати мою Службу. - -Якщо ви вирішите використовувати мою Послугу, ви погоджуєтесь із колекцією та використанням інформації стосовно цієї політики. Особиста інформація, яку я збираю, використовується для забезпечення та покращення Служби. Я не буду використовувати і не буду ділитися вашою інформацією з будь-ким, крім того, що описано в цій Політиці конфіденційності. - -Терміни, що використовуються в цій Політиці конфіденційності, мають ті самі значення, що і в наших Загальних умовах, який доступний на потік, якщо інше не визначено в цій Політиці конфіденційності. - -**Колекція та використання інформації** - -Для кращого досвіду, при користуванні нашою Службою, я можу вимагати від вас надати вам певну особисту інформацію. Інформація, яку мені прохано збережеться на вашому пристрої і , не зібрана мною жодним чином. - -Додаток використовує сторонні послуги, які можуть збирати інформацію для ідентифікації вас. - -Посилання на політику конфіденційності сторонніх постачальників послуг, що використовують додаток - -* [Служби Google Play](https://www.google.com/policies/privacy/) - -**Файли Cookies** - -Кукі - це файли з невеликою кількістю даних, які зазвичай використовуються як анонімні унікальні ідентифікатори. Надсилаються до браузера з веб-сторінок, які ви відвідуєте, та зберігаються на пристрої внутрішньої пам'яті. - -Ця служба не використовує ці "cookies" явно між собою. Однак додаток може використовувати сторонній код та бібліотеки, які використовують «куки» для збору інформації та покращення їх послуг. У вас є можливість прийняти або відхилити ці файли cookie і знати, коли на ваш пристрій надсилається cookie. Якщо ви вирішите відмовитись від наших куків, ви не зможете використати деякі частини цієї Служби. - -**Постачальники послуг** - -Я можу використовувати сторонні компанії та особи з наступних причин: - -* Щоб полегшити наш сервіс; -* Щоб забезпечити послугу від нашого імені; -* Для виконання служб, пов'язаних з сервісом; або -* Щоб допомогти нам аналізувати, як використовується наша служба. - -Я хочу повідомити користувачів цієї служби підтримки, що ці треті сторони мають доступ до вашої персональної інформації. Причина в тому, щоб виконувати завдання, покладені на них від нашого імені. Однак, вони зобов’язані не розголошувати або використовувати інформацію для будь-якої іншої мети. - -**Безпека** - -Я ціную свою довіру до того, щоб надати нам свою персональну інформацію, таким чином ми прагнемо використовувати комерційно прийнятні засоби захисту. Але пам'ятайте, що немає методу передачі через інтернет, або метод електронного сховища на 100% безпечний і надійний, і я не можу гарантувати його абсолютну безпеку. - -**Посилання на інші сайти** - -Цей сервіс може містити посилання на інші сайти. Якщо натиснути на посилання від третьої сторони, вас буде направлено на цей сайт. Зверніть увагу, що мої зовнішні сайти не працюють. Тому я наполегливо раджу Вам переглянути Політику конфіденційності цих сайтів. Я не контролюю і не беру на себе відповідальності за зміст, політику конфіденційності чи практику будь-яких сторонніх сайтів чи послуг. - -**Зміни в політиці конфіденційності** - -Я можу оновлювати нашу політику конфіденційності час від часу. Таким чином, вам рекомендується періодично переглядати цю сторінку за будь-які зміни. Я повідомлю вас про будь-які зміни, опубліковавши нову Політику конфіденційності на цій сторінці . - -Ця політика ефективна при 2021-02-07 - -**Зв’язатись з нами** - -Якщо у вас є які-небудь питання або пропозиції про мою політику конфіденційності, зв’яжіться зі мною по контакту@linwood.dev. - -Ця сторінка політики конфіденційності була створена на [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated [Генератор політики конфіденційності додатків](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs/current.json b/docs/i18n/uk/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index 879d2184720..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Уперед", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "сервер", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/uk/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index e8272cc99b6..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Вступ - -Чекайте вже скоро diff --git a/docs/i18n/uk/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/uk/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4b0e51ce5f4..00000000000 --- a/docs/i18n/uk/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Список помилок - -| Код помилки | Код статусу HTTP | Опис | -| ----------- | ---------------- | ---------------------- | -| `0` | `404` | Сторінка не знайдена | -| `1` | `404` | Неправильна версія API | -| `2` | `403` | Заборонено | -| `3` | `400` | Неправильний запит | diff --git a/docs/i18n/uk/docusaurus-theme-classic/footer.json b/docs/i18n/uk/docusaurus-theme-classic/footer.json deleted file mode 100644 index 6fd6482b85c..00000000000 --- a/docs/i18n/uk/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Спільнота", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Початковий код", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Юридичні", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Матриця", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Твіттер", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "Застосунок", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Сервер", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Документація", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Спільні", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Інструкція для учасників", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Відомості", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Політика конфіденційності застосунка", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Політика конфіденційності сайту", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Авторське право ©️ 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Лінвуд Логотип", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/uk/docusaurus-theme-classic/navbar.json b/docs/i18n/uk/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 766c167cac3..00000000000 --- a/docs/i18n/uk/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Потік", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Логотип потоку", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Навчальний посібник", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Завантажень", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Спільнота", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "Більше", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Матриця", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Блог", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Кравдін", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Твіттер", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "Ліцензія", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/vi/code.json b/docs/i18n/vi/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/vi/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs/current.json b/docs/i18n/vi/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/vi/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/vi/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/vi/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/vi/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/vi/docusaurus-theme-classic/footer.json b/docs/i18n/vi/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/vi/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/vi/docusaurus-theme-classic/navbar.json b/docs/i18n/vi/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/vi/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/zh-Hant/code.json b/docs/i18n/zh-Hant/code.json deleted file mode 100644 index a354e38e488..00000000000 --- a/docs/i18n/zh-Hant/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "Getting started", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "Download for Windows", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "Download for Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "Download for Android", - "description": "homepage android button" - }, - "Open the web app": { - "message": "Open the web app", - "description": "homepage web button" - }, - "Downloads": { - "message": "Downloads", - "description": "homepage downloads button" - }, - "Time management": { - "message": "Time management", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "Manage the time efficiency and automate it.", - "description": "Features Time management description" - }, - "Event management": { - "message": "Event management", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "Schedule events, assign users to it and give tasks to them", - "description": "Features Event management description" - }, - "Your data": { - "message": "Your data", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "Everyone can create their own server and have your data on it.", - "description": "Features Your data description" - }, - "Open source": { - "message": "Open source", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "The app and the server are all open source. Everyone can contribute!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "This page crashed.", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "Page Not Found", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "Please contact the owner of the site that linked you to the original URL and let them know their link is broken.", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "note", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "danger", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "info", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "caution", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "Archive", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "Archive", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "Scroll back to top", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "Blog list page navigation", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "Newer Entries", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "Older Entries", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "Blog post page navigation", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "Newer Post", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "Older Post", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "One post|{count} posts", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} tagged with \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "View All Tags", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "Switch between dark and light mode (currently {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "dark mode", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "light mode", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "Breadcrumbs", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "Docs pages navigation", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "Previous", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "Next", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "One doc tagged|{count} docs tagged", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} with \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "Version: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "This is unreleased documentation for {siteTitle} {versionLabel} version.", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "latest version", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "Edit this page", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "Direct link to {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " on {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " by {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "Last updated{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "Versions", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "Tags:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "Blog recent posts navigation", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "Copied", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "Copy code to clipboard", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "Copy", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "Toggle word wrap", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "Main", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "Languages", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "On this page", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "One min read|{readingTime} min read", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "Read More", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "Read more about {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "Home page", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "Collapse sidebar", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "Close navigation bar", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "← Back to main menu", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "Toggle navigation bar", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "New version available", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "Refresh", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "Close", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "Try again", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "Skip to main content", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "Tags", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "warning", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "Unlisted page", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} items", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 3c9bf078623..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index 653a330cad7..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Changelog -hide_title: true -sidebar_label: Changelog ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index 1483f8ebc5e..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Code of conduct -hide_title: true -sidebar_label: Code of conduct ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index df0eab9de1a..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Contributing" -hide_title: true -sidebar_label: "Contributing" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index 183fe251311..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "Downloads" -} \ No newline at end of file diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 99c4583e989..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Android 5.0 (API level 21) or higher. - -## Binaries - -
- - Stable - - - Nightly - -
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index e0fedc13c79..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Build your own" -sidebar_position: 1 ---- - -1. Install git and flutter (beta) -2. Clone the repository -3. Navigate to the app directory -4. Use the flutter tool to compile the application - * `flutter build apk` - * `flutter build appbundle` - * `flutter build web` - * `flutter build linux` - * `flutter build windows` -5. The compiled files are in the build directory diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 20b38bc09f6..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: Downloads ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Choose your platform - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - Server - Selfhosting - -
- -## Useful links - -- [Changelog](changelog) -- [Older releases](https://github.com/LinwoodDev/Flow/releases) -- [Latest release](https://github.com/LinwoodDev/Flow/releases/latest) -- [Support](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index 50a9c34fdbb..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -Please use the flatpak version if possible. Otherwise you need to install `libsecret-1-dev` and `libjsoncpp-dev`. - -::: - -## Binaries - -
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - Portable - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index 59d9e8e5606..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Links - - diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index 34ccace0282..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# Thank you for downloading - - - -## Windows SmartScreen - - -Windows warns users when installing software without a certificate. - -![Smart screen](/img/smart-screen.png) - -To install the app, you need to click on "More info". - -![Smart screen more info](/img/smart-screen-more-info.png) - -Then, click on "Run anyway". - -
diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index da78d21a1eb..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -It is very easy to host your own flow web server. - -## Simple server - -Install flutter and build the app using: - -```bash -cd app -flutter pub get -flutter build web -``` - -All the files are in the `app/build/web` directory. - -## Docker - -Clone the repository and build the `Dockerfile` using: `docker build -t linwood-flow`. Start the server using: `docker run -p 8080:8080 -d linwood-flow`. diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 51cd23ce4d1..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Thank you for downloading -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# Thank you for downloading - - - -
diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index ec64d8e0304..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -This is a progressive web application. You can install it on your browser and use it offline. All data is stored in your browser. - -::: - - -## Links - - - -## Versions - -The main and the preview (develop) versions of Flow are not the same as the stable and nightly versions. They are not directly associated with a release. They are updated as soon as a new commit is pushed to the repository. diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index b51c028cabf..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Windows" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![Stable release version](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![Nightly release version](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## Minimum system requirements - -* Windows 10 or higher. - -## Binaries - -
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -
    -
  • - - Setup - -
  • -
  • - - Portable - -
  • -
-
-
- -Read more about the nightly version of Flow [here](/nightly). diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index a713c503aa5..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "Frequently Asked Questions" -sidebar_label: "FAQ" ---- - -Here are some frequently asked questions. diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index e47121f8f77..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "Home" -sidebar_position: 0 -title: "Community" ---- - -Welcome to the community section. - -## Acknowledgements - -A special thanks goes to: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [window_manager](https://github.com/leanflutter/window_manager) for all this useful desktop window features -* [Docusaurus](https://github.com/facebook/docusaurus) for an easy-to-use static react documentation framework - -All other licenses can you found in the settings. - -## Useful links - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [Matrix](https://go.linwood.dev/matrix) diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 83de411d0a3..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Nightly Builds" -slug: "/nightly" ---- - -:::warning - -Do not use the nightly version of Flow for production. - -::: - -Nightly builds are designed to give you the option to test the latest version and get the newest features and give feedback. - -## Get the builds - -Go to the download pages of your platform. All nightly builds get also published as pre-release on github. diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index daac43221dd..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Pre-1.0 versions" ---- - -These versions are not supported anymore. New versions are available at [versions](versions.md). - -| Version | Supported | | -| ------- | --------- | | -| | | | diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 9967191025d..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Privacy Policy" -slug: /privacypolicy ---- - -This is the privacy policy of the app. Please read it carefully. Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor built the Flow app as an Open Source app. This SERVICE is provided by CodeDoctor at no cost and is intended for use as is. - -This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. - -If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. - -The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Flow unless otherwise defined in this Privacy Policy. - -**Information Collection and Use** - -For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way. - -The app does use third party services that may collect information used to identify you. - -Link to privacy policy of third party service providers used by the app - -* [Google Play Services](https://www.google.com/policies/privacy/) - -**Cookies** - -Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. - -This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. - -**Service Providers** - -I may employ third-party companies and individuals due to the following reasons: - -* To facilitate our Service; -* To provide the Service on our behalf; -* To perform Service-related services; or -* To assist us in analyzing how our Service is used. - -I want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. - -**Security** - -I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. - -**Links to Other Sites** - -This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -**Changes to This Privacy Policy** - -I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. - -This policy is effective as of 2021-02-07 - -**Contact Us** - -If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at contact@linwood.dev. - -This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current.json b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index a93af8565b1..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "Next", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "server", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index fb9f39f39fd..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Introduction - -Coming soon diff --git a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index 4aa13bb7b4c..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# Error list - -| Error code | HTTP status code | Description | -| ---------- | ---------------- | ------------------- | -| `0` | `404` | Page not found | -| `1` | `404` | Invalid api version | -| `2` | `403` | Forbidden | -| `3` | `400` | Bad request | diff --git a/docs/i18n/zh-Hant/docusaurus-theme-classic/footer.json b/docs/i18n/zh-Hant/docusaurus-theme-classic/footer.json deleted file mode 100644 index 1c409b71ef8..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "Community", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "Source code", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "Legal", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "Matrix", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "Twitter", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "App", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "Server", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "Docs", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "Shared", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "Contribution guide", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "Imprint", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "Privacy Policy of the app", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "Privacy Policy of the website", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "Copyright © 2023 LinwoodDev.", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "Linwood Logo", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/zh-Hant/docusaurus-theme-classic/navbar.json b/docs/i18n/zh-Hant/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 494b3558b14..00000000000 --- a/docs/i18n/zh-Hant/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "Flow", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "Flow Logo", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "Tutorial", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "Downloads", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "Community", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "More", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "Matrix", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "Blog", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "Twitter", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "License", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/i18n/zh/code.json b/docs/i18n/zh/code.json deleted file mode 100644 index c533e90ad3a..00000000000 --- a/docs/i18n/zh/code.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "Getting started": { - "message": "入门开始", - "description": "homepage getting started button" - }, - "Download for Windows": { - "message": "为Windows 下载", - "description": "homepage windows button" - }, - "Download for Linux": { - "message": "下载Linux", - "description": "homepage linux button" - }, - "Download for Android": { - "message": "下载 Android 版", - "description": "homepage android button" - }, - "Open the web app": { - "message": "打开网页应用", - "description": "homepage web button" - }, - "Downloads": { - "message": "下载", - "description": "homepage downloads button" - }, - "Time management": { - "message": "时间管理", - "description": "Features Time management title" - }, - "Manage the time efficiency and automate it.": { - "message": "管理时间效率并实现自动化。", - "description": "Features Time management description" - }, - "Event management": { - "message": "事件管理", - "description": "Features Event management title" - }, - "Schedule events, assign users to it and give tasks to them": { - "message": "计划事件、分配用户并赋予他们任务", - "description": "Features Event management description" - }, - "Your data": { - "message": "您的数据", - "description": "Features Your data title" - }, - "Everyone can create their own server and have your data on it.": { - "message": "每个人都可以创建自己的服务器并拥有您的数据。", - "description": "Features Your data description" - }, - "Open source": { - "message": "开源", - "description": "Features Open source title" - }, - "The app and the server are all open source. Everyone can contribute!": { - "message": "应用程序和服务器都是开放源码。每个人都可以贡献!", - "description": "Features Open source description" - }, - "theme.ErrorPageContent.title": { - "message": "此页面已崩溃。", - "description": "The title of the fallback page when the page crashed" - }, - "theme.NotFound.title": { - "message": "找不到页面", - "description": "The title of the 404 page" - }, - "theme.NotFound.p1": { - "message": "我们找不到你想要的东西。", - "description": "The first paragraph of the 404 page" - }, - "theme.NotFound.p2": { - "message": "请联系链接到原始URL的站点所有者并让他们知道他们的链接已经损坏。", - "description": "The 2nd paragraph of the 404 page" - }, - "theme.admonition.note": { - "message": "备注", - "description": "The default label used for the Note admonition (:::note)" - }, - "theme.admonition.tip": { - "message": "tip", - "description": "The default label used for the Tip admonition (:::tip)" - }, - "theme.admonition.danger": { - "message": "危险", - "description": "The default label used for the Danger admonition (:::danger)" - }, - "theme.admonition.info": { - "message": "信息", - "description": "The default label used for the Info admonition (:::info)" - }, - "theme.admonition.caution": { - "message": "警告", - "description": "The default label used for the Caution admonition (:::caution)" - }, - "theme.blog.archive.title": { - "message": "存档", - "description": "The page & hero title of the blog archive page" - }, - "theme.blog.archive.description": { - "message": "存档", - "description": "The page & hero description of the blog archive page" - }, - "theme.BackToTopButton.buttonAriaLabel": { - "message": "回滚到顶部", - "description": "The ARIA label for the back to top button" - }, - "theme.blog.paginator.navAriaLabel": { - "message": "博客列表页面导航", - "description": "The ARIA label for the blog pagination" - }, - "theme.blog.paginator.newerEntries": { - "message": "更新的条目", - "description": "The label used to navigate to the newer blog posts page (previous page)" - }, - "theme.blog.paginator.olderEntries": { - "message": "较早的条目", - "description": "The label used to navigate to the older blog posts page (next page)" - }, - "theme.blog.post.paginator.navAriaLabel": { - "message": "博客文章页面导航", - "description": "The ARIA label for the blog posts pagination" - }, - "theme.blog.post.paginator.newerPost": { - "message": "更新的帖子", - "description": "The blog post button label to navigate to the newer/previous post" - }, - "theme.blog.post.paginator.olderPost": { - "message": "较早的帖子", - "description": "The blog post button label to navigate to the older/next post" - }, - "theme.blog.post.plurals": { - "message": "一个帖子 |{count}", - "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.tagTitle": { - "message": "{nPosts} 已标记为 \"{tagName}\"", - "description": "The title of the page for a blog tag" - }, - "theme.tags.tagsPageLink": { - "message": "查看所有标签", - "description": "The label of the link targeting the tag list page" - }, - "theme.colorToggle.ariaLabel": { - "message": "在暗色和亮色模式之间切换(当前为 {mode})", - "description": "The ARIA label for the navbar color mode toggle" - }, - "theme.colorToggle.ariaLabel.mode.dark": { - "message": "暗色模式", - "description": "The name for the dark color mode" - }, - "theme.colorToggle.ariaLabel.mode.light": { - "message": "亮色模式", - "description": "The name for the light color mode" - }, - "theme.docs.breadcrumbs.navAriaLabel": { - "message": "面包屑导航", - "description": "The ARIA label for the breadcrumbs" - }, - "theme.docs.DocCard.categoryDescription": { - "message": "{count} 项", - "description": "The default description for a category card in the generated index about how many items this category includes" - }, - "theme.docs.paginator.navAriaLabel": { - "message": "文档页面导航", - "description": "The ARIA label for the docs pagination" - }, - "theme.docs.paginator.previous": { - "message": "上一个", - "description": "The label used to navigate to the previous doc" - }, - "theme.docs.paginator.next": { - "message": "下一个", - "description": "The label used to navigate to the next doc" - }, - "theme.docs.tagDocListPageTitle.nDocsTagged": { - "message": "已标记一个doc |{count} 个文档已标记", - "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.docs.tagDocListPageTitle": { - "message": "{nDocsTagged} 与 \"{tagName}\"", - "description": "The title of the page for a docs tag" - }, - "theme.docs.versionBadge.label": { - "message": "版本: {versionLabel}" - }, - "theme.docs.versions.unreleasedVersionLabel": { - "message": "这是 {siteTitle} {versionLabel} 版本的未发布文档。", - "description": "The label used to tell the user that he's browsing an unreleased doc version" - }, - "theme.docs.versions.unmaintainedVersionLabel": { - "message": "这是 {siteTitle} {versionLabel}的文档,不再活跃。", - "description": "The label used to tell the user that he's browsing an unmaintained doc version" - }, - "theme.docs.versions.latestVersionSuggestionLabel": { - "message": "关于最新文档,请参阅 {latestVersionLink} ({versionLabel})。", - "description": "The label used to tell the user to check the latest version" - }, - "theme.docs.versions.latestVersionLinkLabel": { - "message": "最新版本", - "description": "The label used for the latest version suggestion link label" - }, - "theme.common.editThisPage": { - "message": "编辑此页面", - "description": "The link label to edit the current page" - }, - "theme.common.headingLinkTitle": { - "message": "直接链接到 {heading}", - "description": "Title for link to heading" - }, - "theme.lastUpdated.atDate": { - "message": " 在 {date}", - "description": "The words used to describe on which date a page has been last updated" - }, - "theme.lastUpdated.byUser": { - "message": " 由 {user}", - "description": "The words used to describe by who the page has been last updated" - }, - "theme.lastUpdated.lastUpdatedAtBy": { - "message": "上次更新{atDate}{byUser}", - "description": "The sentence used to display when a page has been last updated, and by who" - }, - "theme.navbar.mobileVersionsDropdown.label": { - "message": "版本", - "description": "The label for the navbar versions dropdown on mobile view" - }, - "theme.tags.tagsListLabel": { - "message": "标签:", - "description": "The label alongside a tag list" - }, - "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "关闭", - "description": "The ARIA label for close button of announcement bar" - }, - "theme.blog.sidebar.navAriaLabel": { - "message": "博客最近帖子导航", - "description": "The ARIA label for recent posts in the blog sidebar" - }, - "theme.CodeBlock.copied": { - "message": "已复制", - "description": "The copied button label on code blocks" - }, - "theme.CodeBlock.copyButtonAriaLabel": { - "message": "复制代码到剪贴板", - "description": "The ARIA label for copy code blocks button" - }, - "theme.CodeBlock.copy": { - "message": "复制", - "description": "The copy button label on code blocks" - }, - "theme.CodeBlock.wordWrapToggle": { - "message": "切换单词换行", - "description": "The title attribute for toggle word wrapping button of code block lines" - }, - "theme.NavBar.navAriaLabel": { - "message": "主要的", - "description": "The ARIA label for the main navigation" - }, - "theme.navbar.mobileLanguageDropdown.label": { - "message": "语文", - "description": "The label for the mobile language switcher dropdown" - }, - "theme.TOCCollapsible.toggleButtonLabel": { - "message": "在本页", - "description": "The label used by the button on the collapsible TOC component" - }, - "theme.blog.post.readingTime.plurals": { - "message": "一分钟读取|{readingTime} 分钟", - "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)" - }, - "theme.blog.post.readMore": { - "message": "阅读更多", - "description": "The label used in blog post item excerpts to link to full blog posts" - }, - "theme.blog.post.readMoreLabel": { - "message": "阅读更多关于 {title}", - "description": "The ARIA label for the link to full blog posts from excerpts" - }, - "theme.docs.breadcrumbs.home": { - "message": "主页", - "description": "The ARIA label for the home page in the breadcrumbs" - }, - "theme.docs.sidebar.collapseButtonTitle": { - "message": "折叠侧边栏", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.collapseButtonAriaLabel": { - "message": "折叠侧边栏", - "description": "The title attribute for collapse button of doc sidebar" - }, - "theme.docs.sidebar.navAriaLabel": { - "message": "Docs sidebar", - "description": "The ARIA label for the sidebar navigation" - }, - "theme.docs.sidebar.closeSidebarButtonAriaLabel": { - "message": "关闭导航栏", - "description": "The ARIA label for close button of mobile sidebar" - }, - "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": { - "message": "format@@0 返回主菜单", - "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)" - }, - "theme.docs.sidebar.toggleSidebarButtonAriaLabel": { - "message": "切换导航栏", - "description": "The ARIA label for hamburger menu button of mobile navigation" - }, - "theme.docs.sidebar.expandButtonTitle": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.docs.sidebar.expandButtonAriaLabel": { - "message": "Expand sidebar", - "description": "The ARIA label and title attribute for expand button of doc sidebar" - }, - "theme.PwaReloadPopup.info": { - "message": "新版本可用", - "description": "The text for PWA reload popup" - }, - "theme.PwaReloadPopup.refreshButtonText": { - "message": "刷新", - "description": "The text for PWA reload button" - }, - "theme.PwaReloadPopup.closeButtonAriaLabel": { - "message": "关闭", - "description": "The ARIA label for close button of PWA reload popup" - }, - "theme.ErrorPageContent.tryAgain": { - "message": "再试一次", - "description": "The label of the button to try again rendering when the React error boundary captures an error" - }, - "theme.common.skipToMainContent": { - "message": "跳转到主要内容", - "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation" - }, - "theme.tags.tagsPageTitle": { - "message": "标签", - "description": "The title of the tag list page" - }, - "theme.admonition.warning": { - "message": "警告", - "description": "The default label used for the Warning admonition (:::warning)" - }, - "theme.DocSidebarItem.expandCategoryAriaLabel": { - "message": "Expand sidebar category '{label}'", - "description": "The ARIA label to expand the sidebar category" - }, - "theme.DocSidebarItem.collapseCategoryAriaLabel": { - "message": "Collapse sidebar category '{label}'", - "description": "The ARIA label to collapse the sidebar category" - }, - "theme.unlistedContent.title": { - "message": "未列出页面", - "description": "The unlisted content banner title" - }, - "theme.unlistedContent.message": { - "message": "此页面未列出。搜索引擎不会索引它,只有拥有直接链接的用户才能访问它。", - "description": "The unlisted content banner message" - }, - "theme.docs.DocCard.categoryDescription.plurals": { - "message": "{count} 项", - "description": "The default description for a category card in the generated index about how many items this category includes" - } -} diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current.json b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current.json deleted file mode 100644 index 6e709ca428c..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version.label": { - "message": "下一个", - "description": "The label for version current" - }, - "sidebar.sidebar.link.Discord": { - "message": "Discord", - "description": "The label for link Discord in sidebar sidebar, linking to https://discord.linwood.dev" - }, - "sidebar.sidebar.link.GitHub": { - "message": "GitHub", - "description": "The label for link GitHub in sidebar sidebar, linking to https://github.com/LinwoodDev/Flow" - } -} diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/changelog.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/changelog.md deleted file mode 100644 index f17ff8d3e32..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/changelog.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: 更新日志 -hide_title: true -sidebar_label: 更新日志 ---- - -```mdx-code-block -import Changelog, {toc as ChangelogTOC} from "@site/../CHANGELOG.md" - - - -export const toc = ChangelogTOC; -``` diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/code-of-conduct.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/code-of-conduct.md deleted file mode 100644 index efe98fbbe3b..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/code-of-conduct.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: 行为守则 -hide_title: true -sidebar_label: 行为守则 ---- - -```mdx-code-block -import CodeOfConduct, {toc as CodeOfConductTOC} from "@site/../CODE_OF_CONDUCT.md" - - - -export const toc = CodeOfConductTOC; -``` diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/contributing.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/contributing.md deleted file mode 100644 index 3d66c5edf1b..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "贡献中" -hide_title: true -sidebar_label: "贡献中" ---- - -```mdx-code-block -import Contributing, {toc as ContributingTOC} from "@site/../CONTRIBUTING.md" - - - -export const toc = ContributingTOC; -``` diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/_category_.json b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/_category_.json deleted file mode 100644 index d4b8544e034..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/_category_.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "下载" -} \ No newline at end of file diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/android.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/android.md deleted file mode 100644 index 95b7ea98237..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/android.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Android" -sidebar_position: 4 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![稳定发布版本](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![每晚发布版本](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## 最低制度要求 - -* Android 5.0 (API 21级) 或更高版本 - -## 二进制文件 - -
- - 稳定的 - - - 每晚一次 - -
- -在这里阅读更多关于流量 [的夜间版本](/nightly)。 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md deleted file mode 100644 index d4aae4ac0f9..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/build-your-own.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "建立你自己的" -sidebar_position: 1 ---- - -1. 安装 git 和 flotter (测试版) -2. 复制资源库 -3. 导航到应用目录 -4. 使用流体工具编译应用程序 - * `通风器构建apk` - * `流体构建appbundle` - * `流体构建网络` - * `流体构建Linux` - * `通风器构建窗口` -5. 编译的文件在构建目录 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/download.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/download.md deleted file mode 100644 index 16b475d839a..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/download.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -slug: "/downloads" -sidebar_position: 0 -title: 下载 ---- - -![稳定发布版本](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![每晚发布版本](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2Fflow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## 选择您的平台 - -
- - Microsoft - Windows - - - Linux - Linux - - - macOS - MacOS - - - Android - Android - - - PWA - Web - - - Windows Terminal - Building your own - - - 服务器 - Selfhosting - -
- -## 有用的链接 - -- [更新日志](changelog) -- [较早发布的版本](https://github.com/LinwoodDev/Flow/releases) -- [最新发布](https://github.com/LinwoodDev/Flow/releases/latest) -- [支持](https://discord.linwood.dev) \ No newline at end of file diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/linux.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/linux.md deleted file mode 100644 index dc38df90d4a..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/linux.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Linux" -sidebar_position: 3 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![稳定发布版本](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![每晚发布版本](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -如果可能,请使用 flatpak版本。 否则您需要安装 `libsec-1-dev` 和 `libjsoncpp-dev`。 - -::: - -## 二进制文件 - -
-
- -
    -
  • - - 便携式设备 - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -
    -
  • - - 便携式设备 - -
  • -
  • - - DEB - -
  • -
  • - - AppImage - -
  • -
-
-
- -在这里阅读更多关于流量 [的夜间版本](/nightly)。 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/macos.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/macos.md deleted file mode 100644 index ae36c887923..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/macos.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "MacOS" -sidebar_position: 5 ---- - -![稳定发布版本](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![每晚发布版本](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## 链接 - - diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md deleted file mode 100644 index aea8b5e460c..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/post-windows.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: 感谢您下载 -hide_title: true -hide_table_of_contents: true -slug: "/downloads/post-windows" ---- - -
- -# 感谢您下载 - - - -## Windows SmartScreen - - -在安装没有证书的软件时警告用户。 - -![智能屏幕](/img/smart-screen.png) - -要安装应用程序,您需要点击"更多信息"。 - -![智能屏幕更多信息](/img/智能屏幕-more-info.png) - -然后点击"无论如何运行"。 - -
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md deleted file mode 100644 index 120007ae797..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/selfhosting.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Selfhosting" -sidebar_position: 5 ---- - -![稳定发布版本](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![每晚发布版本](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -您自己的流网络服务器的主机非常简单。 - -## 简单服务器 - -安装流体并使用以下方式构建应用: - -```bash -cd app -flotter pub get -flotter building web -``` - -所有文件都在 `app/build/web` 目录中。 - -## 停靠栏 - -复制仓库并使用 `Dockerfile` 使用: `docker building -t linwood-flow` 启动服务器使用: `停靠运行-p 8080:8080 -d linwood-flow`。 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md deleted file mode 100644 index 47727aba24e..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/thank-you.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: 感谢您下载 -hide_title: true -hide_table_of_contents: true -slug: "/downloads/thank-you" ---- - -
- -# 感谢您下载 - - - -
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/web.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/web.md deleted file mode 100644 index 4f93b07fb28..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/web.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Web" -sidebar_position: 5 ---- - -![稳定发布版本](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![每晚发布版本](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -:::note - -这是一个渐进的网络应用程序。 您可以在浏览器上安装并离线使用。 所有数据都保存在您的浏览器中。 - -::: - - -## 链接 - - - -## 版本 - -流量的主要和预览(开发)版本与稳定和夜间的版本不同。 他们与释放没有直接关联。 一旦新的提交被推送到仓库,它们将立即更新。 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/windows.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/windows.md deleted file mode 100644 index 9f803d2f6cd..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/downloads/windows.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "窗口" -sidebar_position: 2 ---- - -```mdx-code-block -import DownloadButton from '@site/src/components/DownloadButton.tsx'; -``` - -![稳定发布版本](https://img.shields.io/badge/dynamic/yaml?color=c4840d&label=Stable&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fstable%2Fapp%2Fpubspec.yaml&style=for-the-badge) ![每晚发布版本](https://img.shields.io/badge/dynamic/yaml?color=f7d28c&label=Nightly&query=%24.version&url=https%3A%2F%2Fraw.githubusercontent.com%2FLinwoodDev%2FFlow%2Fnightly%2Fapp%2Fpubspec.yaml&style=for-the-badge) - -## 最低制度要求 - -* Windows 10或更高。 - -## 二进制文件 - -
-
- -
    -
  • - - 设置 - -
  • -
  • - - 便携式设备 - -
  • -
-
-
- -
    -
  • - - 设置 - -
  • -
  • - - 便携式设备 - -
  • -
-
-
- -在这里阅读更多关于流量 [的夜间版本](/nightly)。 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/faq.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/faq.md deleted file mode 100644 index f19c005350d..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/faq.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "faq" -slug: "/faq" -title: "常见问题" -sidebar_label: "常见问题" ---- - -这里有一些常见的问题。 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/intro.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/intro.md deleted file mode 100644 index ecb5ca46811..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/intro.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -id: "community" -slug: "/community" -sidebar_label: "首页" -sidebar_position: 0 -title: "社区" ---- - -欢迎来到社区部分。 - -## 鸣谢 - -特别感谢: - -* [Flutter](https://github.com/flutter/flutter) for providing this useful crossplatform ui framework -* [适合所有此有用的桌面窗口功能的](https://github.com/leanflutter/window_manager) -* [简单易用的静态反应文档框架的 Docusaurus](https://github.com/facebook/docusaurus) - -所有其他许可都可以在设置中找到。 - -## 有用的链接 - -* [GitHub](https://github.com/LinwoodDev/Butterfly) -* [Discord](https://go.linwood.dev/discord) -* [矩阵列表](https://go.linwood.dev/matrix) diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/nightly.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/nightly.md deleted file mode 100644 index 7e0dd196933..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/nightly.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "每晚生成" -slug: "/nightly" ---- - -:::警告 - -不要使用流的夜间版本进行生产。 - -::: - -每晚构建是为了让您可以选择测试最新版本,获得最新功能 并提供反馈。 - -## 获取版本 - -转到您平台的下载页面。 所有夜间构建也会在Github上发布预发布版本。 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/pre-1-0.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/pre-1-0.md deleted file mode 100644 index e138c07e886..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/pre-1-0.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "前 1.0 版本" ---- - -不再支持这些版本。 新版本在 [版本](versions.md) 上可用。 - -| 版本 | 支持的 | | -| -- | --- | | -| | | | diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/privacypolicy.md b/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/privacypolicy.md deleted file mode 100644 index 86397117df5..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs-community/current/privacypolicy.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "隐私政策" -slug: /privacypolicy ---- - -这是应用的隐私政策。 请仔细阅读它。 Click [here](https://go.linwood.dev/privacypolicy) to read the privacy policy of the website. - -CodeDoctor将Flow 应用作为开源应用。 这种服务由CodeDoctor免费提供,原本打算使用。 - -此页面用于向访客通报我的收藏政策。 如果任何人决定使用我的服务,则使用和披露个人信息。 - -如果您选择使用我的服务,那么您就同意收集和使用与此政策相关的信息。 我收集的个人信息用于提供和改进 服务。 我将不会使用您的信息或与任何人分享您的信息,除非本隐私政策中作了说明。 - -本隐私政策中使用的术语与我们的条款和条件具有相同的含义, 除非在本隐私政策中另有定义,否则它可以在 Flow 中访问。 - -**信息收集和使用** - -为了更好的体验,我可以在使用我们的服务时要求你们向我们提供某些可以识别个人身份的信息。 我请求的信息将保存在您的设备上, 不会被我以任何方式收集。 - -应用确实使用第三方服务来收集用于识别您的信息。 - -链接到应用程序使用的第三方服务提供商的隐私政策 - -* [Google Play服务](https://www.google.com/policies/privacy/) - -**Cookie** - -Cookie 是具有少量数据的文件,通常用作匿名唯一标识符。 这些是从您访问的网站发送到您的浏览器,并存储在您设备的 内部内存中。 - -此服务没有明确使用这些“cookes”。 然而,应用可以使用第三方代码和使用"cookies"的图书馆来收集信息和改进他们的服务。 您可以选择 接受或拒绝这些cookie,并知道什么时候有一个 cookie 被发送到您的设备。 如果您选择拒绝我们的 cookie,您可能无法使用此服务的某些部分。 - -**服务商** - -我可以雇用第三方公司和个人,原因如下: - -* 为我们的服务提供便利; -* 为我们提供该处; -* a. 提供与服务有关的服务;或 -* 帮助我们分析如何使用我们的服务。 - -我想告诉该服务的用户,这些第三方可以访问您的个人信息。 原因是为了执行分配给他们的任务。 然而,他们有义务 不为任何其他目的披露或使用信息。 - -**安全** - -我珍视你们对向我们提供个人信息的信任,因此我们正在努力使用商业上可以接受的手段来保护它。 但记得没有任何通过互联网传输的方法, 或电子存储方法100% 安全可靠,我不能保证其绝对安全。 - -**链接到其他站点** - -此服务可能包含到其他站点的链接。 如果您点击第三方链接,您将被引导到该站点。 请注意这些外部站点不是由我操作的。 Therefore, I strongly advise you to review the Privacy Policy of these websites. 我对任何第三方网站或服务的内容、隐私政策或做法没有控制权,也没有任何责任。 - -**此隐私政策的更改** - -我可以不时更新我们的隐私政策。 因此,建议您定期审查本页以了解任何更改。 我将通过在这个 页面上发布新的隐私政策来通知您任何更改。 - -这项政策自2021-02-07年起生效 - -**联系我们** - -如果您对我的隐私政策有任何问题或建议,请毫不犹豫地通过contact@linwood.dev联系我。 - -此隐私政策页面是在 [privacypolicytemplate.net](https://privacypolicytemplate.net) 创建的,由 [应用程序隐私政策生成器](https://app-privacy-policy-generator.nisrulz.com/) 修改或生成 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current.json b/docs/i18n/zh/docusaurus-plugin-content-docs/current.json deleted file mode 100644 index e1eb9ed302c..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs/current.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version.label": { - "message": "下一个", - "description": "The label for version current" - }, - "sidebar.tutorialSidebar.category.server": { - "message": "服务器", - "description": "The label for category server in sidebar tutorialSidebar" - } -} diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/intro.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/intro.md deleted file mode 100644 index 2a9e3cdbabe..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs/current/intro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -sidebar_position: 1 ---- - -# 一. 导言 - -即将开始 diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/server/errors.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/server/errors.md deleted file mode 100644 index a6faa83394a..00000000000 --- a/docs/i18n/zh/docusaurus-plugin-content-docs/current/server/errors.md +++ /dev/null @@ -1,8 +0,0 @@ -# 错误列表 - -| 错误代码 | HTTP 状态代码 | 描述 | -| ---- | --------- | ---------- | -| `0` | `404` | 找不到页面 | -| `1` | `404` | 无效的 api 版本 | -| `2` | `403` | 禁止使用 | -| `3` | `400` | 错误请求 | diff --git a/docs/i18n/zh/docusaurus-theme-classic/footer.json b/docs/i18n/zh/docusaurus-theme-classic/footer.json deleted file mode 100644 index 538547b0e53..00000000000 --- a/docs/i18n/zh/docusaurus-theme-classic/footer.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "link.title.Community": { - "message": "社区", - "description": "The title of the footer links column with title=Community in the footer" - }, - "link.title.Source code": { - "message": "源代码", - "description": "The title of the footer links column with title=Source code in the footer" - }, - "link.title.Legal": { - "message": "法律", - "description": "The title of the footer links column with title=Legal in the footer" - }, - "link.item.label.Discord": { - "message": "Discord", - "description": "The label of footer link with label=Discord linking to https://discord.linwood.dev" - }, - "link.item.label.Matrix": { - "message": "矩阵列表", - "description": "The label of footer link with label=Matrix linking to https://linwood.dev/matrix" - }, - "link.item.label.Twitter": { - "message": "推特", - "description": "The label of footer link with label=Twitter linking to https://twitter.com/LinwoodDev" - }, - "link.item.label.App": { - "message": "应用", - "description": "The label of footer link with label=App linking to https://github.com/LinwoodDev/Flow/tree/develop/app" - }, - "link.item.label.Server": { - "message": "服务器", - "description": "The label of footer link with label=Server linking to https://github.com/LinwoodDev/Flow/tree/develop/server" - }, - "link.item.label.Docs": { - "message": "文档", - "description": "The label of footer link with label=Docs linking to https://github.com/LinwoodDev/Flow/tree/develop/docs" - }, - "link.item.label.Shared": { - "message": "共享的", - "description": "The label of footer link with label=Shared linking to https://github.com/LinwoodDev/Flow/tree/develop/shared" - }, - "link.item.label.Contribution guide": { - "message": "贡献指南", - "description": "The label of footer link with label=Contribution guide linking to https://github.com/LinwoodDev/Flow/blob/develop/CONTRIBUTING.md" - }, - "link.item.label.Imprint": { - "message": "图形", - "description": "The label of footer link with label=Imprint linking to https://go.linwood.dev/imprint" - }, - "link.item.label.Privacy Policy of the app": { - "message": "应用程序的隐私政策", - "description": "The label of footer link with label=Privacy Policy of the app linking to /privacypolicy" - }, - "link.item.label.Privacy Policy of the website": { - "message": "网站的隐私政策", - "description": "The label of footer link with label=Privacy Policy of the website linking to https://go.linwood.dev/privacypolicy" - }, - "copyright": { - "message": "版权 ©️ 2023 LinwoodDev。", - "description": "The footer copyright" - }, - "logo.alt": { - "message": "林伍德徽标", - "description": "The alt text of footer logo" - }, - "link.item.label.Mastodon": { - "message": "Mastodon", - "description": "The label of footer link with label=Mastodon linking to https://floss.social/@linwood" - } -} diff --git a/docs/i18n/zh/docusaurus-theme-classic/navbar.json b/docs/i18n/zh/docusaurus-theme-classic/navbar.json deleted file mode 100644 index 5643c8c73ca..00000000000 --- a/docs/i18n/zh/docusaurus-theme-classic/navbar.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "title": { - "message": "流", - "description": "The title in the navbar" - }, - "logo.alt": { - "message": "流程标志", - "description": "The alt text of navbar logo" - }, - "item.label.Tutorial": { - "message": "教程", - "description": "Navbar item with label Tutorial" - }, - "item.label.Downloads": { - "message": "下载", - "description": "Navbar item with label Downloads" - }, - "item.label.Community": { - "message": "社区", - "description": "Navbar item with label Community" - }, - "item.label.More": { - "message": "更多", - "description": "Navbar item with label More" - }, - "item.label.Matrix": { - "message": "矩阵列表", - "description": "Navbar item with label Matrix" - }, - "item.label.Discord": { - "message": "Discord", - "description": "Navbar item with label Discord" - }, - "item.label.GitHub": { - "message": "GitHub", - "description": "Navbar item with label GitHub" - }, - "item.label.Blog": { - "message": "博客", - "description": "Navbar item with label Blog" - }, - "item.label.Crowdin": { - "message": "Crowdin", - "description": "Navbar item with label Crowdin" - }, - "item.label.Twitter": { - "message": "推特", - "description": "Navbar item with label Twitter" - }, - "item.label.License": { - "message": "许可协议", - "description": "Navbar item with label License" - }, - "item.label.Mastodon": { - "message": "Mastodon", - "description": "Navbar item with label Mastodon" - } -} diff --git a/docs/package.json b/docs/package.json index 06f72b67588..485adf0f242 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,52 +1,20 @@ { - "name": "flow-docs", - "version": "0.0.0", - "private": true, + "name": "docs", + "type": "module", + "version": "0.0.1", "scripts": { - "docusaurus": "docusaurus", - "start": "docusaurus start", - "build": "docusaurus build", - "swizzle": "docusaurus swizzle", - "deploy": "docusaurus deploy", - "clear": "docusaurus clear", - "serve": "docusaurus serve", - "lint": "markdownlint-cli2 .", - "write-translations": "docusaurus write-translations", - "write-heading-ids": "docusaurus write-heading-ids" + "dev": "astro dev", + "start": "astro dev", + "build": "astro check && astro build", + "preview": "astro preview", + "astro": "astro" }, "dependencies": { - "@docusaurus/core": "3.3.2", - "@docusaurus/plugin-client-redirects": "3.3.2", - "@docusaurus/plugin-content-docs": "3.3.2", - "@docusaurus/plugin-pwa": "3.3.2", - "@docusaurus/preset-classic": "3.3.2", - "@docusaurus/theme-common": "3.3.2", - "@mdx-js/react": "^3.0.1", - "animate.css": "^4.1.1", - "clsx": "^2.1.1", - "prism-react-renderer": "^2.3.1", - "react": "^18.3.1", - "react-animation-on-scroll": "^5.1.0", - "react-dom": "^18.3.1", - "ua-parser-js": "^1.0.37" + "@astrojs/check": "^0.9.4", + "@astrojs/starlight": "^0.28.4", + "astro": "^4.16.8", + "sharp": "^0.33.5", + "typescript": "^5.6.3" }, - "browserslist": { - "production": [ - ">0.5%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - }, - "packageManager": "pnpm@9.1.3", - "devDependencies": { - "@docusaurus/module-type-aliases": "3.3.2", - "@docusaurus/tsconfig": "3.3.2", - "markdownlint-cli2": "^0.13.0", - "typescript": "^5.4.5" - } + "packageManager": "pnpm@9.12.3" } diff --git a/docs/pnpm-lock.yaml b/docs/pnpm-lock.yaml index 861065fbc34..c2beba77ecc 100644 --- a/docs/pnpm-lock.yaml +++ b/docs/pnpm-lock.yaml @@ -8,8183 +8,3216 @@ importers: .: dependencies: - '@docusaurus/core': - specifier: 3.3.2 - version: 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-client-redirects': - specifier: 3.3.2 - version: 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-docs': - specifier: 3.3.2 - version: 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-pwa': - specifier: 3.3.2 - version: 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/preset-classic': - specifier: 3.3.2 - version: 3.3.2(@algolia/client-search@4.23.3)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.4.5) - '@docusaurus/theme-common': - specifier: 3.3.2 - version: 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@mdx-js/react': - specifier: ^3.0.1 - version: 3.0.1(@types/react@18.3.3)(react@18.3.1) - animate.css: - specifier: ^4.1.1 - version: 4.1.1 - clsx: - specifier: ^2.1.1 - version: 2.1.1 - prism-react-renderer: - specifier: ^2.3.1 - version: 2.3.1(react@18.3.1) - react: - specifier: ^18.3.1 - version: 18.3.1 - react-animation-on-scroll: - specifier: ^5.1.0 - version: 5.1.0(react@18.3.1) - react-dom: - specifier: ^18.3.1 - version: 18.3.1(react@18.3.1) - ua-parser-js: - specifier: ^1.0.37 - version: 1.0.37 - devDependencies: - '@docusaurus/module-type-aliases': - specifier: 3.3.2 - version: 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/tsconfig': - specifier: 3.3.2 - version: 3.3.2 - markdownlint-cli2: - specifier: ^0.13.0 - version: 0.13.0 + '@astrojs/check': + specifier: ^0.9.4 + version: 0.9.4(typescript@5.6.3) + '@astrojs/starlight': + specifier: ^0.28.4 + version: 0.28.4(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) + astro: + specifier: ^4.16.8 + version: 4.16.8(rollup@4.24.3)(typescript@5.6.3) + sharp: + specifier: ^0.33.5 + version: 0.33.5 typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.6.3 + version: 5.6.3 packages: - '@algolia/autocomplete-core@1.9.3': - resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==} - - '@algolia/autocomplete-plugin-algolia-insights@1.9.3': - resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==} - peerDependencies: - search-insights: '>= 1 < 3' - - '@algolia/autocomplete-preset-algolia@1.9.3': - resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==} - peerDependencies: - '@algolia/client-search': '>= 4.9.1 < 6' - algoliasearch: '>= 4.9.1 < 6' + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} - '@algolia/autocomplete-shared@1.9.3': - resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==} + '@astrojs/check@0.9.4': + resolution: {integrity: sha512-IOheHwCtpUfvogHHsvu0AbeRZEnjJg3MopdLddkJE70mULItS/Vh37BHcI00mcOJcH1vhD3odbpvWokpxam7xA==} + hasBin: true peerDependencies: - '@algolia/client-search': '>= 4.9.1 < 6' - algoliasearch: '>= 4.9.1 < 6' - - '@algolia/cache-browser-local-storage@4.23.3': - resolution: {integrity: sha512-vRHXYCpPlTDE7i6UOy2xE03zHF2C8MEFjPN2v7fRbqVpcOvAUQK81x3Kc21xyb5aSIpYCjWCZbYZuz8Glyzyyg==} - - '@algolia/cache-common@4.23.3': - resolution: {integrity: sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A==} - - '@algolia/cache-in-memory@4.23.3': - resolution: {integrity: sha512-yvpbuUXg/+0rbcagxNT7un0eo3czx2Uf0y4eiR4z4SD7SiptwYTpbuS0IHxcLHG3lq22ukx1T6Kjtk/rT+mqNg==} - - '@algolia/client-account@4.23.3': - resolution: {integrity: sha512-hpa6S5d7iQmretHHF40QGq6hz0anWEHGlULcTIT9tbUssWUriN9AUXIFQ8Ei4w9azD0hc1rUok9/DeQQobhQMA==} - - '@algolia/client-analytics@4.23.3': - resolution: {integrity: sha512-LBsEARGS9cj8VkTAVEZphjxTjMVCci+zIIiRhpFun9jGDUlS1XmhCW7CTrnaWeIuCQS/2iPyRqSy1nXPjcBLRA==} - - '@algolia/client-common@4.23.3': - resolution: {integrity: sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==} - - '@algolia/client-personalization@4.23.3': - resolution: {integrity: sha512-3E3yF3Ocr1tB/xOZiuC3doHQBQ2zu2MPTYZ0d4lpfWads2WTKG7ZzmGnsHmm63RflvDeLK/UVx7j2b3QuwKQ2g==} - - '@algolia/client-search@4.23.3': - resolution: {integrity: sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==} + typescript: ^5.0.0 - '@algolia/events@4.0.1': - resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==} + '@astrojs/compiler@2.10.3': + resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==} - '@algolia/logger-common@4.23.3': - resolution: {integrity: sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g==} + '@astrojs/internal-helpers@0.4.1': + resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==} - '@algolia/logger-console@4.23.3': - resolution: {integrity: sha512-8xoiseoWDKuCVnWP8jHthgaeobDLolh00KJAdMe9XPrWPuf1by732jSpgy2BlsLTaT9m32pHI8CRfrOqQzHv3A==} + '@astrojs/language-server@2.15.4': + resolution: {integrity: sha512-JivzASqTPR2bao9BWsSc/woPHH7OGSGc9aMxXL4U6egVTqBycB3ZHdBJPuOCVtcGLrzdWTosAqVPz1BVoxE0+A==} + hasBin: true + peerDependencies: + prettier: ^3.0.0 + prettier-plugin-astro: '>=0.11.0' + peerDependenciesMeta: + prettier: + optional: true + prettier-plugin-astro: + optional: true - '@algolia/recommend@4.23.3': - resolution: {integrity: sha512-9fK4nXZF0bFkdcLBRDexsnGzVmu4TSYZqxdpgBW2tEyfuSSY54D4qSRkLmNkrrz4YFvdh2GM1gA8vSsnZPR73w==} + '@astrojs/markdown-remark@5.3.0': + resolution: {integrity: sha512-r0Ikqr0e6ozPb5bvhup1qdWnSPUvQu6tub4ZLYaKyG50BXZ0ej6FhGz3GpChKpH7kglRFPObJd/bDyf2VM9pkg==} - '@algolia/requester-browser-xhr@4.23.3': - resolution: {integrity: sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==} + '@astrojs/mdx@3.1.9': + resolution: {integrity: sha512-3jPD4Bff6lIA20RQoonnZkRtZ9T3i0HFm6fcDF7BMsKIZ+xBP2KXzQWiuGu62lrVCmU612N+SQVGl5e0fI+zWg==} + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} + peerDependencies: + astro: ^4.8.0 - '@algolia/requester-common@4.23.3': - resolution: {integrity: sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==} + '@astrojs/prism@3.1.0': + resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==} + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} - '@algolia/requester-node-http@4.23.3': - resolution: {integrity: sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==} + '@astrojs/sitemap@3.2.1': + resolution: {integrity: sha512-uxMfO8f7pALq0ADL6Lk68UV6dNYjJ2xGUzyjjVj60JLBs5a6smtlkBYv3tQ0DzoqwS7c9n4FUx5lgv0yPo/fgA==} - '@algolia/transporter@4.23.3': - resolution: {integrity: sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==} + '@astrojs/starlight@0.28.4': + resolution: {integrity: sha512-SU0vgCQCQZ6AuA84doxpGr5Aowr9L/PalddUbeDWSzkjE/YierFcvmBg78cSB0pdL0Q1v4k4l+wqhz176wHmTA==} + peerDependencies: + astro: ^4.14.0 - '@ampproject/remapping@2.3.0': - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} - engines: {node: '>=6.0.0'} + '@astrojs/telemetry@3.1.0': + resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==} + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} - '@apideck/better-ajv-errors@0.3.6': - resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} - engines: {node: '>=10'} - peerDependencies: - ajv: '>=8' + '@astrojs/yaml2ts@0.2.2': + resolution: {integrity: sha512-GOfvSr5Nqy2z5XiwqTouBBpy5FyI6DEe+/g/Mk5am9SjILN1S5fOEvYK0GuWHg98yS/dobP4m8qyqw/URW35fQ==} - '@babel/code-frame@7.24.6': - resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.24.6': - resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==} + '@babel/compat-data@7.26.2': + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} engines: {node: '>=6.9.0'} - '@babel/core@7.24.6': - resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==} + '@babel/core@7.26.0': + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} - '@babel/generator@7.24.6': - resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==} + '@babel/generator@7.26.2': + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} engines: {node: '>=6.9.0'} - '@babel/helper-annotate-as-pure@7.24.6': - resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==} + '@babel/helper-annotate-as-pure@7.25.9': + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6': - resolution: {integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==} + '@babel/helper-compilation-targets@7.25.9': + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@7.24.6': - resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==} + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.24.6': - resolution: {integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==} + '@babel/helper-module-transforms@7.26.0': + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-create-regexp-features-plugin@7.24.6': - resolution: {integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==} + '@babel/helper-plugin-utils@7.25.9': + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-define-polyfill-provider@0.6.2': - resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-environment-visitor@7.24.6': - resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==} + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} - '@babel/helper-function-name@7.24.6': - resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==} + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - '@babel/helper-hoist-variables@7.24.6': - resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==} + '@babel/helper-validator-option@7.25.9': + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} engines: {node: '>=6.9.0'} - '@babel/helper-member-expression-to-functions@7.24.6': - resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==} + '@babel/helpers@7.26.0': + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} engines: {node: '>=6.9.0'} - '@babel/helper-module-imports@7.24.6': - resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==} - engines: {node: '>=6.9.0'} + '@babel/parser@7.26.2': + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} + engines: {node: '>=6.0.0'} + hasBin: true - '@babel/helper-module-transforms@7.24.6': - resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==} + '@babel/plugin-syntax-jsx@7.25.9': + resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': ^7.0.0-0 - '@babel/helper-optimise-call-expression@7.24.6': - resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==} + '@babel/plugin-transform-react-jsx@7.25.9': + resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@babel/helper-plugin-utils@7.24.6': - resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==} + '@babel/runtime@7.26.0': + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} - '@babel/helper-remap-async-to-generator@7.24.6': - resolution: {integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==} + '@babel/template@7.25.9': + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-replace-supers@7.24.6': - resolution: {integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==} + '@babel/traverse@7.25.9': + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-simple-access@7.24.6': - resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==} + '@babel/types@7.26.0': + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} engines: {node: '>=6.9.0'} - '@babel/helper-skip-transparent-expression-wrappers@7.24.6': - resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==} - engines: {node: '>=6.9.0'} + '@ctrl/tinycolor@4.1.0': + resolution: {integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==} + engines: {node: '>=14'} - '@babel/helper-split-export-declaration@7.24.6': - resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==} - engines: {node: '>=6.9.0'} + '@emmetio/abbreviation@2.3.3': + resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} - '@babel/helper-string-parser@7.24.6': - resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==} - engines: {node: '>=6.9.0'} + '@emmetio/css-abbreviation@2.1.8': + resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==} - '@babel/helper-validator-identifier@7.24.6': - resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==} - engines: {node: '>=6.9.0'} + '@emmetio/css-parser@0.4.0': + resolution: {integrity: sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==} - '@babel/helper-validator-option@7.24.6': - resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==} - engines: {node: '>=6.9.0'} + '@emmetio/html-matcher@1.3.0': + resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==} - '@babel/helper-wrap-function@7.24.6': - resolution: {integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==} - engines: {node: '>=6.9.0'} + '@emmetio/scanner@1.0.4': + resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==} - '@babel/helpers@7.24.6': - resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==} - engines: {node: '>=6.9.0'} + '@emmetio/stream-reader-utils@0.1.0': + resolution: {integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==} - '@babel/highlight@7.24.6': - resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==} - engines: {node: '>=6.9.0'} + '@emmetio/stream-reader@2.2.0': + resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==} - '@babel/parser@7.24.6': - resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==} - engines: {node: '>=6.0.0'} - hasBin: true + '@emnapi/runtime@1.3.1': + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6': - resolution: {integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6': - resolution: {integrity: sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6': - resolution: {integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6': - resolution: {integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] - '@babel/plugin-syntax-async-generators@7.8.4': - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] - '@babel/plugin-syntax-class-properties@7.12.13': - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] - '@babel/plugin-syntax-class-static-block@7.14.5': - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] - '@babel/plugin-syntax-dynamic-import@7.8.3': - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] - '@babel/plugin-syntax-export-namespace-from@7.8.3': - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] - '@babel/plugin-syntax-import-assertions@7.24.6': - resolution: {integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] - '@babel/plugin-syntax-import-attributes@7.24.6': - resolution: {integrity: sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] - '@babel/plugin-syntax-import-meta@7.10.4': - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] - '@babel/plugin-syntax-json-strings@7.8.3': - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] - '@babel/plugin-syntax-jsx@7.24.6': - resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] - '@babel/plugin-syntax-logical-assignment-operators@7.10.4': - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] - '@babel/plugin-syntax-numeric-separator@7.10.4': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] - '@babel/plugin-syntax-object-rest-spread@7.8.3': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] - '@babel/plugin-syntax-optional-catch-binding@7.8.3': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] - '@babel/plugin-syntax-optional-chaining@7.8.3': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] - '@babel/plugin-syntax-private-property-in-object@7.14.5': - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] - '@babel/plugin-syntax-top-level-await@7.14.5': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] - '@babel/plugin-syntax-typescript@7.24.6': - resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@expressive-code/core@0.35.6': + resolution: {integrity: sha512-xGqCkmfkgT7lr/rvmfnYdDSeTdCSp1otAHgoFS6wNEeO7wGDPpxdosVqYiIcQ8CfWUABh/pGqWG90q+MV3824A==} - '@babel/plugin-syntax-unicode-sets-regex@7.18.6': - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@expressive-code/plugin-frames@0.35.6': + resolution: {integrity: sha512-CqjSWjDJ3wabMJZfL9ZAzH5UAGKg7KWsf1TBzr4xvUbZvWoBtLA/TboBML0U1Ls8h/4TRCIvR4VEb8dv5+QG3w==} - '@babel/plugin-transform-arrow-functions@7.24.6': - resolution: {integrity: sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@expressive-code/plugin-shiki@0.35.6': + resolution: {integrity: sha512-xm+hzi9BsmhkDUGuyAWIydOAWer7Cs9cj8FM0t4HXaQ+qCubprT6wJZSKUxuvFJIUsIOqk1xXFaJzGJGnWtKMg==} - '@babel/plugin-transform-async-generator-functions@7.24.6': - resolution: {integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@expressive-code/plugin-text-markers@0.35.6': + resolution: {integrity: sha512-/k9eWVZSCs+uEKHR++22Uu6eIbHWEciVHbIuD8frT8DlqTtHYaaiwHPncO6KFWnGDz5i/gL7oyl6XmOi/E6GVg==} - '@babel/plugin-transform-async-to-generator@7.24.6': - resolution: {integrity: sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@img/sharp-darwin-arm64@0.33.5': + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] - '@babel/plugin-transform-block-scoped-functions@7.24.6': - resolution: {integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@img/sharp-darwin-x64@0.33.5': + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] - '@babel/plugin-transform-block-scoping@7.24.6': - resolution: {integrity: sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@img/sharp-libvips-darwin-arm64@1.0.4': + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} + cpu: [arm64] + os: [darwin] - '@babel/plugin-transform-class-properties@7.24.6': - resolution: {integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@img/sharp-libvips-darwin-x64@1.0.4': + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} + cpu: [x64] + os: [darwin] - '@babel/plugin-transform-class-static-block@7.24.6': - resolution: {integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 + '@img/sharp-libvips-linux-arm64@1.0.4': + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.0.5': + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.0.4': + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.0.4': + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.33.5': + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.33.5': + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.33.5': + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.33.5': + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.33.5': + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.33.5': + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.33.5': + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-ia32@0.33.5': + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.33.5': + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] - '@babel/plugin-transform-classes@7.24.6': - resolution: {integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} - '@babel/plugin-transform-computed-properties@7.24.6': - resolution: {integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} - '@babel/plugin-transform-destructuring@7.24.6': - resolution: {integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} - '@babel/plugin-transform-dotall-regex@7.24.6': - resolution: {integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@babel/plugin-transform-duplicate-keys@7.24.6': - resolution: {integrity: sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - '@babel/plugin-transform-dynamic-import@7.24.6': - resolution: {integrity: sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@mdx-js/mdx@3.1.0': + resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==} - '@babel/plugin-transform-exponentiation-operator@7.24.6': - resolution: {integrity: sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} - '@babel/plugin-transform-export-namespace-from@7.24.6': - resolution: {integrity: sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} - '@babel/plugin-transform-for-of@7.24.6': - resolution: {integrity: sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} - '@babel/plugin-transform-function-name@7.24.6': - resolution: {integrity: sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@oslojs/encoding@1.1.0': + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} - '@babel/plugin-transform-json-strings@7.24.6': - resolution: {integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@pagefind/darwin-arm64@1.1.1': + resolution: {integrity: sha512-tZ9tysUmQpFs2EqWG2+E1gc+opDAhSyZSsgKmFzhnWfkK02YHZhvL5XJXEZDqYy3s1FAKhwjTg8XDxneuBlDZQ==} + cpu: [arm64] + os: [darwin] - '@babel/plugin-transform-literals@7.24.6': - resolution: {integrity: sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@pagefind/darwin-x64@1.1.1': + resolution: {integrity: sha512-ChohLQ39dLwaxQv0jIQB/SavP3TM5K5ENfDTqIdzLkmfs3+JlzSDyQKcJFjTHYcCzQOZVeieeGq8PdqvLJxJxQ==} + cpu: [x64] + os: [darwin] - '@babel/plugin-transform-logical-assignment-operators@7.24.6': - resolution: {integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@pagefind/default-ui@1.1.1': + resolution: {integrity: sha512-ZM0zDatWDnac/VGHhQCiM7UgA4ca8jpjA+VfuTJyHJBaxGqZMQnm4WoTz9E0KFcue1Bh9kxpu7uWFZfwpZZk0A==} - '@babel/plugin-transform-member-expression-literals@7.24.6': - resolution: {integrity: sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@pagefind/linux-arm64@1.1.1': + resolution: {integrity: sha512-H5P6wDoCoAbdsWp0Zx0DxnLUrwTGWGLu/VI1rcN2CyFdY2EGSvPQsbGBMrseKRNuIrJDFtxHHHyjZ7UbzaM9EA==} + cpu: [arm64] + os: [linux] - '@babel/plugin-transform-modules-amd@7.24.6': - resolution: {integrity: sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@pagefind/linux-x64@1.1.1': + resolution: {integrity: sha512-yJs7tTYbL2MI3HT+ngs9E1BfUbY9M4/YzA0yEM5xBo4Xl8Yu8Qg2xZTOQ1/F6gwvMrjCUFo8EoACs6LRDhtMrQ==} + cpu: [x64] + os: [linux] - '@babel/plugin-transform-modules-commonjs@7.24.6': - resolution: {integrity: sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@pagefind/windows-x64@1.1.1': + resolution: {integrity: sha512-b7/qPqgIl+lMzkQ8fJt51SfguB396xbIIR+VZ3YrL2tLuyifDJ1wL5mEm+ddmHxJ2Fki340paPcDan9en5OmAw==} + cpu: [x64] + os: [win32] - '@babel/plugin-transform-modules-systemjs@7.24.6': - resolution: {integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==} - engines: {node: '>=6.9.0'} + '@rollup/pluginutils@5.1.3': + resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} + engines: {node: '>=14.0.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true - '@babel/plugin-transform-modules-umd@7.24.6': - resolution: {integrity: sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@rollup/rollup-android-arm-eabi@4.24.3': + resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==} + cpu: [arm] + os: [android] - '@babel/plugin-transform-named-capturing-groups-regex@7.24.6': - resolution: {integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@rollup/rollup-android-arm64@4.24.3': + resolution: {integrity: sha512-iAHpft/eQk9vkWIV5t22V77d90CRofgR2006UiCjHcHJFVI1E0oBkQIAbz+pLtthFw3hWEmVB4ilxGyBf48i2Q==} + cpu: [arm64] + os: [android] - '@babel/plugin-transform-new-target@7.24.6': - resolution: {integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@rollup/rollup-darwin-arm64@4.24.3': + resolution: {integrity: sha512-QPW2YmkWLlvqmOa2OwrfqLJqkHm7kJCIMq9kOz40Zo9Ipi40kf9ONG5Sz76zszrmIZZ4hgRIkez69YnTHgEz1w==} + cpu: [arm64] + os: [darwin] - '@babel/plugin-transform-nullish-coalescing-operator@7.24.6': - resolution: {integrity: sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@rollup/rollup-darwin-x64@4.24.3': + resolution: {integrity: sha512-KO0pN5x3+uZm1ZXeIfDqwcvnQ9UEGN8JX5ufhmgH5Lz4ujjZMAnxQygZAVGemFWn+ZZC0FQopruV4lqmGMshow==} + cpu: [x64] + os: [darwin] - '@babel/plugin-transform-numeric-separator@7.24.6': - resolution: {integrity: sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@rollup/rollup-freebsd-arm64@4.24.3': + resolution: {integrity: sha512-CsC+ZdIiZCZbBI+aRlWpYJMSWvVssPuWqrDy/zi9YfnatKKSLFCe6fjna1grHuo/nVaHG+kiglpRhyBQYRTK4A==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.24.3': + resolution: {integrity: sha512-F0nqiLThcfKvRQhZEzMIXOQG4EeX61im61VYL1jo4eBxv4aZRmpin6crnBJQ/nWnCsjH5F6J3W6Stdm0mBNqBg==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.24.3': + resolution: {integrity: sha512-KRSFHyE/RdxQ1CSeOIBVIAxStFC/hnBgVcaiCkQaVC+EYDtTe4X7z5tBkFyRoBgUGtB6Xg6t9t2kulnX6wJc6A==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.24.3': + resolution: {integrity: sha512-h6Q8MT+e05zP5BxEKz0vi0DhthLdrNEnspdLzkoFqGwnmOzakEHSlXfVyA4HJ322QtFy7biUAVFPvIDEDQa6rw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.24.3': + resolution: {integrity: sha512-fKElSyXhXIJ9pqiYRqisfirIo2Z5pTTve5K438URf08fsypXrEkVmShkSfM8GJ1aUyvjakT+fn2W7Czlpd/0FQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.24.3': + resolution: {integrity: sha512-YlddZSUk8G0px9/+V9PVilVDC6ydMz7WquxozToozSnfFK6wa6ne1ATUjUvjin09jp34p84milxlY5ikueoenw==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.24.3': + resolution: {integrity: sha512-yNaWw+GAO8JjVx3s3cMeG5Esz1cKVzz8PkTJSfYzE5u7A+NvGmbVFEHP+BikTIyYWuz0+DX9kaA3pH9Sqxp69g==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.24.3': + resolution: {integrity: sha512-lWKNQfsbpv14ZCtM/HkjCTm4oWTKTfxPmr7iPfp3AHSqyoTz5AgLemYkWLwOBWc+XxBbrU9SCokZP0WlBZM9lA==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.24.3': + resolution: {integrity: sha512-HoojGXTC2CgCcq0Woc/dn12wQUlkNyfH0I1ABK4Ni9YXyFQa86Fkt2Q0nqgLfbhkyfQ6003i3qQk9pLh/SpAYw==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.24.3': + resolution: {integrity: sha512-mnEOh4iE4USSccBOtcrjF5nj+5/zm6NcNhbSEfR3Ot0pxBwvEn5QVUXcuOwwPkapDtGZ6pT02xLoPaNv06w7KQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.24.3': + resolution: {integrity: sha512-rMTzawBPimBQkG9NKpNHvquIUTQPzrnPxPbCY1Xt+mFkW7pshvyIS5kYgcf74goxXOQk0CP3EoOC1zcEezKXhw==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.24.3': + resolution: {integrity: sha512-2lg1CE305xNvnH3SyiKwPVsTVLCg4TmNCF1z7PSHX2uZY2VbUpdkgAllVoISD7JO7zu+YynpWNSKAtOrX3AiuA==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.24.3': + resolution: {integrity: sha512-9SjYp1sPyxJsPWuhOCX6F4jUMXGbVVd5obVpoVEi8ClZqo52ViZewA6eFz85y8ezuOA+uJMP5A5zo6Oz4S5rVQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.24.3': + resolution: {integrity: sha512-HGZgRFFYrMrP3TJlq58nR1xy8zHKId25vhmm5S9jETEfDf6xybPxsavFTJaufe2zgOGYJBskGlj49CwtEuFhWQ==} + cpu: [x64] + os: [win32] + + '@shikijs/core@1.22.2': + resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==} + + '@shikijs/engine-javascript@1.22.2': + resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==} + + '@shikijs/engine-oniguruma@1.22.2': + resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==} + + '@shikijs/types@1.22.2': + resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==} + + '@shikijs/vscode-textmate@9.3.0': + resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} - '@babel/plugin-transform-object-rest-spread@7.24.6': - resolution: {integrity: sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/acorn@4.0.6': + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - '@babel/plugin-transform-object-super@7.24.6': - resolution: {integrity: sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - '@babel/plugin-transform-optional-catch-binding@7.24.6': - resolution: {integrity: sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/babel__generator@7.6.8': + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} - '@babel/plugin-transform-optional-chaining@7.24.6': - resolution: {integrity: sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - '@babel/plugin-transform-parameters@7.24.6': - resolution: {integrity: sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/babel__traverse@7.20.6': + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} - '@babel/plugin-transform-private-methods@7.24.6': - resolution: {integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/cookie@0.6.0': + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} - '@babel/plugin-transform-private-property-in-object@7.24.6': - resolution: {integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - '@babel/plugin-transform-property-literals@7.24.6': - resolution: {integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} - '@babel/plugin-transform-react-constant-elements@7.24.6': - resolution: {integrity: sha512-vQfyXRtG/kNIcTYRd/49uJnwvMig9X3R4XsTVXRml2RFupZFY+2RDuK+/ymb+MfX2WuIHAgUZc2xEvQrnI7QCg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} - '@babel/plugin-transform-react-display-name@7.24.6': - resolution: {integrity: sha512-/3iiEEHDsJuj9QU09gbyWGSUxDboFcD7Nj6dnHIlboWSodxXAoaY/zlNMHeYAC0WsERMqgO9a7UaM77CsYgWcg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - '@babel/plugin-transform-react-jsx-development@7.24.6': - resolution: {integrity: sha512-F7EsNp5StNDouSSdYyDSxh4J+xvj/JqG+Cb6s2fA+jCyHOzigG5vTwgH8tU2U8Voyiu5zCG9bAK49wTr/wPH0w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} - '@babel/plugin-transform-react-jsx@7.24.6': - resolution: {integrity: sha512-pCtPHhpRZHfwdA5G1Gpk5mIzMA99hv0R8S/Ket50Rw+S+8hkt3wBWqdqHaPw0CuUYxdshUgsPiLQ5fAs4ASMhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} - '@babel/plugin-transform-react-pure-annotations@7.24.6': - resolution: {integrity: sha512-0HoDQlFJJkXRyV2N+xOpUETbKHcouSwijRQbKWVtxsPoq5bbB30qZag9/pSc5xcWVYjTHlLsBsY+hZDnzQTPNw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - '@babel/plugin-transform-regenerator@7.24.6': - resolution: {integrity: sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/nlcst@2.0.3': + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} - '@babel/plugin-transform-reserved-words@7.24.6': - resolution: {integrity: sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/node@17.0.45': + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - '@babel/plugin-transform-runtime@7.24.6': - resolution: {integrity: sha512-W3gQydMb0SY99y/2lV0Okx2xg/8KzmZLQsLaiCmwNRl1kKomz14VurEm+2TossUb+sRvBCnGe+wx8KtIgDtBbQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/sax@1.2.7': + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} - '@babel/plugin-transform-shorthand-properties@7.24.6': - resolution: {integrity: sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} - '@babel/plugin-transform-spread@7.24.6': - resolution: {integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - '@babel/plugin-transform-sticky-regex@7.24.6': - resolution: {integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@ungap/structured-clone@1.2.0': + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@babel/plugin-transform-template-literals@7.24.6': - resolution: {integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==} - engines: {node: '>=6.9.0'} + '@volar/kit@2.4.8': + resolution: {integrity: sha512-HY+HTP9sSqj0St9j1N8l85YMu4w0GxCtelzkzZWuq2GVz0+QRYwlyc0mPH7749OknUAdtsdozBR5Ecez55Ncug==} peerDependencies: - '@babel/core': ^7.0.0-0 + typescript: '*' - '@babel/plugin-transform-typeof-symbol@7.24.6': - resolution: {integrity: sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@volar/language-core@2.4.8': + resolution: {integrity: sha512-K/GxMOXGq997bO00cdFhTNuR85xPxj0BEEAy+BaqqayTmy9Tmhfgmq2wpJcVspRhcwfgPoE2/mEJa26emUhG/g==} - '@babel/plugin-transform-typescript@7.24.6': - resolution: {integrity: sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@volar/language-server@2.4.8': + resolution: {integrity: sha512-3Jd9Y+0Zhwi/zfdRxqoNrm7AxP6lgTsw4Ni9r6eCyWYGVsTnpVwGmlcbiZyDja6anoKZxnaeDatX1jkaHHWaRQ==} - '@babel/plugin-transform-unicode-escapes@7.24.6': - resolution: {integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@volar/language-service@2.4.8': + resolution: {integrity: sha512-9y8X4cdUxXmy4s5HoB8jmOpDIZG7XVFu4iEFvouhZlJX2leCq0pbq5h7dhA+O8My0fne3vtE6cJ4t9nc+8UBZw==} - '@babel/plugin-transform-unicode-property-regex@7.24.6': - resolution: {integrity: sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@volar/source-map@2.4.8': + resolution: {integrity: sha512-jeWJBkC/WivdelMwxKkpFL811uH/jJ1kVxa+c7OvG48DXc3VrP7pplSWPP2W1dLMqBxD+awRlg55FQQfiup4cA==} - '@babel/plugin-transform-unicode-regex@7.24.6': - resolution: {integrity: sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@volar/typescript@2.4.8': + resolution: {integrity: sha512-6xkIYJ5xxghVBhVywMoPMidDDAFT1OoQeXwa27HSgJ6AiIKRe61RXLoik+14Z7r0JvnblXVsjsRLmCr42SGzqg==} - '@babel/plugin-transform-unicode-sets-regex@7.24.6': - resolution: {integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@vscode/emmet-helper@2.9.3': + resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==} - '@babel/preset-env@7.24.6': - resolution: {integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@vscode/l10n@0.0.18': + resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==} - '@babel/preset-modules@0.1.6-no-external-plugins': - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - '@babel/preset-react@7.24.6': - resolution: {integrity: sha512-8mpzh1bWvmINmwM3xpz6ahu57mNaWavMm+wBNjQ4AFu1nghKBiIRET7l/Wmj4drXany/BBGjJZngICcD98F1iw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true - '@babel/preset-typescript@7.24.6': - resolution: {integrity: sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - '@babel/regjsgen@0.8.0': - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} - '@babel/runtime-corejs3@7.24.6': - resolution: {integrity: sha512-tbC3o8uHK9xMgMsvUm9qGqxVpbv6yborMBLbDteHIc7JDNHsTV0vDMQ5j1O1NXvO+BDELtL9KgoWYaUVIVGt8w==} - engines: {node: '>=6.9.0'} + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} - '@babel/runtime@7.24.6': - resolution: {integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==} - engines: {node: '>=6.9.0'} + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} - '@babel/template@7.24.6': - resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==} - engines: {node: '>=6.9.0'} + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} - '@babel/traverse@7.24.6': - resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==} - engines: {node: '>=6.9.0'} + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} - '@babel/types@7.24.6': - resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==} - engines: {node: '>=6.9.0'} + arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} - '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - '@discoveryjs/json-ext@0.5.7': - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - '@docsearch/css@3.6.0': - resolution: {integrity: sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==} + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} - '@docsearch/react@3.6.0': - resolution: {integrity: sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==} - peerDependencies: - '@types/react': '>= 16.8.0 < 19.0.0' - react: '>= 16.8.0 < 19.0.0' - react-dom: '>= 16.8.0 < 19.0.0' - search-insights: '>= 1 < 3' - peerDependenciesMeta: - '@types/react': - optional: true - react: - optional: true - react-dom: - optional: true - search-insights: - optional: true + array-iterate@2.0.1: + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} - '@docusaurus/core@3.3.2': - resolution: {integrity: sha512-PzKMydKI3IU1LmeZQDi+ut5RSuilbXnA8QdowGeJEgU8EJjmx3rBHNT1LxQxOVqNEwpWi/csLwd9bn7rUjggPA==} - engines: {node: '>=18.0'} + astring@1.9.0: + resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} hasBin: true - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 - '@docusaurus/cssnano-preset@3.3.2': - resolution: {integrity: sha512-+5+epLk/Rp4vFML4zmyTATNc3Is+buMAL6dNjrMWahdJCJlMWMPd/8YfU+2PA57t8mlSbhLJ7vAZVy54cd1vRQ==} - engines: {node: '>=18.0'} + astro-expressive-code@0.35.6: + resolution: {integrity: sha512-1U4KrvFuodaCV3z4I1bIR16SdhQlPkolGsYTtiANxPZUVv/KitGSCTjzksrkPonn1XuwVqvnwmUUVzTLWngnBA==} + peerDependencies: + astro: ^4.0.0-beta || ^3.3.0 - '@docusaurus/logger@3.3.2': - resolution: {integrity: sha512-Ldu38GJ4P8g4guN7d7pyCOJ7qQugG7RVyaxrK8OnxuTlaImvQw33aDRwaX2eNmX8YK6v+//Z502F4sOZbHHCHQ==} - engines: {node: '>=18.0'} + astro@4.16.8: + resolution: {integrity: sha512-BRWFP0UQ8gkOr90KQW7oooedtgCk/j91pyv1WQUmgZwMUZk/v0HJRiddAZgvGCECOnmZFc9ZqRZnBsAMUgApNQ==} + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} + hasBin: true - '@docusaurus/mdx-loader@3.3.2': - resolution: {integrity: sha512-AFRxj/aOk3/mfYDPxE3wTbrjeayVRvNSZP7mgMuUlrb2UlPRbSVAFX1k2RbgAJrnTSwMgb92m2BhJgYRfptN3g==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} - '@docusaurus/module-type-aliases@3.3.2': - resolution: {integrity: sha512-b/XB0TBJah5yKb4LYuJT4buFvL0MGAb0+vJDrJtlYMguRtsEBkf2nWl5xP7h4Dlw6ol0hsHrCYzJ50kNIOEclw==} - peerDependencies: - react: '*' - react-dom: '*' + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} - '@docusaurus/plugin-client-redirects@3.3.2': - resolution: {integrity: sha512-W8ueb5PaQ06oanatL+CzE3GjqeRBTzv3MSFqEQlBa8BqLyOomc1uHsWgieE3glHsckU4mUZ6sHnOfesAtYnnew==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + base-64@1.0.0: + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} - '@docusaurus/plugin-content-blog@3.3.2': - resolution: {integrity: sha512-fJU+dmqp231LnwDJv+BHVWft8pcUS2xVPZdeYH6/ibH1s2wQ/sLcmUrGWyIv/Gq9Ptj8XWjRPMghlxghuPPoxg==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + bcp-47-match@2.0.3: + resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} - '@docusaurus/plugin-content-docs@3.3.2': - resolution: {integrity: sha512-Dm1ri2VlGATTN3VGk1ZRqdRXWa1UlFubjaEL6JaxaK7IIFqN/Esjpl+Xw10R33loHcRww/H76VdEeYayaL76eg==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + bcp-47@2.1.0: + resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} - '@docusaurus/plugin-content-pages@3.3.2': - resolution: {integrity: sha512-EKc9fQn5H2+OcGER8x1aR+7URtAGWySUgULfqE/M14+rIisdrBstuEZ4lUPDRrSIexOVClML82h2fDS+GSb8Ew==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - '@docusaurus/plugin-debug@3.3.2': - resolution: {integrity: sha512-oBIBmwtaB+YS0XlmZ3gCO+cMbsGvIYuAKkAopoCh0arVjtlyPbejzPrHuCoRHB9G7abjNZw7zoONOR8+8LM5+Q==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + boxen@8.0.1: + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} + engines: {node: '>=18'} - '@docusaurus/plugin-google-analytics@3.3.2': - resolution: {integrity: sha512-jXhrEIhYPSClMBK6/IA8qf1/FBoxqGXZvg7EuBax9HaK9+kL3L0TJIlatd8jQJOMtds8mKw806TOCc3rtEad1A==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} - '@docusaurus/plugin-google-gtag@3.3.2': - resolution: {integrity: sha512-vcrKOHGbIDjVnNMrfbNpRQR1x6Jvcrb48kVzpBAOsKbj9rXZm/idjVAXRaewwobHdOrJkfWS/UJoxzK8wyLRBQ==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + browserslist@4.24.2: + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true - '@docusaurus/plugin-google-tag-manager@3.3.2': - resolution: {integrity: sha512-ldkR58Fdeks0vC+HQ+L+bGFSJsotQsipXD+iKXQFvkOfmPIV6QbHRd7IIcm5b6UtwOiK33PylNS++gjyLUmaGw==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + camelcase@8.0.0: + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} + engines: {node: '>=16'} - '@docusaurus/plugin-pwa@3.3.2': - resolution: {integrity: sha512-NoGj0ds9S67sPfu/9vduWigtGlp+XY+wM72lkNEWTDcU7ioLQkZzBUKaeP8q+I9Yv0DRHMrNRhYngt26Sm+RBg==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + caniuse-lite@1.0.30001676: + resolution: {integrity: sha512-Qz6zwGCiPghQXGJvgQAem79esjitvJ+CxSbSQkW9H/UX5hg8XM88d4lp2W+MEQ81j+Hip58Il+jGVdazk1z9cw==} - '@docusaurus/plugin-sitemap@3.3.2': - resolution: {integrity: sha512-/ZI1+bwZBhAgC30inBsHe3qY9LOZS+79fRGkNdTcGHRMcdAp6Vw2pCd1gzlxd/xU+HXsNP6cLmTOrggmRp3Ujg==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - '@docusaurus/preset-classic@3.3.2': - resolution: {integrity: sha512-1SDS7YIUN1Pg3BmD6TOTjhB7RSBHJRpgIRKx9TpxqyDrJ92sqtZhomDc6UYoMMLQNF2wHFZZVGFjxJhw2VpL+Q==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - '@docusaurus/react-loadable@6.0.0': - resolution: {integrity: sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==} - peerDependencies: - react: '*' + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} - '@docusaurus/theme-classic@3.3.2': - resolution: {integrity: sha512-gepHFcsluIkPb4Im9ukkiO4lXrai671wzS3cKQkY9BXQgdVwsdPf/KS0Vs4Xlb0F10fTz+T3gNjkxNEgSN9M0A==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - '@docusaurus/theme-common@3.3.2': - resolution: {integrity: sha512-kXqSaL/sQqo4uAMQ4fHnvRZrH45Xz2OdJ3ABXDS7YVGPSDTBC8cLebFrRR4YF9EowUHto1UC/EIklJZQMG/usA==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - '@docusaurus/theme-search-algolia@3.3.2': - resolution: {integrity: sha512-qLkfCl29VNBnF1MWiL9IyOQaHxUvicZp69hISyq/xMsNvFKHFOaOfk9xezYod2Q9xx3xxUh9t/QPigIei2tX4w==} - engines: {node: '>=18.0'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} - '@docusaurus/theme-translations@3.3.2': - resolution: {integrity: sha512-bPuiUG7Z8sNpGuTdGnmKl/oIPeTwKr0AXLGu9KaP6+UFfRZiyWbWE87ti97RrevB2ffojEdvchNujparR3jEZQ==} - engines: {node: '>=18.0'} + chokidar@4.0.1: + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + engines: {node: '>= 14.16.0'} - '@docusaurus/tsconfig@3.3.2': - resolution: {integrity: sha512-2MQXkLoWqgOSiqFojNEq8iPtFBHGQqd1b/SQMoe+v3GgHmk/L6YTTO/hMcHhWb1hTFmbkei++IajSfD3RlZKvw==} + ci-info@4.0.0: + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + engines: {node: '>=8'} - '@docusaurus/types@3.3.2': - resolution: {integrity: sha512-5p201S7AZhliRxTU7uMKtSsoC8mgPA9bs9b5NQg1IRdRxJfflursXNVsgc3PcMqiUTul/v1s3k3rXXFlRE890w==} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} - '@docusaurus/utils-common@3.3.2': - resolution: {integrity: sha512-QWFTLEkPYsejJsLStgtmetMFIA3pM8EPexcZ4WZ7b++gO5jGVH7zsipREnCHzk6+eDgeaXfkR6UPaTt86bp8Og==} - engines: {node: '>=18.0'} - peerDependencies: - '@docusaurus/types': '*' - peerDependenciesMeta: - '@docusaurus/types': - optional: true + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} - '@docusaurus/utils-validation@3.3.2': - resolution: {integrity: sha512-itDgFs5+cbW9REuC7NdXals4V6++KifgVMzoGOOOSIifBQw+8ULhy86u5e1lnptVL0sv8oAjq2alO7I40GR7pA==} - engines: {node: '>=18.0'} + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} - '@docusaurus/utils@3.3.2': - resolution: {integrity: sha512-f4YMnBVymtkSxONv4Y8js3Gez9IgHX+Lcg6YRMOjVbq8sgCcdYK1lf6SObAuz5qB/mxiSK7tW0M9aaiIaUSUJg==} - engines: {node: '>=18.0'} - peerDependencies: - '@docusaurus/types': '*' - peerDependenciesMeta: - '@docusaurus/types': - optional: true + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} - '@hapi/hoek@9.3.0': - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} - '@hapi/topo@5.1.0': - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + collapse-white-space@2.1.0: + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} - '@jest/schemas@29.6.3': - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} - '@jest/types@29.6.3': - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} - '@jridgewell/resolve-uri@3.1.2': - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} - '@jridgewell/source-map@0.3.6': - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - '@jridgewell/sourcemap-codec@1.4.15': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + cookie@0.7.2: + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} + engines: {node: '>= 0.6'} - '@leichtgewicht/ip-codec@2.0.5': - resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + css-selector-parser@3.0.5: + resolution: {integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==} - '@mdx-js/mdx@3.0.1': - resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==} + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true - '@mdx-js/react@3.0.1': - resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} peerDependencies: - '@types/react': '>=16' - react: '>=16' - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} - '@pnpm/config.env-replace@1.1.0': - resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} - engines: {node: '>=12.22.0'} + detect-libc@2.0.3: + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} + engines: {node: '>=8'} - '@pnpm/network.ca-file@1.0.2': - resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} - engines: {node: '>=12.22.0'} + deterministic-object-hash@2.0.2: + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} + engines: {node: '>=18'} - '@pnpm/npm-conf@2.2.2': - resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} - engines: {node: '>=12'} + devalue@5.1.1: + resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} - '@polka/url@1.0.0-next.25': - resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} - '@rollup/plugin-babel@5.3.1': - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true + diff@5.2.0: + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + direction@2.0.1: + resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} + hasBin: true - '@rollup/plugin-replace@2.4.2': - resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - '@rollup/plugin-terser@0.4.4': - resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + dset@3.1.4: + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} + engines: {node: '>=4'} - '@rollup/pluginutils@3.1.0': - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 + electron-to-chromium@1.5.50: + resolution: {integrity: sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==} - '@rollup/pluginutils@5.1.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + emmet@2.4.11: + resolution: {integrity: sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==} - '@sideway/address@4.1.5': - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + emoji-regex@10.4.0: + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} - '@sideway/formula@3.0.1': - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - '@sideway/pinpoint@2.0.0': - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} - '@sinclair/typebox@0.27.8': - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - '@sindresorhus/is@4.6.0': - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} + esast-util-from-estree@2.0.0: + resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} - '@sindresorhus/is@5.6.0': - resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} - engines: {node: '>=14.16'} + esast-util-from-js@2.0.1: + resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} - '@sindresorhus/merge-streams@2.3.0': - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true - '@slorber/remark-comment@1.0.0': - resolution: {integrity: sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==} + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} - '@surma/rollup-plugin-off-main-thread@2.2.3': - resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} - '@svgr/babel-plugin-add-jsx-attribute@8.0.0': - resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-util-attach-comments@3.0.0: + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-util-build-jsx@3.0.1: + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': - resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} - '@svgr/babel-plugin-svg-dynamic-title@8.0.0': - resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-util-scope@1.0.0: + resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==} - '@svgr/babel-plugin-svg-em-dimensions@8.0.0': - resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-util-to-js@2.0.0: + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} - '@svgr/babel-plugin-transform-react-native-svg@8.1.0': - resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-util-visit@2.0.0: + resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} - '@svgr/babel-plugin-transform-svg-component@8.0.0': - resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - '@svgr/babel-preset@8.1.0': - resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - '@svgr/core@8.1.0': - resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} - engines: {node: '>=14'} + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} - '@svgr/hast-util-to-babel-ast@8.0.0': - resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} - engines: {node: '>=14'} + expressive-code@0.35.6: + resolution: {integrity: sha512-+mx+TPTbMqgo0mL92Xh9QgjW0kSQIsEivMgEcOnaqKqL7qCw8Vkqc5Rg/di7ZYw4aMUSr74VTc+w8GQWu05j1g==} - '@svgr/plugin-jsx@8.1.0': - resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} - '@svgr/plugin-svgo@8.1.0': - resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - '@svgr/webpack@8.1.0': - resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} - engines: {node: '>=14'} + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - '@szmarczak/http-timer@5.0.1': - resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} - engines: {node: '>=14.16'} + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} - '@trysound/sax@0.2.0': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} + fast-uri@3.0.3: + resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} - '@types/acorn@4.0.6': - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} - '@types/body-parser@1.19.5': - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} - '@types/bonjour@3.5.13': - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + find-up-simple@1.0.0: + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} - '@types/connect-history-api-fallback@1.5.4': - resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} - '@types/connect@3.4.38': - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + flattie@1.1.1: + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} + engines: {node: '>=8'} - '@types/eslint-scope@3.7.7': - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] - '@types/eslint@8.56.10': - resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} - '@types/estree-jsx@1.0.5': - resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} - '@types/estree@0.0.39': - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + get-east-asian-width@1.3.0: + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} + engines: {node: '>=18'} - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} - '@types/express-serve-static-core@4.19.1': - resolution: {integrity: sha512-ej0phymbFLoCB26dbbq5PGScsf2JAJ4IJHjG10LalgUV36XKTmA4GdA+PVllKvRk0sEKt64X8975qFnkSi0hqA==} + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} - '@types/express@4.17.21': - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} - '@types/gtag.js@0.0.12': - resolution: {integrity: sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==} + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - '@types/hast@3.0.4': - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} - '@types/history@4.7.11': - resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} + hast-util-embedded@3.0.0: + resolution: {integrity: sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==} - '@types/html-minifier-terser@6.1.0': - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + hast-util-format@1.1.0: + resolution: {integrity: sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==} - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + hast-util-from-html@2.0.3: + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} - '@types/http-errors@2.0.4': - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + hast-util-from-parse5@8.0.1: + resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} - '@types/http-proxy@1.17.14': - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + hast-util-has-property@3.0.0: + resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} - '@types/istanbul-lib-coverage@2.0.6': - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + hast-util-is-body-ok-link@3.0.1: + resolution: {integrity: sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==} - '@types/istanbul-lib-report@3.0.3': - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + hast-util-is-element@3.0.0: + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} - '@types/istanbul-reports@3.0.4': - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + hast-util-minify-whitespace@1.0.1: + resolution: {integrity: sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==} - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} - '@types/mdast@4.0.4': - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + hast-util-phrasing@3.0.1: + resolution: {integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==} - '@types/mdx@2.0.13': - resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + hast-util-raw@9.0.4: + resolution: {integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==} - '@types/mime@1.3.5': - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + hast-util-select@6.0.3: + resolution: {integrity: sha512-OVRQlQ1XuuLP8aFVLYmC2atrfWHS5UD3shonxpnyrjcCkwtvmt/+N6kYJdcY4mkMJhxp4kj2EFIxQ9kvkkt/eQ==} - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + hast-util-to-estree@3.1.0: + resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} - '@types/node-forge@1.3.11': - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + hast-util-to-html@9.0.3: + resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==} - '@types/node@17.0.45': - resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} + hast-util-to-jsx-runtime@2.3.2: + resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} - '@types/node@20.12.12': - resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==} + hast-util-to-parse5@8.0.0: + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} - '@types/parse-json@4.0.2': - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + hast-util-to-string@3.0.1: + resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} - '@types/prismjs@1.26.4': - resolution: {integrity: sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==} + hast-util-to-text@4.0.2: + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} - '@types/prop-types@15.7.12': - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} - '@types/qs@6.9.15': - resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + hastscript@8.0.0: + resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + hastscript@9.0.0: + resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==} - '@types/react-router-config@5.0.11': - resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==} + html-escaper@3.0.3: + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} - '@types/react-router-dom@5.3.3': - resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} + html-void-elements@3.0.0: + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} - '@types/react-router@5.1.20': - resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} + html-whitespace-sensitive-tag-names@3.0.1: + resolution: {integrity: sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==} - '@types/react@18.3.3': - resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + i18next@23.16.4: + resolution: {integrity: sha512-9NIYBVy9cs4wIqzurf7nLXPyf3R78xYbxExVqHLK9od3038rjpyOEzW+XB130kZ1N4PZ9inTtJ471CRJ4Ituyg==} - '@types/retry@0.12.0': - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} - '@types/sax@1.2.7': - resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} + inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - '@types/send@0.17.4': - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + inline-style-parser@0.2.4: + resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} - '@types/serve-index@1.9.4': - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} - '@types/serve-static@1.15.7': - resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} - '@types/sockjs@0.3.36': - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} - '@types/trusted-types@2.0.7': - resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - '@types/unist@2.0.10': - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true - '@types/unist@3.0.2': - resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} - '@types/ws@8.5.10': - resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} - '@types/yargs-parser@21.0.3': - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} - '@types/yargs@17.0.32': - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} - '@ungap/structured-clone@1.2.0': - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - '@webassemblyjs/ast@1.12.1': - resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true - '@webassemblyjs/floating-point-hex-parser@1.11.6': - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + is-interactive@2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} - '@webassemblyjs/helper-api-error@1.11.6': - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} - '@webassemblyjs/helper-buffer@1.12.1': - resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} - '@webassemblyjs/helper-numbers@1.11.6': - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + is-unicode-supported@1.3.0: + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + engines: {node: '>=12'} - '@webassemblyjs/helper-wasm-bytecode@1.11.6': - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} - '@webassemblyjs/helper-wasm-section@1.12.1': - resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} - '@webassemblyjs/ieee754@1.11.6': - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - '@webassemblyjs/leb128@1.11.6': - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true - '@webassemblyjs/utf8@1.11.6': - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true - '@webassemblyjs/wasm-edit@1.12.1': - resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true - '@webassemblyjs/wasm-gen@1.12.1': - resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - '@webassemblyjs/wasm-opt@1.12.1': - resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true - '@webassemblyjs/wasm-parser@1.12.1': - resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + jsonc-parser@2.3.1: + resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} - '@webassemblyjs/wast-printer@1.12.1': - resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + jsonc-parser@3.3.1: + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} - '@xtuc/ieee754@1.2.0': - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} - '@xtuc/long@4.2.2': - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} - accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} - acorn-import-assertions@1.9.0: - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 + load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} - acorn-walk@8.3.2: - resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} - engines: {node: '>=0.4.0'} + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} - hasBin: true + log-symbols@6.0.0: + resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} + engines: {node: '>=18'} - address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} - aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - ajv-formats@2.1.1: - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true + magic-string@0.30.12: + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} - ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} - ajv-keywords@5.1.0: - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 + markdown-extensions@2.0.0: + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} + engines: {node: '>=16'} - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} - ajv@8.14.0: - resolution: {integrity: sha512-oYs1UUtO97ZO2lJ4bwnWeQW8/zvOIQLGKcvPTsWmvc2SYgBb+upuNS5NxoLaMU4h8Ju3Nbj6Cq8mD2LQoqVKFA==} + mdast-util-definitions@6.0.0: + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} - algoliasearch-helper@3.20.0: - resolution: {integrity: sha512-6EVhAmVug0+hdRHWbubF7hLHHhLoQ8NjLk6iS6d4k5chWawpS5EDexrF6Jx/hPZvUKIeNrzsbTpjAkcvrjNLHg==} - peerDependencies: - algoliasearch: '>= 3.1 < 6' + mdast-util-directive@3.0.0: + resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} - algoliasearch@4.23.3: - resolution: {integrity: sha512-Le/3YgNvjW9zxIQMRhUHuhiUjAlKY/zsdZpfq4dlLqg6mEm0nL6yk+7f2hDOtLpxsgE4jSzDmvHL7nXdBp5feg==} - - animate.css@4.1.1: - resolution: {integrity: sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==} + mdast-util-find-and-replace@3.0.1: + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} - ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} - ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + mdast-util-gfm-footnote@2.0.0: + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} - ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + mdast-util-gfm@3.0.0: + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + mdast-util-mdx-expression@2.0.1: + resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} - arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + mdast-util-mdx-jsx@3.1.3: + resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==} - argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + mdast-util-mdx@3.0.0: + resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} - argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} - array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} - array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + mdast-util-to-markdown@2.1.1: + resolution: {integrity: sha512-OrkcCoqAkEg9b1ykXBrA0ehRc8H4fGU/03cACmW2xXzau1+dIdS+qJugh1Cqex3hMumSBgSE/5pc7uqP12nLAw==} - arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - astring@1.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} - async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + micromark-core-commonmark@2.0.1: + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} - at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + micromark-extension-directive@3.0.2: + resolution: {integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==} - autoprefixer@10.4.19: - resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} - available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} - babel-loader@9.1.3: - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} - babel-plugin-dynamic-import-node@2.3.3: - resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} + micromark-extension-gfm-table@2.1.0: + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} - babel-plugin-polyfill-corejs2@0.4.11: - resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} - babel-plugin-polyfill-corejs3@0.10.4: - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} - babel-plugin-polyfill-regenerator@0.6.2: - resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} - bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + micromark-extension-mdx-expression@3.0.0: + resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + micromark-extension-mdx-jsx@3.0.1: + resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==} - batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + micromark-extension-mdx-md@2.0.0: + resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} - big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + micromark-extension-mdxjs-esm@3.0.0: + resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} - binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + micromark-extension-mdxjs@3.0.0: + resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} - body-parser@1.20.2: - resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + micromark-factory-destination@2.0.0: + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} - bonjour-service@1.2.1: - resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} + micromark-factory-label@2.0.0: + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} - boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + micromark-factory-mdx-expression@2.0.2: + resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==} - boxen@6.2.1: - resolution: {integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + micromark-factory-space@2.0.0: + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} - boxen@7.1.1: - resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} - engines: {node: '>=14.16'} + micromark-factory-title@2.0.0: + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + micromark-factory-whitespace@2.0.0: + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + micromark-util-character@2.1.0: + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} - braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + micromark-util-chunked@2.0.0: + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} - browserslist@4.23.0: - resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + micromark-util-classify-character@2.0.0: + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} - buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + micromark-util-combine-extensions@2.0.0: + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} + micromark-util-decode-numeric-character-reference@2.0.1: + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} - bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} + micromark-util-decode-string@2.0.0: + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} - bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + micromark-util-encode@2.0.0: + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} - cacheable-lookup@7.0.0: - resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} - engines: {node: '>=14.16'} + micromark-util-events-to-acorn@2.0.2: + resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} - cacheable-request@10.2.14: - resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} - engines: {node: '>=14.16'} + micromark-util-html-tag-name@2.0.0: + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} - call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + micromark-util-normalize-identifier@2.0.0: + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + micromark-util-resolve-all@2.0.0: + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} - camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + micromark-util-sanitize-uri@2.0.0: + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} - camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + micromark-util-subtokenize@2.0.1: + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} - camelcase@7.0.1: - resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} - engines: {node: '>=14.16'} + micromark-util-symbol@2.0.0: + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} - caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + micromark-util-types@2.0.0: + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} - caniuse-lite@1.0.30001623: - resolution: {integrity: sha512-X/XhAVKlpIxWPpgRTnlgZssJrF0m6YtRA0QDWgsBNT12uZM6LPRydR7ip405Y3t1LamD8cP2TZFEDZFBf5ApcA==} + micromark@4.0.0: + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} - ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} engines: {node: '>=10'} - chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} + muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} - character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true - character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + neotraverse@0.6.18: + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} + engines: {node: '>= 10'} - character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + nlcst-to-string@4.0.0: + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} - character-reference-invalid@2.0.1: - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + node-releases@2.0.18: + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} - cheerio-select@2.1.0: - resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - cheerio@1.0.0-rc.12: - resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} - engines: {node: '>= 6'} + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} - chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + oniguruma-to-js@0.4.3: + resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==} - chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} + ora@8.1.0: + resolution: {integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==} + engines: {node: '>=18'} - ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} - clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} + p-limit@6.1.0: + resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} + engines: {node: '>=18'} - clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} - cli-boxes@3.0.0: - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} - engines: {node: '>=10'} + p-queue@8.0.1: + resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} + engines: {node: '>=18'} - cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} - engines: {node: 10.* || >= 12.*} + p-timeout@6.1.3: + resolution: {integrity: sha512-UJUyfKbwvr/uZSV6btANfb+0t/mOhKV/KXcCUTp8FcQI+v/0d+wXqH4htrW0E4rR6WiEO/EPvUFiV9D5OI4vlw==} + engines: {node: '>=14.16'} - clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} + pagefind@1.1.1: + resolution: {integrity: sha512-U2YR0dQN5B2fbIXrLtt/UXNS0yWSSYfePaad1KcBPTi0p+zRtsVjwmoPaMQgTks5DnHNbmDxyJUL5TGaLljK3A==} + hasBin: true - collapse-white-space@2.1.0: - resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} + parse-entities@4.0.1: + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + parse-latin@7.0.0: + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + parse5@7.2.1: + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} - colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} - colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} - combine-promises@1.2.0: - resolution: {integrity: sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==} - engines: {node: '>=10'} + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} - comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} - commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: '>=14'} + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} - commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + postcss-nested@6.2.0: + resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 - commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} - commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + postcss@8.4.47: + resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} + engines: {node: ^10 || ^12 || >=14} - commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + preferred-pm@4.0.0: + resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} + engines: {node: '>=18.12'} - common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + prettier@2.8.7: + resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} + engines: {node: '>=10.13.0'} + hasBin: true - common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} + prismjs@1.29.0: + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + engines: {node: '>=6'} - compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} - compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - config-chain@1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} - configstore@6.0.0: - resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} - engines: {node: '>=12'} + recma-build-jsx@1.0.0: + resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} - connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} + recma-jsx@1.0.0: + resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==} - consola@2.15.3: - resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} + recma-parse@1.0.0: + resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==} - content-disposition@0.5.2: - resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==} - engines: {node: '>= 0.6'} + recma-stringify@1.0.0: + resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} - content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} + regex@4.3.3: + resolution: {integrity: sha512-r/AadFO7owAq1QJVeZ/nq9jNS1vyZt+6t1p/E59B56Rn2GCya+gr1KSyOzNL/er+r+B7phv5jG2xU2Nz1YkmJg==} - convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + rehype-expressive-code@0.35.6: + resolution: {integrity: sha512-pPdE+pRcRw01kxMOwHQjuRxgwlblZt5+wAc3w2aPGgmcnn57wYjn07iKO7zaznDxYVxMYVvYlnL+R3vWFQS4Gw==} - cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + rehype-format@5.0.1: + resolution: {integrity: sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==} - cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} - engines: {node: '>= 0.6'} + rehype-parse@9.0.1: + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} - copy-text-to-clipboard@3.2.0: - resolution: {integrity: sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==} - engines: {node: '>=12'} + rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} - copy-webpack-plugin@11.0.0: - resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: ^5.1.0 + rehype-recma@1.0.0: + resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} - core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} + rehype-stringify@10.0.1: + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} - core-js-pure@3.37.1: - resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} + rehype@13.0.2: + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} - core-js@3.37.1: - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} + remark-directive@3.0.0: + resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} - core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + remark-gfm@4.0.0: + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} - cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} + remark-mdx@3.1.0: + resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==} - cosmiconfig@8.3.6: - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + remark-rehype@11.1.1: + resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} - crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} + remark-smartypants@3.0.2: + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} + engines: {node: '>=16.0.0'} - crypto-random-string@4.0.0: - resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} - engines: {node: '>=12'} + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} - css-declaration-sorter@7.2.0: - resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - postcss: ^8.0.9 + request-light@0.5.8: + resolution: {integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==} - css-loader@6.11.0: - resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: ^5.0.0 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true + request-light@0.7.0: + resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==} - css-minimizer-webpack-plugin@5.0.1: - resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@parcel/css': '*' - '@swc/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' - lightningcss: '*' - webpack: ^5.0.0 - peerDependenciesMeta: - '@parcel/css': - optional: true - '@swc/css': - optional: true - clean-css: - optional: true - csso: - optional: true - esbuild: - optional: true - lightningcss: - optional: true + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} - css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} - css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + retext-latin@4.0.0: + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} - css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + retext-smartypants@6.2.0: + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} - css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + retext-stringify@4.0.0: + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} - css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + retext@9.0.0: + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rollup@4.24.3: + resolution: {integrity: sha512-HBW896xR5HGmoksbi3JBDtmVzWiPAYqp7wip50hjQ67JbDz61nyoMPdqu1DvVW9asYb2M65Z20ZHsyJCMqMyDg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - cssnano-preset-advanced@6.1.2: - resolution: {integrity: sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - cssnano-preset-default@6.1.2: - resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} - cssnano-utils@4.0.2: - resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} - cssnano@6.1.2: - resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true - csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + sharp@0.33.5: + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} + shiki@1.22.2: + resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==} - data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} - data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} - debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + sitemap@8.0.0: + resolution: {integrity: sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==} + engines: {node: '>=14.0.0', npm: '>=6.0.0'} + hasBin: true - debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} - decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} - decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + stdin-discarder@0.2.2: + resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} + engines: {node: '>=18'} - default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} + stream-replace-string@2.0.0: + resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} - defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} - define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} - define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} - define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} - del@6.1.1: - resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} - engines: {node: '>=10'} + strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} - depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} - depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + style-to-object@0.4.4: + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} - dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + style-to-object@1.0.8: + resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} + + tinyexec@0.3.1: + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} - destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} - detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - detect-port-alt@1.1.6: - resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} - engines: {node: '>= 4.2.1'} - hasBin: true + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} + tsconfck@3.1.4: + resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==} + engines: {node: ^18 || >=20} hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true - devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + tslib@2.8.0: + resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==} - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + type-fest@4.26.1: + resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} + engines: {node: '>=16'} - dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} - engines: {node: '>=6'} + typesafe-path@0.2.2: + resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} - dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + typescript-auto-import-cache@0.3.5: + resolution: {integrity: sha512-fAIveQKsoYj55CozUiBoj4b/7WpN0i4o74wiGY5JVUEoD0XiqDk1tJqTEjgzL2/AizKQrXxyRosSebyDzBZKjw==} - dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + typescript@5.6.3: + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} + engines: {node: '>=14.17'} + hasBin: true - dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} - domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + unist-util-find-after@5.0.0: + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} - domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} - domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + unist-util-modify-children@4.0.0: + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} - domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + unist-util-position-from-estree@2.0.0: + resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} - domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} - dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} - dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} - duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + unist-util-visit-children@3.0.0: + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} - eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} - ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} + update-browserslist-db@1.1.1: + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' - electron-to-chromium@1.4.783: - resolution: {integrity: sha512-bT0jEz/Xz1fahQpbZ1D7LgmPYZ3iHVY39NcWWro1+hA2IvjiPeaXtfSqrQ+nXjApMvQRE2ASt1itSLRrebHMRQ==} - - emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - - emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - emojilib@2.4.0: - resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} - emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} - emoticon@4.0.1: - resolution: {integrity: sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw==} + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} + vite@5.4.10: + resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true - enhanced-resolve@5.16.1: - resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==} - engines: {node: '>=10.13.0'} + vitefu@1.0.3: + resolution: {integrity: sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-beta.0 + peerDependenciesMeta: + vite: + optional: true - entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + volar-service-css@0.0.62: + resolution: {integrity: sha512-JwNyKsH3F8PuzZYuqPf+2e+4CTU8YoyUHEHVnoXNlrLe7wy9U3biomZ56llN69Ris7TTy/+DEX41yVxQpM4qvg==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true - entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + volar-service-emmet@0.0.62: + resolution: {integrity: sha512-U4dxWDBWz7Pi4plpbXf4J4Z/ss6kBO3TYrACxWNsE29abu75QzVS0paxDDhI6bhqpbDFXlpsDhZ9aXVFpnfGRQ==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + volar-service-html@0.0.62: + resolution: {integrity: sha512-Zw01aJsZRh4GTGUjveyfEzEqpULQUdQH79KNEiKVYHZyuGtdBRYCHlrus1sueSNMxwwkuF5WnOHfvBzafs8yyQ==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true - es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} - engines: {node: '>= 0.4'} + volar-service-prettier@0.0.62: + resolution: {integrity: sha512-h2yk1RqRTE+vkYZaI9KYuwpDfOQRrTEMvoHol0yW4GFKc75wWQRrb5n/5abDrzMPrkQbSip8JH2AXbvrRtYh4w==} + peerDependencies: + '@volar/language-service': ~2.4.0 + prettier: ^2.2 || ^3.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + prettier: + optional: true - es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} + volar-service-typescript-twoslash-queries@0.0.62: + resolution: {integrity: sha512-KxFt4zydyJYYI0kFAcWPTh4u0Ha36TASPZkAnNY784GtgajerUqM80nX/W1d0wVhmcOFfAxkVsf/Ed+tiYU7ng==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true - es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} + volar-service-typescript@0.0.62: + resolution: {integrity: sha512-p7MPi71q7KOsH0eAbZwPBiKPp9B2+qrdHAd6VY5oTo9BUXatsOAdakTm9Yf0DUj6uWBAaOT01BSeVOPwucMV1g==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true - es-module-lexer@1.5.3: - resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==} + volar-service-yaml@0.0.62: + resolution: {integrity: sha512-k7gvv7sk3wa+nGll3MaSKyjwQsJjIGCHFjVkl3wjaSP2nouKyn9aokGmqjrl39mi88Oy49giog2GkZH526wjig==} + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true - es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} + vscode-css-languageservice@6.3.1: + resolution: {integrity: sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==} - es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} + vscode-html-languageservice@5.3.1: + resolution: {integrity: sha512-ysUh4hFeW/WOWz/TO9gm08xigiSsV/FOAZ+DolgJfeLftna54YdmZ4A+lIn46RbdO3/Qv5QHTn1ZGqmrXQhZyA==} - es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + vscode-json-languageservice@4.1.8: + resolution: {integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==} + engines: {npm: '>=7.0.0'} - escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} + vscode-jsonrpc@6.0.0: + resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==} + engines: {node: '>=8.0.0 || >=10.0.0'} - escape-goat@4.0.0: - resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} - engines: {node: '>=12'} + vscode-jsonrpc@8.2.0: + resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} + engines: {node: '>=14.0.0'} - escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + vscode-languageserver-protocol@3.16.0: + resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==} - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + vscode-languageserver-protocol@3.17.5: + resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + vscode-languageserver-textdocument@1.0.12: + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} - escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + vscode-languageserver-types@3.16.0: + resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==} - eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + vscode-languageserver-types@3.17.5: + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} - esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + vscode-languageserver@7.0.0: + resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==} hasBin: true - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + vscode-languageserver@9.0.1: + resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} + hasBin: true - estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + vscode-nls@5.2.0: + resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + vscode-uri@2.1.2: + resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} - estree-util-attach-comments@3.0.0: - resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} + vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} - estree-util-build-jsx@3.0.1: - resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} - estree-util-is-identifier-name@3.0.0: - resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + which-pm-runs@1.1.0: + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} + engines: {node: '>=4'} - estree-util-to-js@2.0.0: - resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} + which-pm@3.0.0: + resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} + engines: {node: '>=18.12'} - estree-util-value-to-estree@3.1.1: - resolution: {integrity: sha512-5mvUrF2suuv5f5cGDnDphIy4/gW86z82kl5qG6mM9z04SEQI4FB5Apmaw/TGEf3l55nLtMs5s51dmhUzvAHQCA==} + widest-line@5.0.0: + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} + engines: {node: '>=18'} - estree-util-visit@2.0.0: - resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} - estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + wrap-ansi@9.0.0: + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} - estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + xxhash-wasm@1.0.2: + resolution: {integrity: sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==} - estree-walker@3.0.3: - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - eta@2.2.0: - resolution: {integrity: sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==} - engines: {node: '>=6.0.0'} + yaml-language-server@1.15.0: + resolution: {integrity: sha512-N47AqBDCMQmh6mBLmI6oqxryHRzi33aPFPsJhYy3VTUGCdLHYjGh4FZzpUjRlphaADBBkDmnkM/++KNIOHi5Rw==} + hasBin: true - etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} + yaml@2.2.2: + resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==} + engines: {node: '>= 14'} - eval@0.1.8: - resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==} - engines: {node: '>= 0.8'} + yaml@2.6.0: + resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==} + engines: {node: '>= 14'} + hasBin: true - eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} - events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + yocto-queue@1.1.1: + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + engines: {node: '>=12.20'} - express@4.19.2: - resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} - engines: {node: '>= 0.10.0'} + zod-to-json-schema@3.23.5: + resolution: {integrity: sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==} + peerDependencies: + zod: ^3.23.3 - extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + zod-to-ts@1.2.0: + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} + peerDependencies: + typescript: ^4.9.4 || ^5.0.2 + zod: ^3 - extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + zod@3.23.8: + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} +snapshots: - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - fast-url-parser@1.1.3: - resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} + '@astrojs/check@0.9.4(typescript@5.6.3)': + dependencies: + '@astrojs/language-server': 2.15.4(typescript@5.6.3) + chokidar: 4.0.1 + kleur: 4.1.5 + typescript: 5.6.3 + yargs: 17.7.2 + transitivePeerDependencies: + - prettier + - prettier-plugin-astro - fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + '@astrojs/compiler@2.10.3': {} - fault@2.0.1: - resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} + '@astrojs/internal-helpers@0.4.1': {} - faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} - - feed@4.2.2: - resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==} - engines: {node: '>=0.4.0'} - - file-loader@6.2.0: - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - - filesize@8.0.7: - resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} - engines: {node: '>= 0.4.0'} - - fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} - - finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} - - find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} - - find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true - - follow-redirects@1.15.6: - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - - fork-ts-checker-webpack-plugin@6.5.3: - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - - form-data-encoder@2.1.4: - resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} - engines: {node: '>= 14.17'} - - format@0.2.2: - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} - engines: {node: '>=0.4.x'} - - forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} - - fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - - fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - - fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} - - fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} - - fs-monkey@1.0.6: - resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} - - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} - - functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - - gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - - get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} - - get-own-enumerable-property-symbols@3.0.2: - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} - - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - - get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} - - github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported - - global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} - - global-modules@2.0.0: - resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} - engines: {node: '>=6'} - - global-prefix@3.0.0: - resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} - engines: {node: '>=6'} - - globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - - globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} - - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - - globby@13.2.2: - resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - globby@14.0.1: - resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} - engines: {node: '>=18'} - - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - - got@12.6.1: - resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==} - engines: {node: '>=14.16'} - - graceful-fs@4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - - graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - - gray-matter@4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} - - gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} - - handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - - has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - - has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} - - has-yarn@3.0.0: - resolution: {integrity: sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} - - hast-util-from-parse5@8.0.1: - resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} - - hast-util-parse-selector@4.0.0: - resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} - - hast-util-raw@9.0.3: - resolution: {integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==} - - hast-util-to-estree@3.1.0: - resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} - - hast-util-to-jsx-runtime@2.3.0: - resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} - - hast-util-to-parse5@8.0.0: - resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} - - hast-util-whitespace@3.0.0: - resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} - - hastscript@8.0.0: - resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} - - he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - - history@4.10.1: - resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} - - hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - - hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} - - html-entities@2.5.2: - resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} - - html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - - html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true - - html-minifier-terser@7.2.0: - resolution: {integrity: sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==} - engines: {node: ^14.13.1 || >=16.0.0} - hasBin: true - - html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - - html-void-elements@3.0.0: - resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} - - html-webpack-plugin@5.6.0: - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: ^5.20.0 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true - - htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} - - htmlparser2@8.0.2: - resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} - - http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - - http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} - - http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} - - http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} - - http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} - - http-proxy-middleware@2.0.6: - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/express': ^4.17.13 - peerDependenciesMeta: - '@types/express': - optional: true - - http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} - - http2-wrapper@2.2.1: - resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} - engines: {node: '>=10.19.0'} - - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - - iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} - - icss-utils@5.1.0: - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - idb@7.1.1: - resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} - - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} - - image-size@1.1.1: - resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==} - engines: {node: '>=16.x'} - hasBin: true - - immer@9.0.21: - resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - import-lazy@4.0.0: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: '>=8'} - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - - infima@0.2.0-alpha.43: - resolution: {integrity: sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==} - engines: {node: '>=12'} - - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. - - inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - - ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} - - inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - - inline-style-parser@0.2.3: - resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} - - internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} - - interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - - invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - - ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} - - ipaddr.js@2.2.0: - resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} - engines: {node: '>= 10'} - - is-alphabetical@2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} - - is-alphanumerical@2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} - - is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - - is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - - is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true - - is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} - - is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} - - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - - is-decimal@2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - - is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - - is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-hexadecimal@2.0.1: - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - - is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} - - is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - - is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} - - is-npm@6.0.0: - resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-obj@1.0.1: - resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} - engines: {node: '>=0.10.0'} - - is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} - - is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} - - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - - is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} - - is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} - - is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} - - is-reference@3.0.2: - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} - - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - - is-regexp@1.0.0: - resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} - engines: {node: '>=0.10.0'} - - is-root@2.1.0: - resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} - engines: {node: '>=6'} - - is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} - - is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - - is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} - - is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - - is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - - is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} - - is-yarn-global@0.4.1: - resolution: {integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==} - engines: {node: '>=12'} - - isarray@0.0.1: - resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} - - isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - - isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - - jake@10.9.1: - resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} - engines: {node: '>=10'} - hasBin: true - - jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} - - jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} - hasBin: true - - joi@17.13.1: - resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==} - - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - - json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - - json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - - jsonc-parser@3.2.1: - resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} - - jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - - jsonpointer@5.0.1: - resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} - engines: {node: '>=0.10.0'} - - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - - kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - - latest-version@7.0.0: - resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} - engines: {node: '>=14.16'} - - launch-editor@2.6.1: - resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==} - - leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - - lilconfig@3.1.1: - resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} - engines: {node: '>=14'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - linkify-it@5.0.0: - resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} - - loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} - - loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} - - loader-utils@3.2.1: - resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} - engines: {node: '>= 12.13.0'} - - locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - - lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - - lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - - lodash.throttle@4.1.1: - resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} - - lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - - lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - - longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} - - loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - - lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - - lowercase-keys@3.0.0: - resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - - magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - - markdown-extensions@2.0.0: - resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} - engines: {node: '>=16'} - - markdown-it@14.1.0: - resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} - hasBin: true - - markdown-table@3.0.3: - resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} - - markdownlint-cli2-formatter-default@0.0.4: - resolution: {integrity: sha512-xm2rM0E+sWgjpPn1EesPXx5hIyrN2ddUnUwnbCsD/ONxYtw3PX6LydvdH6dciWAoFDpwzbHM1TO7uHfcMd6IYg==} - peerDependencies: - markdownlint-cli2: '>=0.0.4' - - markdownlint-cli2@0.13.0: - resolution: {integrity: sha512-Pg4nF7HlopU97ZXtrcVISWp3bdsuc5M0zXyLp2/sJv2zEMlInrau0ZKK482fQURzVezJzWBpNmu4u6vGAhij+g==} - engines: {node: '>=18'} - hasBin: true - - markdownlint-micromark@0.1.9: - resolution: {integrity: sha512-5hVs/DzAFa8XqYosbEAEg6ok6MF2smDj89ztn9pKkCtdKHVdPQuGMH7frFfYL9mLkvfFe4pTyAMffLbjf3/EyA==} - engines: {node: '>=18'} - - markdownlint@0.34.0: - resolution: {integrity: sha512-qwGyuyKwjkEMOJ10XN6OTKNOVYvOIi35RNvDLNxTof5s8UmyGHlCdpngRHoRGNvQVGuxO3BJ7uNSgdeX166WXw==} - engines: {node: '>=18'} - - mdast-util-directive@3.0.0: - resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} - - mdast-util-find-and-replace@3.0.1: - resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} - - mdast-util-from-markdown@2.0.1: - resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} - - mdast-util-frontmatter@2.0.1: - resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} - - mdast-util-gfm-autolink-literal@2.0.0: - resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} - - mdast-util-gfm-footnote@2.0.0: - resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} - - mdast-util-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} - - mdast-util-gfm-table@2.0.0: - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} - - mdast-util-gfm-task-list-item@2.0.0: - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} - - mdast-util-gfm@3.0.0: - resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} - - mdast-util-mdx-expression@2.0.0: - resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} - - mdast-util-mdx-jsx@3.1.2: - resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} - - mdast-util-mdx@3.0.0: - resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} - - mdast-util-mdxjs-esm@2.0.1: - resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} - - mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} - - mdast-util-to-hast@13.1.0: - resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==} - - mdast-util-to-markdown@2.1.0: - resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} - - mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - - mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - - mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - - mdurl@2.0.0: - resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} - - media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} - - memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} - - merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - - merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} - - micromark-core-commonmark@2.0.1: - resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} - - micromark-extension-directive@3.0.0: - resolution: {integrity: sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg==} - - micromark-extension-frontmatter@2.0.0: - resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} - - micromark-extension-gfm-autolink-literal@2.0.0: - resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==} - - micromark-extension-gfm-footnote@2.0.0: - resolution: {integrity: sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==} - - micromark-extension-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==} - - micromark-extension-gfm-table@2.0.0: - resolution: {integrity: sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==} - - micromark-extension-gfm-tagfilter@2.0.0: - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} - - micromark-extension-gfm-task-list-item@2.0.1: - resolution: {integrity: sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==} - - micromark-extension-gfm@3.0.0: - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} - - micromark-extension-mdx-expression@3.0.0: - resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} - - micromark-extension-mdx-jsx@3.0.0: - resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==} - - micromark-extension-mdx-md@2.0.0: - resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} - - micromark-extension-mdxjs-esm@3.0.0: - resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} - - micromark-extension-mdxjs@3.0.0: - resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} - - micromark-factory-destination@2.0.0: - resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} - - micromark-factory-label@2.0.0: - resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} - - micromark-factory-mdx-expression@2.0.1: - resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==} - - micromark-factory-space@1.1.0: - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} - - micromark-factory-space@2.0.0: - resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} - - micromark-factory-title@2.0.0: - resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} - - micromark-factory-whitespace@2.0.0: - resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} - - micromark-util-character@1.2.0: - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} - - micromark-util-character@2.1.0: - resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} - - micromark-util-chunked@2.0.0: - resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} - - micromark-util-classify-character@2.0.0: - resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} - - micromark-util-combine-extensions@2.0.0: - resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} - - micromark-util-decode-numeric-character-reference@2.0.1: - resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} - - micromark-util-decode-string@2.0.0: - resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} - - micromark-util-encode@2.0.0: - resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} - - micromark-util-events-to-acorn@2.0.2: - resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} - - micromark-util-html-tag-name@2.0.0: - resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} - - micromark-util-normalize-identifier@2.0.0: - resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} - - micromark-util-resolve-all@2.0.0: - resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} - - micromark-util-sanitize-uri@2.0.0: - resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} - - micromark-util-subtokenize@2.0.1: - resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} - - micromark-util-symbol@1.1.0: - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} - - micromark-util-symbol@2.0.0: - resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} - - micromark-util-types@1.1.0: - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} - - micromark-util-types@2.0.0: - resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} - - micromark@4.0.0: - resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} - - micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - - micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} - - mime-db@1.33.0: - resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==} - engines: {node: '>= 0.6'} - - mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - - mime-types@2.1.18: - resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==} - engines: {node: '>= 0.6'} - - mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} - - mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - - mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - - mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - - mimic-response@4.0.0: - resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - mini-css-extract-plugin@2.9.0: - resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - - minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - - mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} - engines: {node: '>=10'} - - ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true - - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - - neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - - no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - - node-emoji@2.1.3: - resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==} - engines: {node: '>=18'} - - node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - - node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - - normalize-url@8.0.1: - resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} - engines: {node: '>=14.16'} - - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - - nprogress@0.2.0: - resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==} - - nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - - object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - - object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} - - obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - - on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} - - on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - - onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - - open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} - - opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true - - p-cancelable@3.0.0: - resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} - engines: {node: '>=12.20'} - - p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - - p-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} - - p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - - package-json@8.1.1: - resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} - engines: {node: '>=14.16'} - - param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-entities@4.0.1: - resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - parse-numeric-range@1.3.0: - resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} - - parse5-htmlparser2-tree-adapter@7.0.0: - resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} - - parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - - parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - - pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - - path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - - path-is-inside@1.0.2: - resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - - path-to-regexp@1.8.0: - resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} - - path-to-regexp@2.2.1: - resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - - periscopic@3.1.0: - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} - - picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} - - pkg-up@3.1.0: - resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} - engines: {node: '>=8'} - - possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} - - postcss-calc@9.0.1: - resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.2 - - postcss-colormin@6.1.0: - resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-convert-values@6.1.0: - resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-comments@6.0.2: - resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-duplicates@6.0.3: - resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-empty@6.0.3: - resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-overridden@6.0.2: - resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-unused@6.0.5: - resolution: {integrity: sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-loader@7.3.4: - resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==} - engines: {node: '>= 14.15.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^5.0.0 - - postcss-merge-idents@6.0.3: - resolution: {integrity: sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-merge-longhand@6.0.5: - resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-merge-rules@6.1.1: - resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-font-values@6.1.0: - resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-gradients@6.0.3: - resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-params@6.1.0: - resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-selectors@6.0.4: - resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-modules-extract-imports@3.1.0: - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-local-by-default@4.0.5: - resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-scope@3.2.0: - resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-values@4.0.0: - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-normalize-charset@6.0.2: - resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-display-values@6.0.2: - resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-positions@6.0.2: - resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-repeat-style@6.0.2: - resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-string@6.0.2: - resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-timing-functions@6.0.2: - resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-unicode@6.1.0: - resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-url@6.0.2: - resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-whitespace@6.0.2: - resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-ordered-values@6.0.2: - resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-reduce-idents@6.0.3: - resolution: {integrity: sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-reduce-initial@6.1.0: - resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-reduce-transforms@6.0.2: - resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-selector-parser@6.1.0: - resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} - engines: {node: '>=4'} - - postcss-sort-media-queries@5.2.0: - resolution: {integrity: sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.4.23 - - postcss-svgo@6.0.3: - resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} - engines: {node: ^14 || ^16 || >= 18} - peerDependencies: - postcss: ^8.4.31 - - postcss-unique-selectors@6.0.4: - resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss-zindex@6.0.2: - resolution: {integrity: sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} - engines: {node: ^10 || ^12 || >=14} - - pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} - - pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} - - pretty-time@1.1.0: - resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==} - engines: {node: '>=4'} - - prism-react-renderer@2.3.1: - resolution: {integrity: sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw==} - peerDependencies: - react: '>=16.0.0' - - prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} - engines: {node: '>=6'} - - process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - - prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - - prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - - property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} - - proto-list@1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - - proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} - - punycode.js@2.3.1: - resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} - engines: {node: '>=6'} - - punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - - punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - - pupa@3.1.0: - resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} - engines: {node: '>=12.20'} - - qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - queue@6.0.2: - resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} - - quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - - randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - - range-parser@1.2.0: - resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==} - engines: {node: '>= 0.6'} - - range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - - raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} - - rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true - - react-animation-on-scroll@5.1.0: - resolution: {integrity: sha512-UBhlXUig+AGwDpRoqFC6qFh1mCIperwy1Pk7dJTb0XgpDzERF4f6fhoqFY2+on9Bf1n4OfUrRw4xsnKfQt6U7w==} - peerDependencies: - react: '>= 15.4.1' - - react-dev-utils@12.0.1: - resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=2.7' - webpack: '>=4' - peerDependenciesMeta: - typescript: - optional: true - - react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 - - react-error-overlay@6.0.11: - resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} - - react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} - - react-helmet-async@1.3.0: - resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 - - react-helmet-async@2.0.5: - resolution: {integrity: sha512-rYUYHeus+i27MvFE+Jaa4WsyBKGkL6qVgbJvSBoX8mbsWoABJXdEO0bZyi0F6i+4f0NuIb8AvqPMj3iXFHkMwg==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 || ^18.0.0 - - react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - - react-json-view-lite@1.4.0: - resolution: {integrity: sha512-wh6F6uJyYAmQ4fK0e8dSQMEWuvTs2Wr3el3sLD9bambX1+pSWUVXIz1RFaoy3TI1mZ0FqdpKq9YgbgTTgyrmXA==} - engines: {node: '>=14'} - peerDependencies: - react: ^16.13.1 || ^17.0.0 || ^18.0.0 - - react-loadable-ssr-addon-v5-slorber@1.0.1: - resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==} - engines: {node: '>=10.13.0'} - peerDependencies: - react-loadable: '*' - webpack: '>=4.41.1 || 5.x' - - react-router-config@5.1.1: - resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==} - peerDependencies: - react: '>=15' - react-router: '>=5' - - react-router-dom@5.3.4: - resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==} - peerDependencies: - react: '>=15' - - react-router@5.3.4: - resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==} - peerDependencies: - react: '>=15' - - react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} - - readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} - - readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - - reading-time@1.5.0: - resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} - - rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} - - recursive-readdir@2.2.3: - resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} - engines: {node: '>=6.0.0'} - - regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} - - regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - - regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - - regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - - regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} - - regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} - - registry-auth-token@5.0.2: - resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} - engines: {node: '>=14'} - - registry-url@6.0.1: - resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} - engines: {node: '>=12'} - - regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true - - rehype-raw@7.0.0: - resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} - - relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} - - remark-directive@3.0.0: - resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} - - remark-emoji@4.0.1: - resolution: {integrity: sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - remark-frontmatter@5.0.0: - resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==} - - remark-gfm@4.0.0: - resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} - - remark-mdx@3.0.1: - resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==} - - remark-parse@11.0.0: - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} - - remark-rehype@11.1.0: - resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} - - remark-stringify@11.0.0: - resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} - - renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} - - require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - - require-like@0.1.2: - resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==} - - requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - - resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve-pathname@3.0.0: - resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} - - resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true - - responselike@3.0.0: - resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} - engines: {node: '>=14.16'} - - retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} - - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true - - rtl-detect@1.1.2: - resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==} - - rtlcss@4.1.1: - resolution: {integrity: sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ==} - engines: {node: '>=12.0.0'} - hasBin: true - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} - - safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - - safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - - safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} - - safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - - sax@1.3.0: - resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} - - scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - - schema-utils@2.7.0: - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} - engines: {node: '>= 8.9.0'} - - schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} - - schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} - - search-insights@2.14.0: - resolution: {integrity: sha512-OLN6MsPMCghDOqlCtsIsYgtsC0pnwVTyT9Mu6A3ewOj1DxvzZF6COrn2g86E/c05xbktB0XN04m/t1Z+n+fTGw==} - - section-matter@1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} - - select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - - selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} - - semver-diff@4.0.0: - resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} - engines: {node: '>=12'} - - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} - engines: {node: '>=10'} - hasBin: true - - send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} - - serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} - - serve-handler@6.1.5: - resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==} - - serve-index@1.9.1: - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} - - serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} - - set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} - - set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} - - setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - - setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - - shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} - - shallowequal@1.1.0: - resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - - shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true - - side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} - - signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - - sirv@2.0.4: - resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} - engines: {node: '>= 10'} - - sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - - sitemap@7.1.2: - resolution: {integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==} - engines: {node: '>=12.0.0', npm: '>=5.6.0'} - hasBin: true - - skin-tone@2.0.0: - resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} - engines: {node: '>=8'} - - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - - slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} - - slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - - smob@1.5.0: - resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} - - snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} - - sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} - - sort-css-media-queries@2.2.0: - resolution: {integrity: sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA==} - engines: {node: '>= 6.3.0'} - - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - - source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - - source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - - source-map@0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} - - sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - - space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - - spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} - - spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} - - sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - - srcset@4.0.0: - resolution: {integrity: sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==} - engines: {node: '>=12'} - - statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} - - statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - - std-env@3.7.0: - resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} - - string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - - string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - - string.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} - - string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} - - string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} - - string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} - - string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} - - string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - - stringify-entities@4.0.4: - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} - - stringify-object@3.3.0: - resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} - engines: {node: '>=4'} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - - strip-bom-string@1.0.0: - resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} - engines: {node: '>=0.10.0'} - - strip-comments@2.0.1: - resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} - engines: {node: '>=10'} - - strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - - strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - style-to-object@0.4.4: - resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} - - style-to-object@1.0.6: - resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} - - stylehacks@6.1.1: - resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - - svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true - - tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} - - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - - temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - - tempy@0.6.0: - resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} - engines: {node: '>=10'} - - terser-webpack-plugin@5.3.10: - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - - terser@5.31.0: - resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==} - engines: {node: '>=10'} - hasBin: true - - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - - thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} - - tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - - tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} - - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - - totalist@3.0.1: - resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} - engines: {node: '>=6'} - - tr46@1.0.1: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} - - trim-lines@3.0.1: - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - - trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - - tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - - type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} - - type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - - type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - - type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} - - typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} - - typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} - - typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} - - typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} - - typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - - typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} - engines: {node: '>=14.17'} - hasBin: true - - ua-parser-js@1.0.37: - resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} - - uc.micro@2.1.0: - resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} - - unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - - unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - - unicode-emoji-modifier-base@1.0.0: - resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} - engines: {node: '>=4'} - - unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} - - unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - - unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - - unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - - unified@11.0.4: - resolution: {integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==} - - unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} - - unique-string@3.0.0: - resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} - engines: {node: '>=12'} - - unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} - - unist-util-position-from-estree@2.0.0: - resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} - - unist-util-position@5.0.0: - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} - - unist-util-remove-position@5.0.0: - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} - - unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} - - unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} - - unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - - universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - - unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} - - upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} - - update-browserslist-db@1.0.16: - resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - update-notifier@6.0.2: - resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==} - engines: {node: '>=14.16'} - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - url-loader@4.1.1: - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - file-loader: - optional: true - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - - utility-types@3.11.0: - resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} - engines: {node: '>= 4'} - - utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - - uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true - - value-equal@1.0.1: - resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} - - vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - - vfile-location@5.0.2: - resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==} - - vfile-message@4.0.2: - resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} - - vfile@6.0.1: - resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} - - watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} - engines: {node: '>=10.13.0'} - - wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} - - web-namespaces@2.0.1: - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} - - webidl-conversions@4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - - webpack-bundle-analyzer@4.10.2: - resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} - engines: {node: '>= 10.13.0'} - hasBin: true - - webpack-dev-middleware@5.3.4: - resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - - webpack-dev-server@4.15.2: - resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: ^4.37.0 || ^5.0.0 - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true - - webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} - engines: {node: '>=10.0.0'} - - webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - - webpack@5.91.0: - resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - - webpackbar@5.0.2: - resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==} - engines: {node: '>=12'} - peerDependencies: - webpack: 3 || 4 || 5 - - websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} - - websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} - - whatwg-url@7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - - which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} - - which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - widest-line@4.0.1: - resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} - engines: {node: '>=12'} - - wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} - - workbox-background-sync@7.1.0: - resolution: {integrity: sha512-rMbgrzueVWDFcEq1610YyDW71z0oAXLfdRHRQcKw4SGihkfOK0JUEvqWHFwA6rJ+6TClnMIn7KQI5PNN1XQXwQ==} - - workbox-broadcast-update@7.1.0: - resolution: {integrity: sha512-O36hIfhjej/c5ar95pO67k1GQw0/bw5tKP7CERNgK+JdxBANQhDmIuOXZTNvwb2IHBx9hj2kxvcDyRIh5nzOgQ==} - - workbox-build@7.1.0: - resolution: {integrity: sha512-F6R94XAxjB2j4ETMkP1EXKfjECOtDmyvt0vz3BzgWJMI68TNSXIVNkgatwUKBlPGOfy9n2F/4voYRNAhEvPJNg==} - engines: {node: '>=16.0.0'} - - workbox-cacheable-response@7.1.0: - resolution: {integrity: sha512-iwsLBll8Hvua3xCuBB9h92+/e0wdsmSVgR2ZlvcfjepZWwhd3osumQB3x9o7flj+FehtWM2VHbZn8UJeBXXo6Q==} - - workbox-core@7.1.0: - resolution: {integrity: sha512-5KB4KOY8rtL31nEF7BfvU7FMzKT4B5TkbYa2tzkS+Peqj0gayMT9SytSFtNzlrvMaWgv6y/yvP9C0IbpFjV30Q==} - - workbox-expiration@7.1.0: - resolution: {integrity: sha512-m5DcMY+A63rJlPTbbBNtpJ20i3enkyOtSgYfv/l8h+D6YbbNiA0zKEkCUaMsdDlxggla1oOfRkyqTvl5Ni5KQQ==} - - workbox-google-analytics@7.1.0: - resolution: {integrity: sha512-FvE53kBQHfVTcZyczeBVRexhh7JTkyQ8HAvbVY6mXd2n2A7Oyz/9fIwnY406ZcDhvE4NFfKGjW56N4gBiqkrew==} - - workbox-navigation-preload@7.1.0: - resolution: {integrity: sha512-4wyAbo0vNI/X0uWNJhCMKxnPanNyhybsReMGN9QUpaePLTiDpKxPqFxl4oUmBNddPwIXug01eTSLVIFXimRG/A==} - - workbox-precaching@7.1.0: - resolution: {integrity: sha512-LyxzQts+UEpgtmfnolo0hHdNjoB7EoRWcF7EDslt+lQGd0lW4iTvvSe3v5JiIckQSB5KTW5xiCqjFviRKPj1zA==} - - workbox-range-requests@7.1.0: - resolution: {integrity: sha512-m7+O4EHolNs5yb/79CrnwPR/g/PRzMFYEdo01LqwixVnc/sbzNSvKz0d04OE3aMRel1CwAAZQheRsqGDwATgPQ==} - - workbox-recipes@7.1.0: - resolution: {integrity: sha512-NRrk4ycFN9BHXJB6WrKiRX3W3w75YNrNrzSX9cEZgFB5ubeGoO8s/SDmOYVrFYp9HMw6sh1Pm3eAY/1gVS8YLg==} - - workbox-routing@7.1.0: - resolution: {integrity: sha512-oOYk+kLriUY2QyHkIilxUlVcFqwduLJB7oRZIENbqPGeBP/3TWHYNNdmGNhz1dvKuw7aqvJ7CQxn27/jprlTdg==} - - workbox-strategies@7.1.0: - resolution: {integrity: sha512-/UracPiGhUNehGjRm/tLUQ+9PtWmCbRufWtV0tNrALuf+HZ4F7cmObSEK+E4/Bx1p8Syx2tM+pkIrvtyetdlew==} - - workbox-streams@7.1.0: - resolution: {integrity: sha512-WyHAVxRXBMfysM8ORwiZnI98wvGWTVAq/lOyBjf00pXFvG0mNaVz4Ji+u+fKa/mf1i2SnTfikoYKto4ihHeS6w==} - - workbox-sw@7.1.0: - resolution: {integrity: sha512-Hml/9+/njUXBglv3dtZ9WBKHI235AQJyLBV1G7EFmh4/mUdSQuXui80RtjDeVRrXnm/6QWgRUEHG3/YBVbxtsA==} - - workbox-window@7.1.0: - resolution: {integrity: sha512-ZHeROyqR+AS5UPzholQRDttLFqGMwP0Np8MKWAdyxsDETxq3qOAyXvqessc3GniohG6e0mAqSQyKOHmT8zPF7g==} - - wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} - - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - - write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} - - ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - ws@8.17.0: - resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - xdg-basedir@5.1.0: - resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} - engines: {node: '>=12'} - - xml-js@1.6.11: - resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} - hasBin: true - - yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - - yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} - - zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} - -snapshots: - - '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)': - dependencies: - '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0) - '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3) - transitivePeerDependencies: - - '@algolia/client-search' - - algoliasearch - - search-insights - - '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)': - dependencies: - '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3) - search-insights: 2.14.0 - transitivePeerDependencies: - - '@algolia/client-search' - - algoliasearch - - '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)': - dependencies: - '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3) - '@algolia/client-search': 4.23.3 - algoliasearch: 4.23.3 - - '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)': - dependencies: - '@algolia/client-search': 4.23.3 - algoliasearch: 4.23.3 - - '@algolia/cache-browser-local-storage@4.23.3': - dependencies: - '@algolia/cache-common': 4.23.3 - - '@algolia/cache-common@4.23.3': {} - - '@algolia/cache-in-memory@4.23.3': - dependencies: - '@algolia/cache-common': 4.23.3 - - '@algolia/client-account@4.23.3': - dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/transporter': 4.23.3 - - '@algolia/client-analytics@4.23.3': - dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 - - '@algolia/client-common@4.23.3': - dependencies: - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 - - '@algolia/client-personalization@4.23.3': - dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 - - '@algolia/client-search@4.23.3': - dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 - - '@algolia/events@4.0.1': {} - - '@algolia/logger-common@4.23.3': {} - - '@algolia/logger-console@4.23.3': - dependencies: - '@algolia/logger-common': 4.23.3 - - '@algolia/recommend@4.23.3': - dependencies: - '@algolia/cache-browser-local-storage': 4.23.3 - '@algolia/cache-common': 4.23.3 - '@algolia/cache-in-memory': 4.23.3 - '@algolia/client-common': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/logger-common': 4.23.3 - '@algolia/logger-console': 4.23.3 - '@algolia/requester-browser-xhr': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/requester-node-http': 4.23.3 - '@algolia/transporter': 4.23.3 - - '@algolia/requester-browser-xhr@4.23.3': - dependencies: - '@algolia/requester-common': 4.23.3 - - '@algolia/requester-common@4.23.3': {} - - '@algolia/requester-node-http@4.23.3': - dependencies: - '@algolia/requester-common': 4.23.3 - - '@algolia/transporter@4.23.3': - dependencies: - '@algolia/cache-common': 4.23.3 - '@algolia/logger-common': 4.23.3 - '@algolia/requester-common': 4.23.3 - - '@ampproject/remapping@2.3.0': - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - - '@apideck/better-ajv-errors@0.3.6(ajv@8.14.0)': - dependencies: - ajv: 8.14.0 - json-schema: 0.4.0 - jsonpointer: 5.0.1 - leven: 3.1.0 - - '@babel/code-frame@7.24.6': - dependencies: - '@babel/highlight': 7.24.6 - picocolors: 1.0.1 - - '@babel/compat-data@7.24.6': {} - - '@babel/core@7.24.6': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.6 - '@babel/generator': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) - '@babel/helpers': 7.24.6 - '@babel/parser': 7.24.6 - '@babel/template': 7.24.6 - '@babel/traverse': 7.24.6 - '@babel/types': 7.24.6 - convert-source-map: 2.0.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/generator@7.24.6': - dependencies: - '@babel/types': 7.24.6 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - - '@babel/helper-annotate-as-pure@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-compilation-targets@7.24.6': - dependencies: - '@babel/compat-data': 7.24.6 - '@babel/helper-validator-option': 7.24.6 - browserslist: 4.23.0 - lru-cache: 5.1.1 - semver: 6.3.1 - - '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-member-expression-to-functions': 7.24.6 - '@babel/helper-optimise-call-expression': 7.24.6 - '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/helper-split-export-declaration': 7.24.6 - semver: 6.3.1 - - '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - regexpu-core: 5.3.2 - semver: 6.3.1 - - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-environment-visitor@7.24.6': {} - - '@babel/helper-function-name@7.24.6': - dependencies: - '@babel/template': 7.24.6 - '@babel/types': 7.24.6 - - '@babel/helper-hoist-variables@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-member-expression-to-functions@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-module-imports@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-simple-access': 7.24.6 - '@babel/helper-split-export-declaration': 7.24.6 - '@babel/helper-validator-identifier': 7.24.6 - - '@babel/helper-optimise-call-expression@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-plugin-utils@7.24.6': {} - - '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-wrap-function': 7.24.6 - - '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-member-expression-to-functions': 7.24.6 - '@babel/helper-optimise-call-expression': 7.24.6 - - '@babel/helper-simple-access@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-skip-transparent-expression-wrappers@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-split-export-declaration@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/helper-string-parser@7.24.6': {} - - '@babel/helper-validator-identifier@7.24.6': {} - - '@babel/helper-validator-option@7.24.6': {} - - '@babel/helper-wrap-function@7.24.6': - dependencies: - '@babel/helper-function-name': 7.24.6 - '@babel/template': 7.24.6 - '@babel/types': 7.24.6 - - '@babel/helpers@7.24.6': - dependencies: - '@babel/template': 7.24.6 - '@babel/types': 7.24.6 - - '@babel/highlight@7.24.6': - dependencies: - '@babel/helper-validator-identifier': 7.24.6 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.1 - - '@babel/parser@7.24.6': - dependencies: - '@babel/types': 7.24.6 - - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6) - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) - - '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) - - '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6) - - '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) - '@babel/helper-split-export-declaration': 7.24.6 - globals: 11.12.0 - - '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/template': 7.24.6 - - '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) - - '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6) - - '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - - '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6) - - '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) - - '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-simple-access': 7.24.6 - - '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-hoist-variables': 7.24.6 - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-identifier': 7.24.6 - - '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) - - '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) - - '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6) - - '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) - - '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) - - '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) - - '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6) - - '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-react-constant-elements@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-react-display-name@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-react-jsx-development@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6) - - '@babel/plugin-transform-react-jsx@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6) - '@babel/types': 7.24.6 - - '@babel/plugin-transform-react-pure-annotations@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - regenerator-transform: 0.15.2 - - '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - - '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6) - - '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/preset-env@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/compat-data': 7.24.6 - '@babel/core': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-option': 7.24.6 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6) - '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.6) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6) - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6) - core-js-compat: 3.37.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/types': 7.24.6 - esutils: 2.0.3 - - '@babel/preset-react@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-option': 7.24.6 - '@babel/plugin-transform-react-display-name': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-react-jsx-development': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-react-pure-annotations': 7.24.6(@babel/core@7.24.6) - - '@babel/preset-typescript@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-option': 7.24.6 - '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6) - - '@babel/regjsgen@0.8.0': {} - - '@babel/runtime-corejs3@7.24.6': - dependencies: - core-js-pure: 3.37.1 - regenerator-runtime: 0.14.1 - - '@babel/runtime@7.24.6': - dependencies: - regenerator-runtime: 0.14.1 - - '@babel/template@7.24.6': - dependencies: - '@babel/code-frame': 7.24.6 - '@babel/parser': 7.24.6 - '@babel/types': 7.24.6 - - '@babel/traverse@7.24.6': - dependencies: - '@babel/code-frame': 7.24.6 - '@babel/generator': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-hoist-variables': 7.24.6 - '@babel/helper-split-export-declaration': 7.24.6 - '@babel/parser': 7.24.6 - '@babel/types': 7.24.6 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/types@7.24.6': - dependencies: - '@babel/helper-string-parser': 7.24.6 - '@babel/helper-validator-identifier': 7.24.6 - to-fast-properties: 2.0.0 - - '@colors/colors@1.5.0': - optional: true - - '@discoveryjs/json-ext@0.5.7': {} - - '@docsearch/css@3.6.0': {} - - '@docsearch/react@3.6.0(@algolia/client-search@4.23.3)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)': - dependencies: - '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0) - '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3) - '@docsearch/css': 3.6.0 - algoliasearch: 4.23.3 - optionalDependencies: - '@types/react': 18.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - search-insights: 2.14.0 - transitivePeerDependencies: - - '@algolia/client-search' - - '@docusaurus/core@3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@babel/core': 7.24.6 - '@babel/generator': 7.24.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6) - '@babel/preset-env': 7.24.6(@babel/core@7.24.6) - '@babel/preset-react': 7.24.6(@babel/core@7.24.6) - '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6) - '@babel/runtime': 7.24.6 - '@babel/runtime-corejs3': 7.24.6 - '@babel/traverse': 7.24.6 - '@docusaurus/cssnano-preset': 3.3.2 - '@docusaurus/logger': 3.3.2 - '@docusaurus/mdx-loader': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - autoprefixer: 10.4.19(postcss@8.4.38) - babel-loader: 9.1.3(@babel/core@7.24.6)(webpack@5.91.0) - babel-plugin-dynamic-import-node: 2.3.3 - boxen: 6.2.1 - chalk: 4.1.2 - chokidar: 3.6.0 - clean-css: 5.3.3 - cli-table3: 0.6.5 - combine-promises: 1.2.0 - commander: 5.1.0 - copy-webpack-plugin: 11.0.0(webpack@5.91.0) - core-js: 3.37.1 - css-loader: 6.11.0(webpack@5.91.0) - css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.91.0) - cssnano: 6.1.2(postcss@8.4.38) - del: 6.1.1 - detect-port: 1.6.1 - escape-html: 1.0.3 - eta: 2.2.0 - eval: 0.1.8 - file-loader: 6.2.0(webpack@5.91.0) - fs-extra: 11.2.0 - html-minifier-terser: 7.2.0 - html-tags: 3.3.1 - html-webpack-plugin: 5.6.0(webpack@5.91.0) - leven: 3.1.0 - lodash: 4.17.21 - mini-css-extract-plugin: 2.9.0(webpack@5.91.0) - p-map: 4.0.0 - postcss: 8.4.38 - postcss-loader: 7.3.4(postcss@8.4.38)(typescript@5.4.5)(webpack@5.91.0) - prompts: 2.4.2 - react: 18.3.1 - react-dev-utils: 12.0.1(typescript@5.4.5)(webpack@5.91.0) - react-dom: 18.3.1(react@18.3.1) - react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' - react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.91.0) - react-router: 5.3.4(react@18.3.1) - react-router-config: 5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1) - react-router-dom: 5.3.4(react@18.3.1) - rtl-detect: 1.1.2 - semver: 7.6.2 - serve-handler: 6.1.5 - shelljs: 0.8.5 - terser-webpack-plugin: 5.3.10(webpack@5.91.0) - tslib: 2.6.2 - update-notifier: 6.0.2 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.91.0))(webpack@5.91.0) - webpack: 5.91.0 - webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 4.15.2(webpack@5.91.0) - webpack-merge: 5.10.0 - webpackbar: 5.0.2(webpack@5.91.0) - transitivePeerDependencies: - - '@docusaurus/types' - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/cssnano-preset@3.3.2': - dependencies: - cssnano-preset-advanced: 6.1.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-sort-media-queries: 5.2.0(postcss@8.4.38) - tslib: 2.6.2 - - '@docusaurus/logger@3.3.2': - dependencies: - chalk: 4.1.2 - tslib: 2.6.2 - - '@docusaurus/mdx-loader@3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/logger': 3.3.2 - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@mdx-js/mdx': 3.0.1 - '@slorber/remark-comment': 1.0.0 - escape-html: 1.0.3 - estree-util-value-to-estree: 3.1.1 - file-loader: 6.2.0(webpack@5.91.0) - fs-extra: 11.2.0 - image-size: 1.1.1 - mdast-util-mdx: 3.0.0 - mdast-util-to-string: 4.0.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - rehype-raw: 7.0.0 - remark-directive: 3.0.0 - remark-emoji: 4.0.1 - remark-frontmatter: 5.0.0 - remark-gfm: 4.0.0 - stringify-object: 3.3.0 - tslib: 2.6.2 - unified: 11.0.4 - unist-util-visit: 5.0.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.91.0))(webpack@5.91.0) - vfile: 6.0.1 - webpack: 5.91.0 - transitivePeerDependencies: - - '@docusaurus/types' - - '@swc/core' - - esbuild - - supports-color - - typescript - - uglify-js - - webpack-cli - - '@docusaurus/module-type-aliases@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@types/history': 4.7.11 - '@types/react': 18.3.3 - '@types/react-router-config': 5.0.11 - '@types/react-router-dom': 5.3.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-helmet-async: 2.0.5(react@18.3.1) - react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' - transitivePeerDependencies: - - '@swc/core' - - esbuild - - supports-color - - uglify-js - - webpack-cli - - '@docusaurus/plugin-client-redirects@3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/logger': 3.3.2 - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - eta: 2.2.0 - fs-extra: 11.2.0 - lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - transitivePeerDependencies: - - '@docusaurus/types' - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-content-blog@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/logger': 3.3.2 - '@docusaurus/mdx-loader': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - cheerio: 1.0.0-rc.12 - feed: 4.2.2 - fs-extra: 11.2.0 - lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - reading-time: 1.5.0 - srcset: 4.0.0 - tslib: 2.6.2 - unist-util-visit: 5.0.0 - utility-types: 3.11.0 - webpack: 5.91.0 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-content-docs@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/logger': 3.3.2 - '@docusaurus/mdx-loader': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/module-type-aliases': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@types/react-router-config': 5.0.11 - combine-promises: 1.2.0 - fs-extra: 11.2.0 - js-yaml: 4.1.0 - lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - utility-types: 3.11.0 - webpack: 5.91.0 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-content-pages@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/mdx-loader': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - fs-extra: 11.2.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - webpack: 5.91.0 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-debug@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - fs-extra: 11.2.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-json-view-lite: 1.4.0(react@18.3.1) - tslib: 2.6.2 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-google-analytics@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-google-gtag@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@types/gtag.js': 0.0.12 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-google-tag-manager@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-pwa@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@babel/core': 7.24.6 - '@babel/preset-env': 7.24.6(@babel/core@7.24.6) - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-translations': 3.3.2 - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - babel-loader: 9.1.3(@babel/core@7.24.6)(webpack@5.91.0) - clsx: 2.1.1 - core-js: 3.37.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - terser-webpack-plugin: 5.3.10(webpack@5.91.0) - tslib: 2.6.2 - webpack: 5.91.0 - webpack-merge: 5.10.0 - webpackbar: 5.0.2(webpack@5.91.0) - workbox-build: 7.1.0 - workbox-precaching: 7.1.0 - workbox-window: 7.1.0 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - '@types/babel__core' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/plugin-sitemap@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/logger': 3.3.2 - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - fs-extra: 11.2.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - sitemap: 7.1.2 - tslib: 2.6.2 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/preset-classic@3.3.2(@algolia/client-search@4.23.3)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-blog': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-docs': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-pages': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-debug': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-google-analytics': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-google-gtag': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-google-tag-manager': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-sitemap': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-classic': 3.3.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-search-algolia': 3.3.2(@algolia/client-search@4.23.3)(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.4.5) - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@algolia/client-search' - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - '@types/react' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - search-insights - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/react-loadable@6.0.0(react@18.3.1)': - dependencies: - '@types/react': 18.3.3 - react: 18.3.1 - - '@docusaurus/theme-classic@3.3.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/mdx-loader': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/module-type-aliases': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/plugin-content-blog': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-docs': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-pages': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-translations': 3.3.2 - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1) - clsx: 2.1.1 - copy-text-to-clipboard: 3.2.0 - infima: 0.2.0-alpha.43 - lodash: 4.17.21 - nprogress: 0.2.0 - postcss: 8.4.38 - prism-react-renderer: 2.3.1(react@18.3.1) - prismjs: 1.29.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 5.3.4(react@18.3.1) - rtlcss: 4.1.1 - tslib: 2.6.2 - utility-types: 3.11.0 - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - '@types/react' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/theme-common@3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': - dependencies: - '@docusaurus/mdx-loader': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/module-type-aliases': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/plugin-content-blog': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-docs': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/plugin-content-pages': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@types/history': 4.7.11 - '@types/react': 18.3.3 - '@types/react-router-config': 5.0.11 - clsx: 2.1.1 - parse-numeric-range: 1.3.0 - prism-react-renderer: 2.3.1(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - utility-types: 3.11.0 - transitivePeerDependencies: - - '@docusaurus/types' - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/theme-search-algolia@3.3.2(@algolia/client-search@4.23.3)(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0)(typescript@5.4.5)': - dependencies: - '@docsearch/react': 3.6.0(@algolia/client-search@4.23.3)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.14.0) - '@docusaurus/core': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/logger': 3.3.2 - '@docusaurus/plugin-content-docs': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@docusaurus/theme-translations': 3.3.2 - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-validation': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - algoliasearch: 4.23.3 - algoliasearch-helper: 3.20.0(algoliasearch@4.23.3) - clsx: 2.1.1 - eta: 2.2.0 - fs-extra: 11.2.0 - lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.2 - utility-types: 3.11.0 - transitivePeerDependencies: - - '@algolia/client-search' - - '@docusaurus/types' - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@swc/css' - - '@types/react' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - search-insights - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - '@docusaurus/theme-translations@3.3.2': - dependencies: - fs-extra: 11.2.0 - tslib: 2.6.2 - - '@docusaurus/tsconfig@3.3.2': {} - - '@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@mdx-js/mdx': 3.0.1 - '@types/history': 4.7.11 - '@types/react': 18.3.3 - commander: 5.1.0 - joi: 17.13.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - utility-types: 3.11.0 - webpack: 5.91.0 - webpack-merge: 5.10.0 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - supports-color - - uglify-js - - webpack-cli - - '@docusaurus/utils-common@3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': - dependencies: - tslib: 2.6.2 - optionalDependencies: - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - - '@docusaurus/utils-validation@3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5)': + '@astrojs/language-server@2.15.4(typescript@5.6.3)': dependencies: - '@docusaurus/logger': 3.3.2 - '@docusaurus/utils': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5) - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - joi: 17.13.1 - js-yaml: 4.1.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@docusaurus/types' - - '@swc/core' - - esbuild - - supports-color - - typescript - - uglify-js - - webpack-cli - - '@docusaurus/utils@3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.4.5)': - dependencies: - '@docusaurus/logger': 3.3.2 - '@docusaurus/utils-common': 3.3.2(@docusaurus/types@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@svgr/webpack': 8.1.0(typescript@5.4.5) - escape-string-regexp: 4.0.0 - file-loader: 6.2.0(webpack@5.91.0) - fs-extra: 11.2.0 - github-slugger: 1.5.0 - globby: 11.1.0 - gray-matter: 4.0.3 - jiti: 1.21.0 - js-yaml: 4.1.0 - lodash: 4.17.21 - micromatch: 4.0.7 - prompts: 2.4.2 - resolve-pathname: 3.0.0 - shelljs: 0.8.5 - tslib: 2.6.2 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.91.0))(webpack@5.91.0) - webpack: 5.91.0 - optionalDependencies: - '@docusaurus/types': 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@astrojs/compiler': 2.10.3 + '@astrojs/yaml2ts': 0.2.2 + '@jridgewell/sourcemap-codec': 1.5.0 + '@volar/kit': 2.4.8(typescript@5.6.3) + '@volar/language-core': 2.4.8 + '@volar/language-server': 2.4.8 + '@volar/language-service': 2.4.8 + fast-glob: 3.3.2 + muggle-string: 0.4.1 + volar-service-css: 0.0.62(@volar/language-service@2.4.8) + volar-service-emmet: 0.0.62(@volar/language-service@2.4.8) + volar-service-html: 0.0.62(@volar/language-service@2.4.8) + volar-service-prettier: 0.0.62(@volar/language-service@2.4.8) + volar-service-typescript: 0.0.62(@volar/language-service@2.4.8) + volar-service-typescript-twoslash-queries: 0.0.62(@volar/language-service@2.4.8) + volar-service-yaml: 0.0.62(@volar/language-service@2.4.8) + vscode-html-languageservice: 5.3.1 + vscode-uri: 3.0.8 transitivePeerDependencies: - - '@swc/core' - - esbuild - - supports-color - typescript - - uglify-js - - webpack-cli - - '@hapi/hoek@9.3.0': {} - - '@hapi/topo@5.1.0': - dependencies: - '@hapi/hoek': 9.3.0 - - '@jest/schemas@29.6.3': - dependencies: - '@sinclair/typebox': 0.27.8 - - '@jest/types@29.6.3': - dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.12.12 - '@types/yargs': 17.0.32 - chalk: 4.1.2 - - '@jridgewell/gen-mapping@0.3.5': - dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.25 - - '@jridgewell/resolve-uri@3.1.2': {} - - '@jridgewell/set-array@1.2.1': {} - - '@jridgewell/source-map@0.3.6': - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/sourcemap-codec@1.4.15': {} - - '@jridgewell/trace-mapping@0.3.25': - dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - - '@leichtgewicht/ip-codec@2.0.5': {} - - '@mdx-js/mdx@3.0.1': + '@astrojs/markdown-remark@5.3.0': dependencies: - '@types/estree': 1.0.5 - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdx': 2.0.13 - collapse-white-space: 2.1.0 - devlop: 1.1.0 - estree-util-build-jsx: 3.0.1 - estree-util-is-identifier-name: 3.0.0 - estree-util-to-js: 2.0.0 - estree-walker: 3.0.3 - hast-util-to-estree: 3.1.0 - hast-util-to-jsx-runtime: 2.3.0 - markdown-extensions: 2.0.0 - periscopic: 3.1.0 - remark-mdx: 3.0.1 + '@astrojs/prism': 3.1.0 + github-slugger: 2.0.0 + hast-util-from-html: 2.0.3 + hast-util-to-text: 4.0.2 + import-meta-resolve: 4.1.0 + mdast-util-definitions: 6.0.0 + rehype-raw: 7.0.0 + rehype-stringify: 10.0.1 + remark-gfm: 4.0.0 remark-parse: 11.0.0 - remark-rehype: 11.1.0 - source-map: 0.7.4 - unified: 11.0.4 - unist-util-position-from-estree: 2.0.0 - unist-util-stringify-position: 4.0.0 + remark-rehype: 11.1.1 + remark-smartypants: 3.0.2 + shiki: 1.22.2 + unified: 11.0.5 + unist-util-remove-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 - transitivePeerDependencies: - - supports-color - - '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@types/mdx': 2.0.13 - '@types/react': 18.3.3 - react: 18.3.1 - - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.17.1 - - '@pnpm/config.env-replace@1.1.0': {} - - '@pnpm/network.ca-file@1.0.2': - dependencies: - graceful-fs: 4.2.10 - - '@pnpm/npm-conf@2.2.2': - dependencies: - '@pnpm/config.env-replace': 1.1.0 - '@pnpm/network.ca-file': 1.0.2 - config-chain: 1.1.13 - - '@polka/url@1.0.0-next.25': {} - - '@rollup/plugin-babel@5.3.1(@babel/core@7.24.6)(rollup@2.79.1)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) - rollup: 2.79.1 - - '@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)': - dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) - '@types/resolve': 1.20.2 - deepmerge: 4.3.1 - is-builtin-module: 3.2.1 - is-module: 1.0.0 - resolve: 1.22.8 - optionalDependencies: - rollup: 2.79.1 - - '@rollup/plugin-replace@2.4.2(rollup@2.79.1)': - dependencies: - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) - magic-string: 0.25.9 - rollup: 2.79.1 - - '@rollup/plugin-terser@0.4.4(rollup@2.79.1)': - dependencies: - serialize-javascript: 6.0.2 - smob: 1.5.0 - terser: 5.31.0 - optionalDependencies: - rollup: 2.79.1 - - '@rollup/pluginutils@3.1.0(rollup@2.79.1)': - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - rollup: 2.79.1 - - '@rollup/pluginutils@5.1.0(rollup@2.79.1)': - dependencies: - '@types/estree': 1.0.5 - estree-walker: 2.0.2 - picomatch: 2.3.1 - optionalDependencies: - rollup: 2.79.1 - - '@sideway/address@4.1.5': - dependencies: - '@hapi/hoek': 9.3.0 - - '@sideway/formula@3.0.1': {} - - '@sideway/pinpoint@2.0.0': {} - - '@sinclair/typebox@0.27.8': {} - - '@sindresorhus/is@4.6.0': {} - - '@sindresorhus/is@5.6.0': {} - - '@sindresorhus/merge-streams@2.3.0': {} - - '@slorber/remark-comment@1.0.0': - dependencies: - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - - '@surma/rollup-plugin-off-main-thread@2.2.3': - dependencies: - ejs: 3.1.10 - json5: 2.2.3 - magic-string: 0.25.9 - string.prototype.matchall: 4.0.11 - - '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - - '@svgr/babel-preset@8.1.0(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.6) - '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.6) - '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.6) - '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.6) - '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.6) - '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.6) - '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.6) - '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.6) - - '@svgr/core@8.1.0(typescript@5.4.5)': - dependencies: - '@babel/core': 7.24.6 - '@svgr/babel-preset': 8.1.0(@babel/core@7.24.6) - camelcase: 6.3.0 - cosmiconfig: 8.3.6(typescript@5.4.5) - snake-case: 3.0.4 - transitivePeerDependencies: - - supports-color - - typescript - - '@svgr/hast-util-to-babel-ast@8.0.0': - dependencies: - '@babel/types': 7.24.6 - entities: 4.5.0 - - '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.4.5))': - dependencies: - '@babel/core': 7.24.6 - '@svgr/babel-preset': 8.1.0(@babel/core@7.24.6) - '@svgr/core': 8.1.0(typescript@5.4.5) - '@svgr/hast-util-to-babel-ast': 8.0.0 - svg-parser: 2.0.4 + unist-util-visit-parents: 6.0.1 + vfile: 6.0.3 transitivePeerDependencies: - supports-color - '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.4.5))(typescript@5.4.5)': - dependencies: - '@svgr/core': 8.1.0(typescript@5.4.5) - cosmiconfig: 8.3.6(typescript@5.4.5) - deepmerge: 4.3.1 - svgo: 3.3.2 - transitivePeerDependencies: - - typescript - - '@svgr/webpack@8.1.0(typescript@5.4.5)': + '@astrojs/mdx@3.1.9(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3))': dependencies: - '@babel/core': 7.24.6 - '@babel/plugin-transform-react-constant-elements': 7.24.6(@babel/core@7.24.6) - '@babel/preset-env': 7.24.6(@babel/core@7.24.6) - '@babel/preset-react': 7.24.6(@babel/core@7.24.6) - '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6) - '@svgr/core': 8.1.0(typescript@5.4.5) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5)) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5))(typescript@5.4.5) + '@astrojs/markdown-remark': 5.3.0 + '@mdx-js/mdx': 3.1.0(acorn@8.14.0) + acorn: 8.14.0 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) + es-module-lexer: 1.5.4 + estree-util-visit: 2.0.0 + gray-matter: 4.0.3 + hast-util-to-html: 9.0.3 + kleur: 4.1.5 + rehype-raw: 7.0.0 + remark-gfm: 4.0.0 + remark-smartypants: 3.0.2 + source-map: 0.7.4 + unist-util-visit: 5.0.0 + vfile: 6.0.3 transitivePeerDependencies: - supports-color - - typescript - - '@szmarczak/http-timer@5.0.1': - dependencies: - defer-to-connect: 2.0.1 - - '@trysound/sax@0.2.0': {} - - '@types/acorn@4.0.6': - dependencies: - '@types/estree': 1.0.5 - - '@types/body-parser@1.19.5': - dependencies: - '@types/connect': 3.4.38 - '@types/node': 20.12.12 - - '@types/bonjour@3.5.13': - dependencies: - '@types/node': 20.12.12 - - '@types/connect-history-api-fallback@1.5.4': - dependencies: - '@types/express-serve-static-core': 4.19.1 - '@types/node': 20.12.12 - - '@types/connect@3.4.38': - dependencies: - '@types/node': 20.12.12 - - '@types/debug@4.1.12': - dependencies: - '@types/ms': 0.7.34 - - '@types/eslint-scope@3.7.7': - dependencies: - '@types/eslint': 8.56.10 - '@types/estree': 1.0.5 - - '@types/eslint@8.56.10': - dependencies: - '@types/estree': 1.0.5 - '@types/json-schema': 7.0.15 - - '@types/estree-jsx@1.0.5': - dependencies: - '@types/estree': 1.0.5 - - '@types/estree@0.0.39': {} - - '@types/estree@1.0.5': {} - - '@types/express-serve-static-core@4.19.1': - dependencies: - '@types/node': 20.12.12 - '@types/qs': 6.9.15 - '@types/range-parser': 1.2.7 - '@types/send': 0.17.4 - - '@types/express@4.17.21': - dependencies: - '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.19.1 - '@types/qs': 6.9.15 - '@types/serve-static': 1.15.7 - - '@types/gtag.js@0.0.12': {} - - '@types/hast@3.0.4': - dependencies: - '@types/unist': 3.0.2 - - '@types/history@4.7.11': {} - - '@types/html-minifier-terser@6.1.0': {} - - '@types/http-cache-semantics@4.0.4': {} - - '@types/http-errors@2.0.4': {} - - '@types/http-proxy@1.17.14': - dependencies: - '@types/node': 20.12.12 - - '@types/istanbul-lib-coverage@2.0.6': {} - - '@types/istanbul-lib-report@3.0.3': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - - '@types/istanbul-reports@3.0.4': - dependencies: - '@types/istanbul-lib-report': 3.0.3 - - '@types/json-schema@7.0.15': {} - - '@types/mdast@4.0.4': - dependencies: - '@types/unist': 3.0.2 - - '@types/mdx@2.0.13': {} - - '@types/mime@1.3.5': {} - - '@types/ms@0.7.34': {} - - '@types/node-forge@1.3.11': - dependencies: - '@types/node': 20.12.12 - - '@types/node@17.0.45': {} - '@types/node@20.12.12': + '@astrojs/prism@3.1.0': dependencies: - undici-types: 5.26.5 - - '@types/parse-json@4.0.2': {} - - '@types/prismjs@1.26.4': {} - - '@types/prop-types@15.7.12': {} - - '@types/qs@6.9.15': {} - - '@types/range-parser@1.2.7': {} + prismjs: 1.29.0 - '@types/react-router-config@5.0.11': + '@astrojs/sitemap@3.2.1': dependencies: - '@types/history': 4.7.11 - '@types/react': 18.3.3 - '@types/react-router': 5.1.20 + sitemap: 8.0.0 + stream-replace-string: 2.0.0 + zod: 3.23.8 - '@types/react-router-dom@5.3.3': + '@astrojs/starlight@0.28.4(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3))': dependencies: - '@types/history': 4.7.11 - '@types/react': 18.3.3 - '@types/react-router': 5.1.20 + '@astrojs/mdx': 3.1.9(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) + '@astrojs/sitemap': 3.2.1 + '@pagefind/default-ui': 1.1.1 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) + astro-expressive-code: 0.35.6(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) + bcp-47: 2.1.0 + hast-util-from-html: 2.0.3 + hast-util-select: 6.0.3 + hast-util-to-string: 3.0.1 + hastscript: 9.0.0 + i18next: 23.16.4 + mdast-util-directive: 3.0.0 + mdast-util-to-markdown: 2.1.1 + mdast-util-to-string: 4.0.0 + pagefind: 1.1.1 + rehype: 13.0.2 + rehype-format: 5.0.1 + remark-directive: 3.0.0 + unified: 11.0.5 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color - '@types/react-router@5.1.20': + '@astrojs/telemetry@3.1.0': dependencies: - '@types/history': 4.7.11 - '@types/react': 18.3.3 + ci-info: 4.0.0 + debug: 4.3.7 + dlv: 1.1.3 + dset: 3.1.4 + is-docker: 3.0.0 + is-wsl: 3.1.0 + which-pm-runs: 1.1.0 + transitivePeerDependencies: + - supports-color - '@types/react@18.3.3': + '@astrojs/yaml2ts@0.2.2': dependencies: - '@types/prop-types': 15.7.12 - csstype: 3.1.3 + yaml: 2.6.0 - '@types/resolve@1.20.2': {} - - '@types/retry@0.12.0': {} - - '@types/sax@1.2.7': + '@babel/code-frame@7.26.2': dependencies: - '@types/node': 17.0.45 + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 - '@types/send@0.17.4': - dependencies: - '@types/mime': 1.3.5 - '@types/node': 20.12.12 + '@babel/compat-data@7.26.2': {} - '@types/serve-index@1.9.4': + '@babel/core@7.26.0': dependencies: - '@types/express': 4.17.21 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helpers': 7.26.0 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + convert-source-map: 2.0.0 + debug: 4.3.7 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@types/serve-static@1.15.7': + '@babel/generator@7.26.2': dependencies: - '@types/http-errors': 2.0.4 - '@types/node': 20.12.12 - '@types/send': 0.17.4 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 - '@types/sockjs@0.3.36': + '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@types/node': 20.12.12 - - '@types/trusted-types@2.0.7': {} + '@babel/types': 7.26.0 - '@types/unist@2.0.10': {} - - '@types/unist@3.0.2': {} - - '@types/ws@8.5.10': + '@babel/helper-compilation-targets@7.25.9': dependencies: - '@types/node': 20.12.12 - - '@types/yargs-parser@21.0.3': {} + '@babel/compat-data': 7.26.2 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.2 + lru-cache: 5.1.1 + semver: 6.3.1 - '@types/yargs@17.0.32': + '@babel/helper-module-imports@7.25.9': dependencies: - '@types/yargs-parser': 21.0.3 - - '@ungap/structured-clone@1.2.0': {} + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - '@webassemblyjs/ast@1.12.1': + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - - '@webassemblyjs/floating-point-hex-parser@1.11.6': {} + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color - '@webassemblyjs/helper-api-error@1.11.6': {} + '@babel/helper-plugin-utils@7.25.9': {} - '@webassemblyjs/helper-buffer@1.12.1': {} + '@babel/helper-string-parser@7.25.9': {} - '@webassemblyjs/helper-numbers@1.11.6': - dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@xtuc/long': 4.2.2 + '@babel/helper-validator-identifier@7.25.9': {} - '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} + '@babel/helper-validator-option@7.25.9': {} - '@webassemblyjs/helper-wasm-section@1.12.1': + '@babel/helpers@7.26.0': dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.12.1 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 - '@webassemblyjs/ieee754@1.11.6': + '@babel/parser@7.26.2': dependencies: - '@xtuc/ieee754': 1.2.0 + '@babel/types': 7.26.0 - '@webassemblyjs/leb128@1.11.6': + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': dependencies: - '@xtuc/long': 4.2.2 - - '@webassemblyjs/utf8@1.11.6': {} + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@webassemblyjs/wasm-edit@1.12.1': + '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)': dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.12.1 - '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/wasm-opt': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 - '@webassemblyjs/wast-printer': 1.12.1 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - '@webassemblyjs/wasm-gen@1.12.1': + '@babel/runtime@7.26.0': dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + regenerator-runtime: 0.14.1 - '@webassemblyjs/wasm-opt@1.12.1': + '@babel/template@7.25.9': dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 - '@webassemblyjs/wasm-parser@1.12.1': + '@babel/traverse@7.25.9': dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 + debug: 4.3.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - '@webassemblyjs/wast-printer@1.12.1': + '@babel/types@7.26.0': dependencies: - '@webassemblyjs/ast': 1.12.1 - '@xtuc/long': 4.2.2 + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 - '@xtuc/ieee754@1.2.0': {} + '@ctrl/tinycolor@4.1.0': {} - '@xtuc/long@4.2.2': {} - - accepts@1.3.8: + '@emmetio/abbreviation@2.3.3': dependencies: - mime-types: 2.1.35 - negotiator: 0.6.3 + '@emmetio/scanner': 1.0.4 - acorn-import-assertions@1.9.0(acorn@8.11.3): + '@emmetio/css-abbreviation@2.1.8': dependencies: - acorn: 8.11.3 + '@emmetio/scanner': 1.0.4 - acorn-jsx@5.3.2(acorn@8.11.3): + '@emmetio/css-parser@0.4.0': dependencies: - acorn: 8.11.3 - - acorn-walk@8.3.2: {} - - acorn@8.11.3: {} - - address@1.2.2: {} + '@emmetio/stream-reader': 2.2.0 + '@emmetio/stream-reader-utils': 0.1.0 - aggregate-error@3.1.0: + '@emmetio/html-matcher@1.3.0': dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 + '@emmetio/scanner': 1.0.4 - ajv-formats@2.1.1(ajv@8.14.0): - optionalDependencies: - ajv: 8.14.0 + '@emmetio/scanner@1.0.4': {} - ajv-keywords@3.5.2(ajv@6.12.6): - dependencies: - ajv: 6.12.6 + '@emmetio/stream-reader-utils@0.1.0': {} - ajv-keywords@5.1.0(ajv@8.14.0): - dependencies: - ajv: 8.14.0 - fast-deep-equal: 3.1.3 + '@emmetio/stream-reader@2.2.0': {} - ajv@6.12.6: + '@emnapi/runtime@1.3.1': dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 + tslib: 2.8.0 + optional: true - ajv@8.14.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 + '@esbuild/aix-ppc64@0.21.5': + optional: true - algoliasearch-helper@3.20.0(algoliasearch@4.23.3): - dependencies: - '@algolia/events': 4.0.1 - algoliasearch: 4.23.3 + '@esbuild/android-arm64@0.21.5': + optional: true - algoliasearch@4.23.3: - dependencies: - '@algolia/cache-browser-local-storage': 4.23.3 - '@algolia/cache-common': 4.23.3 - '@algolia/cache-in-memory': 4.23.3 - '@algolia/client-account': 4.23.3 - '@algolia/client-analytics': 4.23.3 - '@algolia/client-common': 4.23.3 - '@algolia/client-personalization': 4.23.3 - '@algolia/client-search': 4.23.3 - '@algolia/logger-common': 4.23.3 - '@algolia/logger-console': 4.23.3 - '@algolia/recommend': 4.23.3 - '@algolia/requester-browser-xhr': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/requester-node-http': 4.23.3 - '@algolia/transporter': 4.23.3 + '@esbuild/android-arm@0.21.5': + optional: true - animate.css@4.1.1: {} + '@esbuild/android-x64@0.21.5': + optional: true - ansi-align@3.0.1: - dependencies: - string-width: 4.2.3 + '@esbuild/darwin-arm64@0.21.5': + optional: true - ansi-html-community@0.0.8: {} + '@esbuild/darwin-x64@0.21.5': + optional: true - ansi-regex@5.0.1: {} + '@esbuild/freebsd-arm64@0.21.5': + optional: true - ansi-regex@6.0.1: {} + '@esbuild/freebsd-x64@0.21.5': + optional: true - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 + '@esbuild/linux-arm64@0.21.5': + optional: true - ansi-styles@4.3.0: - dependencies: - color-convert: 2.0.1 + '@esbuild/linux-arm@0.21.5': + optional: true - ansi-styles@6.2.1: {} + '@esbuild/linux-ia32@0.21.5': + optional: true - anymatch@3.1.3: - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 + '@esbuild/linux-loong64@0.21.5': + optional: true - arg@5.0.2: {} + '@esbuild/linux-mips64el@0.21.5': + optional: true - argparse@1.0.10: - dependencies: - sprintf-js: 1.0.3 + '@esbuild/linux-ppc64@0.21.5': + optional: true - argparse@2.0.1: {} + '@esbuild/linux-riscv64@0.21.5': + optional: true - array-buffer-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - is-array-buffer: 3.0.4 + '@esbuild/linux-s390x@0.21.5': + optional: true - array-flatten@1.1.1: {} + '@esbuild/linux-x64@0.21.5': + optional: true - array-union@2.1.0: {} + '@esbuild/netbsd-x64@0.21.5': + optional: true - arraybuffer.prototype.slice@1.0.3: - dependencies: - array-buffer-byte-length: 1.0.1 - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.3 + '@esbuild/openbsd-x64@0.21.5': + optional: true - astring@1.8.6: {} + '@esbuild/sunos-x64@0.21.5': + optional: true - async@3.2.5: {} + '@esbuild/win32-arm64@0.21.5': + optional: true - at-least-node@1.0.0: {} + '@esbuild/win32-ia32@0.21.5': + optional: true - autoprefixer@10.4.19(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - caniuse-lite: 1.0.30001623 - fraction.js: 4.3.7 - normalize-range: 0.1.2 - picocolors: 1.0.1 - postcss: 8.4.38 - postcss-value-parser: 4.2.0 + '@esbuild/win32-x64@0.21.5': + optional: true - available-typed-arrays@1.0.7: + '@expressive-code/core@0.35.6': dependencies: - possible-typed-array-names: 1.0.0 + '@ctrl/tinycolor': 4.1.0 + hast-util-select: 6.0.3 + hast-util-to-html: 9.0.3 + hast-util-to-text: 4.0.2 + hastscript: 9.0.0 + postcss: 8.4.47 + postcss-nested: 6.2.0(postcss@8.4.47) + unist-util-visit: 5.0.0 + unist-util-visit-parents: 6.0.1 - babel-loader@9.1.3(@babel/core@7.24.6)(webpack@5.91.0): + '@expressive-code/plugin-frames@0.35.6': dependencies: - '@babel/core': 7.24.6 - find-cache-dir: 4.0.0 - schema-utils: 4.2.0 - webpack: 5.91.0 + '@expressive-code/core': 0.35.6 - babel-plugin-dynamic-import-node@2.3.3: + '@expressive-code/plugin-shiki@0.35.6': dependencies: - object.assign: 4.1.5 + '@expressive-code/core': 0.35.6 + shiki: 1.22.2 - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6): + '@expressive-code/plugin-text-markers@0.35.6': dependencies: - '@babel/compat-data': 7.24.6 - '@babel/core': 7.24.6 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@expressive-code/core': 0.35.6 - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6): - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) - core-js-compat: 3.37.1 - transitivePeerDependencies: - - supports-color + '@img/sharp-darwin-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.0.4 + optional: true - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6): - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) - transitivePeerDependencies: - - supports-color + '@img/sharp-darwin-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.0.4 + optional: true - bail@2.0.2: {} + '@img/sharp-libvips-darwin-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.0.4': + optional: true - balanced-match@1.0.2: {} + '@img/sharp-libvips-linux-arm64@1.0.4': + optional: true - batch@0.6.1: {} + '@img/sharp-libvips-linux-arm@1.0.5': + optional: true - big.js@5.2.2: {} + '@img/sharp-libvips-linux-s390x@1.0.4': + optional: true - binary-extensions@2.3.0: {} + '@img/sharp-libvips-linux-x64@1.0.4': + optional: true - body-parser@1.20.2: - dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.2 - type-is: 1.6.18 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + optional: true - bonjour-service@1.2.1: - dependencies: - fast-deep-equal: 3.1.3 - multicast-dns: 7.2.5 + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + optional: true - boolbase@1.0.0: {} + '@img/sharp-linux-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.0.4 + optional: true - boxen@6.2.1: - dependencies: - ansi-align: 3.0.1 - camelcase: 6.3.0 - chalk: 4.1.2 - cli-boxes: 3.0.0 - string-width: 5.1.2 - type-fest: 2.19.0 - widest-line: 4.0.1 - wrap-ansi: 8.1.0 + '@img/sharp-linux-arm@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.0.5 + optional: true - boxen@7.1.1: - dependencies: - ansi-align: 3.0.1 - camelcase: 7.0.1 - chalk: 5.3.0 - cli-boxes: 3.0.0 - string-width: 5.1.2 - type-fest: 2.19.0 - widest-line: 4.0.1 - wrap-ansi: 8.1.0 + '@img/sharp-linux-s390x@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.0.4 + optional: true - brace-expansion@1.1.11: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 + '@img/sharp-linux-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.0.4 + optional: true - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 + '@img/sharp-linuxmusl-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + optional: true - braces@3.0.3: - dependencies: - fill-range: 7.1.1 + '@img/sharp-linuxmusl-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + optional: true - browserslist@4.23.0: + '@img/sharp-wasm32@0.33.5': dependencies: - caniuse-lite: 1.0.30001623 - electron-to-chromium: 1.4.783 - node-releases: 2.0.14 - update-browserslist-db: 1.0.16(browserslist@4.23.0) + '@emnapi/runtime': 1.3.1 + optional: true - buffer-from@1.1.2: {} + '@img/sharp-win32-ia32@0.33.5': + optional: true - builtin-modules@3.3.0: {} + '@img/sharp-win32-x64@0.33.5': + optional: true - bytes@3.0.0: {} + '@jridgewell/gen-mapping@0.3.5': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 - bytes@3.1.2: {} + '@jridgewell/resolve-uri@3.1.2': {} - cacheable-lookup@7.0.0: {} + '@jridgewell/set-array@1.2.1': {} - cacheable-request@10.2.14: - dependencies: - '@types/http-cache-semantics': 4.0.4 - get-stream: 6.0.1 - http-cache-semantics: 4.1.1 - keyv: 4.5.4 - mimic-response: 4.0.0 - normalize-url: 8.0.1 - responselike: 3.0.0 + '@jridgewell/sourcemap-codec@1.5.0': {} - call-bind@1.0.7: + '@jridgewell/trace-mapping@0.3.25': dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - set-function-length: 1.2.2 - - callsites@3.1.0: {} + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 - camel-case@4.1.2: + '@mdx-js/mdx@3.1.0(acorn@8.14.0)': dependencies: - pascal-case: 3.1.2 - tslib: 2.6.2 + '@types/estree': 1.0.6 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdx': 2.0.13 + collapse-white-space: 2.1.0 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-util-scope: 1.0.0 + estree-walker: 3.0.3 + hast-util-to-jsx-runtime: 2.3.2 + markdown-extensions: 2.0.0 + recma-build-jsx: 1.0.0 + recma-jsx: 1.0.0(acorn@8.14.0) + recma-stringify: 1.0.0 + rehype-recma: 1.0.0 + remark-mdx: 3.1.0 + remark-parse: 11.0.0 + remark-rehype: 11.1.1 + source-map: 0.7.4 + unified: 11.0.5 + unist-util-position-from-estree: 2.0.0 + unist-util-stringify-position: 4.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + transitivePeerDependencies: + - acorn + - supports-color - camelcase@6.3.0: {} + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 - camelcase@7.0.1: {} + '@nodelib/fs.stat@2.0.5': {} - caniuse-api@3.0.0: + '@nodelib/fs.walk@1.2.8': dependencies: - browserslist: 4.23.0 - caniuse-lite: 1.0.30001623 - lodash.memoize: 4.1.2 - lodash.uniq: 4.5.0 + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.17.1 - caniuse-lite@1.0.30001623: {} + '@oslojs/encoding@1.1.0': {} - ccount@2.0.1: {} + '@pagefind/darwin-arm64@1.1.1': + optional: true - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 + '@pagefind/darwin-x64@1.1.1': + optional: true - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 + '@pagefind/default-ui@1.1.1': {} - chalk@5.3.0: {} + '@pagefind/linux-arm64@1.1.1': + optional: true - char-regex@1.0.2: {} + '@pagefind/linux-x64@1.1.1': + optional: true - character-entities-html4@2.1.0: {} + '@pagefind/windows-x64@1.1.1': + optional: true - character-entities-legacy@3.0.0: {} + '@rollup/pluginutils@5.1.3(rollup@4.24.3)': + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + optionalDependencies: + rollup: 4.24.3 - character-entities@2.0.2: {} + '@rollup/rollup-android-arm-eabi@4.24.3': + optional: true - character-reference-invalid@2.0.1: {} + '@rollup/rollup-android-arm64@4.24.3': + optional: true - cheerio-select@2.1.0: - dependencies: - boolbase: 1.0.0 - css-select: 5.1.0 - css-what: 6.1.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 + '@rollup/rollup-darwin-arm64@4.24.3': + optional: true - cheerio@1.0.0-rc.12: - dependencies: - cheerio-select: 2.1.0 - dom-serializer: 2.0.0 - domhandler: 5.0.3 - domutils: 3.1.0 - htmlparser2: 8.0.2 - parse5: 7.1.2 - parse5-htmlparser2-tree-adapter: 7.0.0 + '@rollup/rollup-darwin-x64@4.24.3': + optional: true - chokidar@3.6.0: - dependencies: - anymatch: 3.1.3 - braces: 3.0.3 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 + '@rollup/rollup-freebsd-arm64@4.24.3': + optional: true - chrome-trace-event@1.0.3: {} + '@rollup/rollup-freebsd-x64@4.24.3': + optional: true - ci-info@3.9.0: {} + '@rollup/rollup-linux-arm-gnueabihf@4.24.3': + optional: true - clean-css@5.3.3: - dependencies: - source-map: 0.6.1 + '@rollup/rollup-linux-arm-musleabihf@4.24.3': + optional: true - clean-stack@2.2.0: {} + '@rollup/rollup-linux-arm64-gnu@4.24.3': + optional: true - cli-boxes@3.0.0: {} + '@rollup/rollup-linux-arm64-musl@4.24.3': + optional: true - cli-table3@0.6.5: - dependencies: - string-width: 4.2.3 - optionalDependencies: - '@colors/colors': 1.5.0 + '@rollup/rollup-linux-powerpc64le-gnu@4.24.3': + optional: true - clone-deep@4.0.1: - dependencies: - is-plain-object: 2.0.4 - kind-of: 6.0.3 - shallow-clone: 3.0.1 + '@rollup/rollup-linux-riscv64-gnu@4.24.3': + optional: true - clsx@2.1.1: {} + '@rollup/rollup-linux-s390x-gnu@4.24.3': + optional: true - collapse-white-space@2.1.0: {} + '@rollup/rollup-linux-x64-gnu@4.24.3': + optional: true - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 + '@rollup/rollup-linux-x64-musl@4.24.3': + optional: true - color-convert@2.0.1: - dependencies: - color-name: 1.1.4 + '@rollup/rollup-win32-arm64-msvc@4.24.3': + optional: true - color-name@1.1.3: {} + '@rollup/rollup-win32-ia32-msvc@4.24.3': + optional: true - color-name@1.1.4: {} + '@rollup/rollup-win32-x64-msvc@4.24.3': + optional: true - colord@2.9.3: {} + '@shikijs/core@1.22.2': + dependencies: + '@shikijs/engine-javascript': 1.22.2 + '@shikijs/engine-oniguruma': 1.22.2 + '@shikijs/types': 1.22.2 + '@shikijs/vscode-textmate': 9.3.0 + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.3 - colorette@2.0.20: {} + '@shikijs/engine-javascript@1.22.2': + dependencies: + '@shikijs/types': 1.22.2 + '@shikijs/vscode-textmate': 9.3.0 + oniguruma-to-js: 0.4.3 - combine-promises@1.2.0: {} + '@shikijs/engine-oniguruma@1.22.2': + dependencies: + '@shikijs/types': 1.22.2 + '@shikijs/vscode-textmate': 9.3.0 - comma-separated-tokens@2.0.3: {} + '@shikijs/types@1.22.2': + dependencies: + '@shikijs/vscode-textmate': 9.3.0 + '@types/hast': 3.0.4 - commander@10.0.1: {} + '@shikijs/vscode-textmate@9.3.0': {} - commander@2.20.3: {} + '@types/acorn@4.0.6': + dependencies: + '@types/estree': 1.0.6 - commander@5.1.0: {} + '@types/babel__core@7.20.5': + dependencies: + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.6 - commander@7.2.0: {} + '@types/babel__generator@7.6.8': + dependencies: + '@babel/types': 7.26.0 - commander@8.3.0: {} + '@types/babel__template@7.4.4': + dependencies: + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 - common-path-prefix@3.0.0: {} + '@types/babel__traverse@7.20.6': + dependencies: + '@babel/types': 7.26.0 - common-tags@1.8.2: {} + '@types/cookie@0.6.0': {} - compressible@2.0.18: + '@types/debug@4.1.12': dependencies: - mime-db: 1.52.0 + '@types/ms': 0.7.34 - compression@1.7.4: + '@types/estree-jsx@1.0.5': dependencies: - accepts: 1.3.8 - bytes: 3.0.0 - compressible: 2.0.18 - debug: 2.6.9 - on-headers: 1.0.2 - safe-buffer: 5.1.2 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color + '@types/estree': 1.0.6 - concat-map@0.0.1: {} + '@types/estree@1.0.6': {} - config-chain@1.1.13: + '@types/hast@3.0.4': dependencies: - ini: 1.3.8 - proto-list: 1.2.4 + '@types/unist': 3.0.3 - configstore@6.0.0: + '@types/mdast@4.0.4': dependencies: - dot-prop: 6.0.1 - graceful-fs: 4.2.11 - unique-string: 3.0.0 - write-file-atomic: 3.0.3 - xdg-basedir: 5.1.0 - - connect-history-api-fallback@2.0.0: {} + '@types/unist': 3.0.3 - consola@2.15.3: {} + '@types/mdx@2.0.13': {} - content-disposition@0.5.2: {} + '@types/ms@0.7.34': {} - content-disposition@0.5.4: + '@types/nlcst@2.0.3': dependencies: - safe-buffer: 5.2.1 + '@types/unist': 3.0.3 - content-type@1.0.5: {} + '@types/node@17.0.45': {} - convert-source-map@2.0.0: {} + '@types/sax@1.2.7': + dependencies: + '@types/node': 17.0.45 - cookie-signature@1.0.6: {} + '@types/unist@2.0.11': {} - cookie@0.6.0: {} + '@types/unist@3.0.3': {} - copy-text-to-clipboard@3.2.0: {} + '@ungap/structured-clone@1.2.0': {} - copy-webpack-plugin@11.0.0(webpack@5.91.0): + '@volar/kit@2.4.8(typescript@5.6.3)': dependencies: - fast-glob: 3.3.2 - glob-parent: 6.0.2 - globby: 13.2.2 - normalize-path: 3.0.0 - schema-utils: 4.2.0 - serialize-javascript: 6.0.2 - webpack: 5.91.0 + '@volar/language-service': 2.4.8 + '@volar/typescript': 2.4.8 + typesafe-path: 0.2.2 + typescript: 5.6.3 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 - core-js-compat@3.37.1: + '@volar/language-core@2.4.8': dependencies: - browserslist: 4.23.0 + '@volar/source-map': 2.4.8 - core-js-pure@3.37.1: {} + '@volar/language-server@2.4.8': + dependencies: + '@volar/language-core': 2.4.8 + '@volar/language-service': 2.4.8 + '@volar/typescript': 2.4.8 + path-browserify: 1.0.1 + request-light: 0.7.0 + vscode-languageserver: 9.0.1 + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 - core-js@3.37.1: {} + '@volar/language-service@2.4.8': + dependencies: + '@volar/language-core': 2.4.8 + vscode-languageserver-protocol: 3.17.5 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 - core-util-is@1.0.3: {} + '@volar/source-map@2.4.8': {} - cosmiconfig@6.0.0: + '@volar/typescript@2.4.8': dependencies: - '@types/parse-json': 4.0.2 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 + '@volar/language-core': 2.4.8 + path-browserify: 1.0.1 + vscode-uri: 3.0.8 - cosmiconfig@8.3.6(typescript@5.4.5): + '@vscode/emmet-helper@2.9.3': dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - optionalDependencies: - typescript: 5.4.5 + emmet: 2.4.11 + jsonc-parser: 2.3.1 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-uri: 2.1.2 + + '@vscode/l10n@0.0.18': {} - cross-spawn@7.0.3: + acorn-jsx@5.3.2(acorn@8.14.0): dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 + acorn: 8.14.0 - crypto-random-string@2.0.0: {} + acorn@8.14.0: {} - crypto-random-string@4.0.0: + ajv@8.17.1: dependencies: - type-fest: 1.4.0 + fast-deep-equal: 3.1.3 + fast-uri: 3.0.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 - css-declaration-sorter@7.2.0(postcss@8.4.38): + ansi-align@3.0.1: dependencies: - postcss: 8.4.38 + string-width: 4.2.3 - css-loader@6.11.0(webpack@5.91.0): - dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) - postcss-modules-values: 4.0.0(postcss@8.4.38) - postcss-value-parser: 4.2.0 - semver: 7.6.2 - optionalDependencies: - webpack: 5.91.0 + ansi-regex@5.0.1: {} - css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(webpack@5.91.0): - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - cssnano: 6.1.2(postcss@8.4.38) - jest-worker: 29.7.0 - postcss: 8.4.38 - schema-utils: 4.2.0 - serialize-javascript: 6.0.2 - webpack: 5.91.0 - optionalDependencies: - clean-css: 5.3.3 + ansi-regex@6.1.0: {} - css-select@4.3.0: + ansi-styles@4.3.0: dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 4.3.1 - domutils: 2.8.0 - nth-check: 2.1.1 + color-convert: 2.0.1 - css-select@5.1.0: - dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 5.0.3 - domutils: 3.1.0 - nth-check: 2.1.1 + ansi-styles@6.2.1: {} - css-tree@2.2.1: - dependencies: - mdn-data: 2.0.28 - source-map-js: 1.2.0 + arg@5.0.2: {} - css-tree@2.3.1: + argparse@1.0.10: dependencies: - mdn-data: 2.0.30 - source-map-js: 1.2.0 + sprintf-js: 1.0.3 - css-what@6.1.0: {} + argparse@2.0.1: {} - cssesc@3.0.0: {} + aria-query@5.3.2: {} - cssnano-preset-advanced@6.1.2(postcss@8.4.38): - dependencies: - autoprefixer: 10.4.19(postcss@8.4.38) - browserslist: 4.23.0 - cssnano-preset-default: 6.1.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-discard-unused: 6.0.5(postcss@8.4.38) - postcss-merge-idents: 6.0.3(postcss@8.4.38) - postcss-reduce-idents: 6.0.3(postcss@8.4.38) - postcss-zindex: 6.0.2(postcss@8.4.38) + array-iterate@2.0.1: {} - cssnano-preset-default@6.1.2(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - css-declaration-sorter: 7.2.0(postcss@8.4.38) - cssnano-utils: 4.0.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-calc: 9.0.1(postcss@8.4.38) - postcss-colormin: 6.1.0(postcss@8.4.38) - postcss-convert-values: 6.1.0(postcss@8.4.38) - postcss-discard-comments: 6.0.2(postcss@8.4.38) - postcss-discard-duplicates: 6.0.3(postcss@8.4.38) - postcss-discard-empty: 6.0.3(postcss@8.4.38) - postcss-discard-overridden: 6.0.2(postcss@8.4.38) - postcss-merge-longhand: 6.0.5(postcss@8.4.38) - postcss-merge-rules: 6.1.1(postcss@8.4.38) - postcss-minify-font-values: 6.1.0(postcss@8.4.38) - postcss-minify-gradients: 6.0.3(postcss@8.4.38) - postcss-minify-params: 6.1.0(postcss@8.4.38) - postcss-minify-selectors: 6.0.4(postcss@8.4.38) - postcss-normalize-charset: 6.0.2(postcss@8.4.38) - postcss-normalize-display-values: 6.0.2(postcss@8.4.38) - postcss-normalize-positions: 6.0.2(postcss@8.4.38) - postcss-normalize-repeat-style: 6.0.2(postcss@8.4.38) - postcss-normalize-string: 6.0.2(postcss@8.4.38) - postcss-normalize-timing-functions: 6.0.2(postcss@8.4.38) - postcss-normalize-unicode: 6.1.0(postcss@8.4.38) - postcss-normalize-url: 6.0.2(postcss@8.4.38) - postcss-normalize-whitespace: 6.0.2(postcss@8.4.38) - postcss-ordered-values: 6.0.2(postcss@8.4.38) - postcss-reduce-initial: 6.1.0(postcss@8.4.38) - postcss-reduce-transforms: 6.0.2(postcss@8.4.38) - postcss-svgo: 6.0.3(postcss@8.4.38) - postcss-unique-selectors: 6.0.4(postcss@8.4.38) + astring@1.9.0: {} - cssnano-utils@4.0.2(postcss@8.4.38): + astro-expressive-code@0.35.6(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)): dependencies: - postcss: 8.4.38 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) + rehype-expressive-code: 0.35.6 - cssnano@6.1.2(postcss@8.4.38): + astro@4.16.8(rollup@4.24.3)(typescript@5.6.3): dependencies: - cssnano-preset-default: 6.1.2(postcss@8.4.38) - lilconfig: 3.1.1 - postcss: 8.4.38 + '@astrojs/compiler': 2.10.3 + '@astrojs/internal-helpers': 0.4.1 + '@astrojs/markdown-remark': 5.3.0 + '@astrojs/telemetry': 3.1.0 + '@babel/core': 7.26.0 + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 + '@oslojs/encoding': 1.1.0 + '@rollup/pluginutils': 5.1.3(rollup@4.24.3) + '@types/babel__core': 7.20.5 + '@types/cookie': 0.6.0 + acorn: 8.14.0 + aria-query: 5.3.2 + axobject-query: 4.1.0 + boxen: 8.0.1 + ci-info: 4.0.0 + clsx: 2.1.1 + common-ancestor-path: 1.0.1 + cookie: 0.7.2 + cssesc: 3.0.0 + debug: 4.3.7 + deterministic-object-hash: 2.0.2 + devalue: 5.1.1 + diff: 5.2.0 + dlv: 1.1.3 + dset: 3.1.4 + es-module-lexer: 1.5.4 + esbuild: 0.21.5 + estree-walker: 3.0.3 + fast-glob: 3.3.2 + flattie: 1.1.1 + github-slugger: 2.0.0 + gray-matter: 4.0.3 + html-escaper: 3.0.3 + http-cache-semantics: 4.1.1 + js-yaml: 4.1.0 + kleur: 4.1.5 + magic-string: 0.30.12 + magicast: 0.3.5 + micromatch: 4.0.8 + mrmime: 2.0.0 + neotraverse: 0.6.18 + ora: 8.1.0 + p-limit: 6.1.0 + p-queue: 8.0.1 + preferred-pm: 4.0.0 + prompts: 2.4.2 + rehype: 13.0.2 + semver: 7.6.3 + shiki: 1.22.2 + tinyexec: 0.3.1 + tsconfck: 3.1.4(typescript@5.6.3) + unist-util-visit: 5.0.0 + vfile: 6.0.3 + vite: 5.4.10 + vitefu: 1.0.3(vite@5.4.10) + which-pm: 3.0.0 + xxhash-wasm: 1.0.2 + yargs-parser: 21.1.1 + zod: 3.23.8 + zod-to-json-schema: 3.23.5(zod@3.23.8) + zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8) + optionalDependencies: + sharp: 0.33.5 + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - rollup + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - typescript - csso@5.0.5: - dependencies: - css-tree: 2.2.1 + axobject-query@4.1.0: {} - csstype@3.1.3: {} + bail@2.0.2: {} - data-view-buffer@1.0.1: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 + base-64@1.0.0: {} - data-view-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 + bcp-47-match@2.0.3: {} - data-view-byte-offset@1.0.0: + bcp-47@2.1.0: dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 + is-alphabetical: 2.0.1 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 - debounce@1.2.1: {} + boolbase@1.0.0: {} - debug@2.6.9: + boxen@8.0.1: dependencies: - ms: 2.0.0 + ansi-align: 3.0.1 + camelcase: 8.0.0 + chalk: 5.3.0 + cli-boxes: 3.0.0 + string-width: 7.2.0 + type-fest: 4.26.1 + widest-line: 5.0.0 + wrap-ansi: 9.0.0 - debug@4.3.4: + braces@3.0.3: dependencies: - ms: 2.1.2 + fill-range: 7.1.1 - decode-named-character-reference@1.0.2: + browserslist@4.24.2: dependencies: - character-entities: 2.0.2 + caniuse-lite: 1.0.30001676 + electron-to-chromium: 1.5.50 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.2) - decompress-response@6.0.0: - dependencies: - mimic-response: 3.1.0 + camelcase@8.0.0: {} - deep-extend@0.6.0: {} + caniuse-lite@1.0.30001676: {} - deepmerge@4.3.1: {} + ccount@2.0.1: {} - default-gateway@6.0.3: - dependencies: - execa: 5.1.1 + chalk@5.3.0: {} - defer-to-connect@2.0.1: {} + character-entities-html4@2.1.0: {} - define-data-property@1.1.4: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - gopd: 1.0.1 + character-entities-legacy@3.0.0: {} - define-lazy-prop@2.0.0: {} + character-entities@2.0.2: {} - define-properties@1.2.1: - dependencies: - define-data-property: 1.1.4 - has-property-descriptors: 1.0.2 - object-keys: 1.1.1 + character-reference-invalid@2.0.1: {} - del@6.1.1: + chokidar@4.0.1: dependencies: - globby: 11.1.0 - graceful-fs: 4.2.11 - is-glob: 4.0.3 - is-path-cwd: 2.2.0 - is-path-inside: 3.0.3 - p-map: 4.0.0 - rimraf: 3.0.2 - slash: 3.0.0 - - depd@1.1.2: {} + readdirp: 4.0.2 - depd@2.0.0: {} + ci-info@4.0.0: {} - dequal@2.0.3: {} + cli-boxes@3.0.0: {} - destroy@1.2.0: {} + cli-cursor@5.0.0: + dependencies: + restore-cursor: 5.1.0 - detect-node@2.1.0: {} + cli-spinners@2.9.2: {} - detect-port-alt@1.1.6: + cliui@8.0.1: dependencies: - address: 1.2.2 - debug: 2.6.9 - transitivePeerDependencies: - - supports-color + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 - detect-port@1.6.1: - dependencies: - address: 1.2.2 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color + clsx@2.1.1: {} - devlop@1.1.0: - dependencies: - dequal: 2.0.3 + collapse-white-space@2.1.0: {} - dir-glob@3.0.1: + color-convert@2.0.1: dependencies: - path-type: 4.0.0 + color-name: 1.1.4 - dns-packet@5.6.1: - dependencies: - '@leichtgewicht/ip-codec': 2.0.5 + color-name@1.1.4: {} - dom-converter@0.2.0: + color-string@1.9.1: dependencies: - utila: 0.4.0 + color-name: 1.1.4 + simple-swizzle: 0.2.2 - dom-serializer@1.4.1: + color@4.2.3: dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - entities: 2.2.0 + color-convert: 2.0.1 + color-string: 1.9.1 - dom-serializer@2.0.0: - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - entities: 4.5.0 + comma-separated-tokens@2.0.3: {} - domelementtype@2.3.0: {} + common-ancestor-path@1.0.1: {} - domhandler@4.3.1: - dependencies: - domelementtype: 2.3.0 + convert-source-map@2.0.0: {} - domhandler@5.0.3: - dependencies: - domelementtype: 2.3.0 + cookie@0.7.2: {} - domutils@2.8.0: - dependencies: - dom-serializer: 1.4.1 - domelementtype: 2.3.0 - domhandler: 4.3.1 + css-selector-parser@3.0.5: {} - domutils@3.1.0: - dependencies: - dom-serializer: 2.0.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 + cssesc@3.0.0: {} - dot-case@3.0.4: + debug@4.3.7: dependencies: - no-case: 3.0.4 - tslib: 2.6.2 + ms: 2.1.3 - dot-prop@6.0.1: + decode-named-character-reference@1.0.2: dependencies: - is-obj: 2.0.0 - - duplexer@0.1.2: {} + character-entities: 2.0.2 - eastasianwidth@0.2.0: {} + dequal@2.0.3: {} - ee-first@1.1.1: {} + detect-libc@2.0.3: {} - ejs@3.1.10: + deterministic-object-hash@2.0.2: dependencies: - jake: 10.9.1 + base-64: 1.0.0 - electron-to-chromium@1.4.783: {} + devalue@5.1.1: {} - emoji-regex@8.0.0: {} + devlop@1.1.0: + dependencies: + dequal: 2.0.3 - emoji-regex@9.2.2: {} + diff@5.2.0: {} - emojilib@2.4.0: {} + direction@2.0.1: {} - emojis-list@3.0.0: {} + dlv@1.1.3: {} - emoticon@4.0.1: {} + dset@3.1.4: {} - encodeurl@1.0.2: {} + electron-to-chromium@1.5.50: {} - enhanced-resolve@5.16.1: + emmet@2.4.11: dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 + '@emmetio/abbreviation': 2.3.3 + '@emmetio/css-abbreviation': 2.1.8 - entities@2.2.0: {} + emoji-regex@10.4.0: {} - entities@4.5.0: {} + emoji-regex@8.0.0: {} - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 - - es-abstract@1.23.3: - dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 - globalthis: 1.0.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 - is-callable: 1.2.7 - is-data-view: 1.0.1 - is-negative-zero: 2.0.3 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - is-string: 1.0.7 - is-typed-array: 1.1.13 - is-weakref: 1.0.2 - object-inspect: 1.13.1 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.2 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 - string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.15 - - es-define-property@1.0.0: - dependencies: - get-intrinsic: 1.2.4 - - es-errors@1.3.0: {} - - es-module-lexer@1.5.3: {} - - es-object-atoms@1.0.0: - dependencies: - es-errors: 1.3.0 - - es-set-tostringtag@2.0.3: - dependencies: - get-intrinsic: 1.2.4 - has-tostringtag: 1.0.2 - hasown: 2.0.2 - - es-to-primitive@1.2.1: - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - - escalade@3.1.2: {} - - escape-goat@4.0.0: {} - - escape-html@1.0.3: {} - - escape-string-regexp@1.0.5: {} - - escape-string-regexp@4.0.0: {} + entities@4.5.0: {} - escape-string-regexp@5.0.0: {} + es-module-lexer@1.5.4: {} - eslint-scope@5.1.1: + esast-util-from-estree@2.0.0: dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 - - esprima@4.0.1: {} + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + unist-util-position-from-estree: 2.0.0 - esrecurse@4.3.0: + esast-util-from-js@2.0.1: dependencies: - estraverse: 5.3.0 + '@types/estree-jsx': 1.0.5 + acorn: 8.14.0 + esast-util-from-estree: 2.0.0 + vfile-message: 4.0.2 + + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 + + escalade@3.2.0: {} - estraverse@4.3.0: {} + escape-string-regexp@5.0.0: {} - estraverse@5.3.0: {} + esprima@4.0.1: {} estree-util-attach-comments@3.0.0: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 estree-util-build-jsx@3.0.1: dependencies: @@ -8195,92 +3228,36 @@ snapshots: estree-util-is-identifier-name@3.0.0: {} + estree-util-scope@1.0.0: + dependencies: + '@types/estree': 1.0.6 + devlop: 1.1.0 + estree-util-to-js@2.0.0: dependencies: '@types/estree-jsx': 1.0.5 - astring: 1.8.6 + astring: 1.9.0 source-map: 0.7.4 - estree-util-value-to-estree@3.1.1: - dependencies: - '@types/estree': 1.0.5 - is-plain-obj: 4.1.0 - estree-util-visit@2.0.0: dependencies: '@types/estree-jsx': 1.0.5 - '@types/unist': 3.0.2 - - estree-walker@1.0.1: {} + '@types/unist': 3.0.3 estree-walker@2.0.2: {} estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.5 - - esutils@2.0.3: {} - - eta@2.2.0: {} - - etag@1.8.1: {} - - eval@0.1.8: - dependencies: - '@types/node': 20.12.12 - require-like: 0.1.2 - - eventemitter3@4.0.7: {} - - events@3.3.0: {} - - execa@5.1.1: - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - - express@4.19.2: - dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.2 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.6.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.11.0 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color + '@types/estree': 1.0.6 + + eventemitter3@5.0.1: {} + + expressive-code@0.35.6: + dependencies: + '@expressive-code/core': 0.35.6 + '@expressive-code/plugin-frames': 0.35.6 + '@expressive-code/plugin-shiki': 0.35.6 + '@expressive-code/plugin-text-markers': 0.35.6 extend-shallow@2.0.1: dependencies: @@ -8296,251 +3273,48 @@ snapshots: '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.5 + micromatch: 4.0.8 - fast-json-stable-stringify@2.1.0: {} - - fast-url-parser@1.1.3: - dependencies: - punycode: 1.4.1 + fast-uri@3.0.3: {} fastq@1.17.1: dependencies: reusify: 1.0.4 - fault@2.0.1: - dependencies: - format: 0.2.2 - - faye-websocket@0.11.4: - dependencies: - websocket-driver: 0.7.4 - - feed@4.2.2: - dependencies: - xml-js: 1.6.11 - - file-loader@6.2.0(webpack@5.91.0): - dependencies: - loader-utils: 2.0.4 - schema-utils: 3.3.0 - webpack: 5.91.0 - - filelist@1.0.4: - dependencies: - minimatch: 5.1.6 - - filesize@8.0.7: {} - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - finalhandler@1.2.0: - dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.4.1 - parseurl: 1.3.3 - statuses: 2.0.1 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - - find-cache-dir@4.0.0: - dependencies: - common-path-prefix: 3.0.0 - pkg-dir: 7.0.0 - - find-up@3.0.0: - dependencies: - locate-path: 3.0.0 + find-up-simple@1.0.0: {} - find-up@5.0.0: + find-up@4.1.0: dependencies: - locate-path: 6.0.0 + locate-path: 5.0.0 path-exists: 4.0.0 - find-up@6.3.0: - dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 - - flat@5.0.2: {} - - follow-redirects@1.15.6: {} - - for-each@0.3.3: - dependencies: - is-callable: 1.2.7 - - fork-ts-checker-webpack-plugin@6.5.3(typescript@5.4.5)(webpack@5.91.0): - dependencies: - '@babel/code-frame': 7.24.6 - '@types/json-schema': 7.0.15 - chalk: 4.1.2 - chokidar: 3.6.0 - cosmiconfig: 6.0.0 - deepmerge: 4.3.1 - fs-extra: 9.1.0 - glob: 7.2.3 - memfs: 3.5.3 - minimatch: 3.1.2 - schema-utils: 2.7.0 - semver: 7.6.2 - tapable: 1.1.3 - typescript: 5.4.5 - webpack: 5.91.0 - - form-data-encoder@2.1.4: {} - - format@0.2.2: {} - - forwarded@0.2.0: {} - - fraction.js@4.3.7: {} - - fresh@0.5.2: {} - - fs-extra@11.2.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - - fs-extra@9.1.0: + find-yarn-workspace-root2@1.2.16: dependencies: - at-least-node: 1.0.0 - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - - fs-monkey@1.0.6: {} + micromatch: 4.0.8 + pkg-dir: 4.2.0 - fs.realpath@1.0.0: {} + flattie@1.1.1: {} fsevents@2.3.3: optional: true - function-bind@1.1.2: {} - - function.prototype.name@1.1.6: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - functions-have-names: 1.2.3 - - functions-have-names@1.2.3: {} - gensync@1.0.0-beta.2: {} - get-intrinsic@1.2.4: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - - get-own-enumerable-property-symbols@3.0.2: {} + get-caller-file@2.0.5: {} - get-stream@6.0.1: {} - - get-symbol-description@1.0.2: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 + get-east-asian-width@1.3.0: {} - github-slugger@1.5.0: {} + github-slugger@2.0.0: {} glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - glob-parent@6.0.2: - dependencies: - is-glob: 4.0.3 - - glob-to-regexp@0.4.1: {} - - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - - global-dirs@3.0.1: - dependencies: - ini: 2.0.0 - - global-modules@2.0.0: - dependencies: - global-prefix: 3.0.0 - - global-prefix@3.0.0: - dependencies: - ini: 1.3.8 - kind-of: 6.0.3 - which: 1.3.1 - - globals@11.12.0: {} - - globalthis@1.0.4: - dependencies: - define-properties: 1.2.1 - gopd: 1.0.1 - - globby@11.1.0: - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.3.1 - merge2: 1.4.1 - slash: 3.0.0 - - globby@13.2.2: - dependencies: - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.3.1 - merge2: 1.4.1 - slash: 4.0.0 - - globby@14.0.1: - dependencies: - '@sindresorhus/merge-streams': 2.3.0 - fast-glob: 3.3.2 - ignore: 5.3.1 - path-type: 5.0.0 - slash: 5.1.0 - unicorn-magic: 0.1.0 - - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.4 - - got@12.6.1: - dependencies: - '@sindresorhus/is': 5.6.0 - '@szmarczak/http-timer': 5.0.1 - cacheable-lookup: 7.0.0 - cacheable-request: 10.2.14 - decompress-response: 6.0.0 - form-data-encoder: 2.1.4 - get-stream: 6.0.1 - http2-wrapper: 2.2.1 - lowercase-keys: 3.0.0 - p-cancelable: 3.0.0 - responselike: 3.0.0 - - graceful-fs@4.2.10: {} + globals@11.12.0: {} graceful-fs@4.2.11: {} @@ -8551,70 +3325,110 @@ snapshots: section-matter: 1.0.0 strip-bom-string: 1.0.0 - gzip-size@6.0.0: - dependencies: - duplexer: 0.1.2 - - handle-thing@2.0.1: {} - - has-bigints@1.0.2: {} - - has-flag@3.0.0: {} - - has-flag@4.0.0: {} - - has-property-descriptors@1.0.2: + hast-util-embedded@3.0.0: dependencies: - es-define-property: 1.0.0 - - has-proto@1.0.3: {} - - has-symbols@1.0.3: {} + '@types/hast': 3.0.4 + hast-util-is-element: 3.0.0 - has-tostringtag@1.0.2: + hast-util-format@1.1.0: dependencies: - has-symbols: 1.0.3 - - has-yarn@3.0.0: {} + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-minify-whitespace: 1.0.1 + hast-util-phrasing: 3.0.1 + hast-util-whitespace: 3.0.0 + html-whitespace-sensitive-tag-names: 3.0.1 + unist-util-visit-parents: 6.0.1 - hasown@2.0.2: + hast-util-from-html@2.0.3: dependencies: - function-bind: 1.1.2 + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.1 + parse5: 7.2.1 + vfile: 6.0.3 + vfile-message: 4.0.2 hast-util-from-parse5@8.0.1: dependencies: '@types/hast': 3.0.4 - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 devlop: 1.1.0 hastscript: 8.0.0 property-information: 6.5.0 - vfile: 6.0.1 - vfile-location: 5.0.2 + vfile: 6.0.3 + vfile-location: 5.0.3 web-namespaces: 2.0.1 + hast-util-has-property@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-is-body-ok-link@3.0.1: + dependencies: + '@types/hast': 3.0.4 + + hast-util-is-element@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-minify-whitespace@1.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-is-element: 3.0.0 + hast-util-whitespace: 3.0.0 + unist-util-is: 6.0.0 + hast-util-parse-selector@4.0.0: dependencies: '@types/hast': 3.0.4 - hast-util-raw@9.0.3: + hast-util-phrasing@3.0.1: dependencies: '@types/hast': 3.0.4 - '@types/unist': 3.0.2 + hast-util-embedded: 3.0.0 + hast-util-has-property: 3.0.0 + hast-util-is-body-ok-link: 3.0.1 + hast-util-is-element: 3.0.0 + + hast-util-raw@9.0.4: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 '@ungap/structured-clone': 1.2.0 hast-util-from-parse5: 8.0.1 hast-util-to-parse5: 8.0.0 html-void-elements: 3.0.0 - mdast-util-to-hast: 13.1.0 - parse5: 7.1.2 + mdast-util-to-hast: 13.2.0 + parse5: 7.2.1 unist-util-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 web-namespaces: 2.0.1 zwitch: 2.0.4 + hast-util-select@6.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + bcp-47-match: 2.0.3 + comma-separated-tokens: 2.0.3 + css-selector-parser: 3.0.5 + devlop: 1.1.0 + direction: 2.0.1 + hast-util-has-property: 3.0.0 + hast-util-to-string: 3.0.1 + hast-util-whitespace: 3.0.0 + nth-check: 2.1.1 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + hast-util-to-estree@3.1.0: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 @@ -8622,8 +3436,8 @@ snapshots: estree-util-attach-comments: 3.0.0 estree-util-is-identifier-name: 3.0.0 hast-util-whitespace: 3.0.0 - mdast-util-mdx-expression: 2.0.0 - mdast-util-mdx-jsx: 3.1.2 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.1.3 mdast-util-mdxjs-esm: 2.0.1 property-information: 6.5.0 space-separated-tokens: 2.0.2 @@ -8633,21 +3447,35 @@ snapshots: transitivePeerDependencies: - supports-color - hast-util-to-jsx-runtime@2.3.0: + hast-util-to-html@9.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.0 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.4 + zwitch: 2.0.4 + + hast-util-to-jsx-runtime@2.3.2: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@types/hast': 3.0.4 - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 comma-separated-tokens: 2.0.3 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 hast-util-whitespace: 3.0.0 - mdast-util-mdx-expression: 2.0.0 - mdast-util-mdx-jsx: 3.1.2 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.1.3 mdast-util-mdxjs-esm: 2.0.1 property-information: 6.5.0 space-separated-tokens: 2.0.2 - style-to-object: 1.0.6 + style-to-object: 1.0.8 unist-util-position: 5.0.0 vfile-message: 4.0.2 transitivePeerDependencies: @@ -8663,6 +3491,17 @@ snapshots: web-namespaces: 2.0.1 zwitch: 2.0.4 + hast-util-to-string@3.0.1: + dependencies: + '@types/hast': 3.0.4 + + hast-util-to-text@4.0.2: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + hast-util-is-element: 3.0.0 + unist-util-find-after: 5.0.0 + hast-util-whitespace@3.0.0: dependencies: '@types/hast': 3.0.4 @@ -8675,191 +3514,31 @@ snapshots: property-information: 6.5.0 space-separated-tokens: 2.0.2 - he@1.2.0: {} - - history@4.10.1: + hastscript@9.0.0: dependencies: - '@babel/runtime': 7.24.6 - loose-envify: 1.4.0 - resolve-pathname: 3.0.0 - tiny-invariant: 1.3.3 - tiny-warning: 1.0.3 - value-equal: 1.0.1 - - hoist-non-react-statics@3.3.2: - dependencies: - react-is: 16.13.1 - - hpack.js@2.1.6: - dependencies: - inherits: 2.0.4 - obuf: 1.1.2 - readable-stream: 2.3.8 - wbuf: 1.7.3 - - html-entities@2.5.2: {} - - html-escaper@2.0.2: {} - - html-minifier-terser@6.1.0: - dependencies: - camel-case: 4.1.2 - clean-css: 5.3.3 - commander: 8.3.0 - he: 1.2.0 - param-case: 3.0.4 - relateurl: 0.2.7 - terser: 5.31.0 - - html-minifier-terser@7.2.0: - dependencies: - camel-case: 4.1.2 - clean-css: 5.3.3 - commander: 10.0.1 - entities: 4.5.0 - param-case: 3.0.4 - relateurl: 0.2.7 - terser: 5.31.0 + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 - html-tags@3.3.1: {} + html-escaper@3.0.3: {} html-void-elements@3.0.0: {} - html-webpack-plugin@5.6.0(webpack@5.91.0): - dependencies: - '@types/html-minifier-terser': 6.1.0 - html-minifier-terser: 6.1.0 - lodash: 4.17.21 - pretty-error: 4.0.0 - tapable: 2.2.1 - optionalDependencies: - webpack: 5.91.0 - - htmlparser2@6.1.0: - dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - domutils: 2.8.0 - entities: 2.2.0 - - htmlparser2@8.0.2: - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 - entities: 4.5.0 + html-whitespace-sensitive-tag-names@3.0.1: {} http-cache-semantics@4.1.1: {} - http-deceiver@1.2.7: {} - - http-errors@1.6.3: - dependencies: - depd: 1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.0 - statuses: 1.5.0 - - http-errors@2.0.0: - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 - - http-parser-js@0.5.8: {} - - http-proxy-middleware@2.0.6(@types/express@4.17.21): - dependencies: - '@types/http-proxy': 1.17.14 - http-proxy: 1.18.1 - is-glob: 4.0.3 - is-plain-obj: 3.0.0 - micromatch: 4.0.7 - optionalDependencies: - '@types/express': 4.17.21 - transitivePeerDependencies: - - debug - - http-proxy@1.18.1: - dependencies: - eventemitter3: 4.0.7 - follow-redirects: 1.15.6 - requires-port: 1.0.0 - transitivePeerDependencies: - - debug - - http2-wrapper@2.2.1: - dependencies: - quick-lru: 5.1.1 - resolve-alpn: 1.2.1 - - human-signals@2.1.0: {} - - iconv-lite@0.4.24: - dependencies: - safer-buffer: 2.1.2 - - icss-utils@5.1.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - idb@7.1.1: {} - - ignore@5.3.1: {} - - image-size@1.1.1: - dependencies: - queue: 6.0.2 - - immer@9.0.21: {} - - import-fresh@3.3.0: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - - import-lazy@4.0.0: {} - - imurmurhash@0.1.4: {} - - indent-string@4.0.0: {} - - infima@0.2.0-alpha.43: {} - - inflight@1.0.6: + i18next@23.16.4: dependencies: - once: 1.4.0 - wrappy: 1.0.2 + '@babel/runtime': 7.26.0 - inherits@2.0.3: {} - - inherits@2.0.4: {} - - ini@1.3.8: {} - - ini@2.0.0: {} + import-meta-resolve@4.1.0: {} inline-style-parser@0.1.1: {} - inline-style-parser@0.2.3: {} - - internal-slot@1.0.7: - dependencies: - es-errors: 1.3.0 - hasown: 2.0.2 - side-channel: 1.0.6 - - interpret@1.4.0: {} - - invariant@2.2.4: - dependencies: - loose-envify: 1.4.0 - - ipaddr.js@1.9.1: {} - - ipaddr.js@2.2.0: {} + inline-style-parser@0.2.4: {} is-alphabetical@2.0.1: {} @@ -8868,51 +3547,11 @@ snapshots: is-alphabetical: 2.0.1 is-decimal: 2.0.1 - is-array-buffer@3.0.4: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - - is-arrayish@0.2.1: {} - - is-bigint@1.0.4: - dependencies: - has-bigints: 1.0.2 - - is-binary-path@2.1.0: - dependencies: - binary-extensions: 2.3.0 - - is-boolean-object@1.1.2: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-builtin-module@3.2.1: - dependencies: - builtin-modules: 3.3.0 - - is-callable@1.2.7: {} - - is-ci@3.0.1: - dependencies: - ci-info: 3.9.0 - - is-core-module@2.13.1: - dependencies: - hasown: 2.0.2 - - is-data-view@1.0.1: - dependencies: - is-typed-array: 1.1.13 - - is-date-object@1.0.5: - dependencies: - has-tostringtag: 1.0.2 + is-arrayish@0.3.2: {} is-decimal@2.0.1: {} - is-docker@2.2.1: {} + is-docker@3.0.0: {} is-extendable@0.1.1: {} @@ -8926,130 +3565,23 @@ snapshots: is-hexadecimal@2.0.1: {} - is-installed-globally@0.4.0: + is-inside-container@1.0.0: dependencies: - global-dirs: 3.0.1 - is-path-inside: 3.0.3 - - is-module@1.0.0: {} - - is-negative-zero@2.0.3: {} - - is-npm@6.0.0: {} + is-docker: 3.0.0 - is-number-object@1.0.7: - dependencies: - has-tostringtag: 1.0.2 + is-interactive@2.0.0: {} is-number@7.0.0: {} - is-obj@1.0.1: {} - - is-obj@2.0.0: {} - - is-path-cwd@2.2.0: {} - - is-path-inside@3.0.3: {} - - is-plain-obj@3.0.0: {} - is-plain-obj@4.1.0: {} - is-plain-object@2.0.4: - dependencies: - isobject: 3.0.1 - - is-reference@3.0.2: - dependencies: - '@types/estree': 1.0.5 - - is-regex@1.1.4: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-regexp@1.0.0: {} - - is-root@2.1.0: {} - - is-shared-array-buffer@1.0.3: - dependencies: - call-bind: 1.0.7 - - is-stream@2.0.1: {} - - is-string@1.0.7: - dependencies: - has-tostringtag: 1.0.2 - - is-symbol@1.0.4: - dependencies: - has-symbols: 1.0.3 - - is-typed-array@1.1.13: - dependencies: - which-typed-array: 1.1.15 - - is-typedarray@1.0.0: {} - - is-weakref@1.0.2: - dependencies: - call-bind: 1.0.7 - - is-wsl@2.2.0: - dependencies: - is-docker: 2.2.1 - - is-yarn-global@0.4.1: {} - - isarray@0.0.1: {} - - isarray@1.0.0: {} - - isarray@2.0.5: {} - - isexe@2.0.0: {} - - isobject@3.0.1: {} - - jake@10.9.1: - dependencies: - async: 3.2.5 - chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.2 - - jest-util@29.7.0: - dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.12.12 - chalk: 4.1.2 - ci-info: 3.9.0 - graceful-fs: 4.2.11 - picomatch: 2.3.1 - - jest-worker@27.5.1: - dependencies: - '@types/node': 20.12.12 - merge-stream: 2.0.0 - supports-color: 8.1.1 - - jest-worker@29.7.0: - dependencies: - '@types/node': 20.12.12 - jest-util: 29.7.0 - merge-stream: 2.0.0 - supports-color: 8.1.1 + is-unicode-supported@1.3.0: {} - jiti@1.21.0: {} + is-unicode-supported@2.1.0: {} - joi@17.13.1: + is-wsl@3.1.0: dependencies: - '@hapi/hoek': 9.3.0 - '@hapi/topo': 5.1.0 - '@sideway/address': 4.1.5 - '@sideway/formula': 3.0.1 - '@sideway/pinpoint': 2.0.0 + is-inside-container: 1.0.0 js-tokens@4.0.0: {} @@ -9062,154 +3594,73 @@ snapshots: dependencies: argparse: 2.0.1 - jsesc@0.5.0: {} - - jsesc@2.5.2: {} - - json-buffer@3.0.1: {} - - json-parse-even-better-errors@2.3.1: {} - - json-schema-traverse@0.4.1: {} + jsesc@3.0.2: {} json-schema-traverse@1.0.0: {} - json-schema@0.4.0: {} - json5@2.2.3: {} - jsonc-parser@3.2.1: {} + jsonc-parser@2.3.1: {} - jsonfile@6.1.0: - dependencies: - universalify: 2.0.1 - optionalDependencies: - graceful-fs: 4.2.11 - - jsonpointer@5.0.1: {} - - keyv@4.5.4: - dependencies: - json-buffer: 3.0.1 + jsonc-parser@3.3.1: {} kind-of@6.0.3: {} kleur@3.0.3: {} - latest-version@7.0.0: - dependencies: - package-json: 8.1.1 - - launch-editor@2.6.1: - dependencies: - picocolors: 1.0.1 - shell-quote: 1.8.1 - - leven@3.1.0: {} - - lilconfig@3.1.1: {} - - lines-and-columns@1.2.4: {} - - linkify-it@5.0.0: - dependencies: - uc.micro: 2.1.0 - - loader-runner@4.3.0: {} - - loader-utils@2.0.4: - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.3 - - loader-utils@3.2.1: {} - - locate-path@3.0.0: - dependencies: - p-locate: 3.0.0 - path-exists: 3.0.0 + kleur@4.1.5: {} - locate-path@6.0.0: + load-yaml-file@0.2.0: dependencies: - p-locate: 5.0.0 + graceful-fs: 4.2.11 + js-yaml: 3.14.1 + pify: 4.0.1 + strip-bom: 3.0.0 - locate-path@7.2.0: + locate-path@5.0.0: dependencies: - p-locate: 6.0.0 - - lodash.debounce@4.0.8: {} - - lodash.memoize@4.1.2: {} - - lodash.sortby@4.7.0: {} - - lodash.throttle@4.1.1: {} - - lodash.uniq@4.5.0: {} + p-locate: 4.1.0 lodash@4.17.21: {} - longest-streak@3.1.0: {} - - loose-envify@1.4.0: - dependencies: - js-tokens: 4.0.0 - - lower-case@2.0.2: + log-symbols@6.0.0: dependencies: - tslib: 2.6.2 + chalk: 5.3.0 + is-unicode-supported: 1.3.0 - lowercase-keys@3.0.0: {} + longest-streak@3.1.0: {} lru-cache@5.1.1: dependencies: yallist: 3.1.1 - magic-string@0.25.9: - dependencies: - sourcemap-codec: 1.4.8 - - markdown-extensions@2.0.0: {} - - markdown-it@14.1.0: + magic-string@0.30.12: dependencies: - argparse: 2.0.1 - entities: 4.5.0 - linkify-it: 5.0.0 - mdurl: 2.0.0 - punycode.js: 2.3.1 - uc.micro: 2.1.0 - - markdown-table@3.0.3: {} + '@jridgewell/sourcemap-codec': 1.5.0 - markdownlint-cli2-formatter-default@0.0.4(markdownlint-cli2@0.13.0): + magicast@0.3.5: dependencies: - markdownlint-cli2: 0.13.0 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + source-map-js: 1.2.1 - markdownlint-cli2@0.13.0: - dependencies: - globby: 14.0.1 - js-yaml: 4.1.0 - jsonc-parser: 3.2.1 - markdownlint: 0.34.0 - markdownlint-cli2-formatter-default: 0.0.4(markdownlint-cli2@0.13.0) - micromatch: 4.0.5 + markdown-extensions@2.0.0: {} - markdownlint-micromark@0.1.9: {} + markdown-table@3.0.4: {} - markdownlint@0.34.0: + mdast-util-definitions@6.0.0: dependencies: - markdown-it: 14.1.0 - markdownlint-micromark: 0.1.9 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + unist-util-visit: 5.0.0 mdast-util-directive@3.0.0: dependencies: '@types/mdast': 4.0.4 - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 parse-entities: 4.0.1 stringify-entities: 4.0.4 unist-util-visit-parents: 6.0.1 @@ -9223,10 +3674,10 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - mdast-util-from-markdown@2.0.1: + mdast-util-from-markdown@2.0.2: dependencies: '@types/mdast': 4.0.4 - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 decode-named-character-reference: 1.0.2 devlop: 1.1.0 mdast-util-to-string: 4.0.0 @@ -9235,23 +3686,12 @@ snapshots: micromark-util-decode-string: 2.0.0 micromark-util-normalize-identifier: 2.0.0 micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - unist-util-stringify-position: 4.0.0 - transitivePeerDependencies: - - supports-color - - mdast-util-frontmatter@2.0.1: - dependencies: - '@types/mdast': 4.0.4 - devlop: 1.1.0 - escape-string-regexp: 5.0.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 - micromark-extension-frontmatter: 2.0.0 + micromark-util-types: 2.0.0 + unist-util-stringify-position: 4.0.0 transitivePeerDependencies: - supports-color - mdast-util-gfm-autolink-literal@2.0.0: + mdast-util-gfm-autolink-literal@2.0.1: dependencies: '@types/mdast': 4.0.4 ccount: 2.0.1 @@ -9263,8 +3703,8 @@ snapshots: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 micromark-util-normalize-identifier: 2.0.0 transitivePeerDependencies: - supports-color @@ -9272,8 +3712,8 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 transitivePeerDependencies: - supports-color @@ -9281,9 +3721,9 @@ snapshots: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - markdown-table: 3.0.3 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 transitivePeerDependencies: - supports-color @@ -9291,47 +3731,46 @@ snapshots: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 transitivePeerDependencies: - supports-color mdast-util-gfm@3.0.0: dependencies: - mdast-util-from-markdown: 2.0.1 - mdast-util-gfm-autolink-literal: 2.0.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 mdast-util-gfm-footnote: 2.0.0 mdast-util-gfm-strikethrough: 2.0.0 mdast-util-gfm-table: 2.0.0 mdast-util-gfm-task-list-item: 2.0.0 - mdast-util-to-markdown: 2.1.0 + mdast-util-to-markdown: 2.1.1 transitivePeerDependencies: - supports-color - mdast-util-mdx-expression@2.0.0: + mdast-util-mdx-expression@2.0.1: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 transitivePeerDependencies: - supports-color - mdast-util-mdx-jsx@3.1.2: + mdast-util-mdx-jsx@3.1.3: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 ccount: 2.0.1 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 parse-entities: 4.0.1 stringify-entities: 4.0.4 - unist-util-remove-position: 5.0.0 unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 transitivePeerDependencies: @@ -9339,11 +3778,11 @@ snapshots: mdast-util-mdx@3.0.0: dependencies: - mdast-util-from-markdown: 2.0.1 - mdast-util-mdx-expression: 2.0.0 - mdast-util-mdx-jsx: 3.1.2 + mdast-util-from-markdown: 2.0.2 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.1.3 mdast-util-mdxjs-esm: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-to-markdown: 2.1.1 transitivePeerDependencies: - supports-color @@ -9353,8 +3792,8 @@ snapshots: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.1 transitivePeerDependencies: - supports-color @@ -9363,7 +3802,7 @@ snapshots: '@types/mdast': 4.0.4 unist-util-is: 6.0.0 - mdast-util-to-hast@13.1.0: + mdast-util-to-hast@13.2.0: dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 @@ -9373,15 +3812,16 @@ snapshots: trim-lines: 3.0.1 unist-util-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 - mdast-util-to-markdown@2.1.0: + mdast-util-to-markdown@2.1.1: dependencies: '@types/mdast': 4.0.4 - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 longest-streak: 3.1.0 mdast-util-phrasing: 4.1.0 mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.0 micromark-util-decode-string: 2.0.0 unist-util-visit: 5.0.0 zwitch: 2.0.4 @@ -9390,26 +3830,8 @@ snapshots: dependencies: '@types/mdast': 4.0.4 - mdn-data@2.0.28: {} - - mdn-data@2.0.30: {} - - mdurl@2.0.0: {} - - media-typer@0.3.0: {} - - memfs@3.5.3: - dependencies: - fs-monkey: 1.0.6 - - merge-descriptors@1.0.1: {} - - merge-stream@2.0.0: {} - merge2@1.4.1: {} - methods@1.1.2: {} - micromark-core-commonmark@2.0.1: dependencies: decode-named-character-reference: 1.0.2 @@ -9429,7 +3851,7 @@ snapshots: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-extension-directive@3.0.0: + micromark-extension-directive@3.0.2: dependencies: devlop: 1.1.0 micromark-factory-space: 2.0.0 @@ -9439,21 +3861,14 @@ snapshots: micromark-util-types: 2.0.0 parse-entities: 4.0.1 - micromark-extension-frontmatter@2.0.0: - dependencies: - fault: 2.0.1 - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-extension-gfm-autolink-literal@2.0.0: + micromark-extension-gfm-autolink-literal@2.1.0: dependencies: micromark-util-character: 2.1.0 micromark-util-sanitize-uri: 2.0.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-extension-gfm-footnote@2.0.0: + micromark-extension-gfm-footnote@2.1.0: dependencies: devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -9464,7 +3879,7 @@ snapshots: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-extension-gfm-strikethrough@2.0.0: + micromark-extension-gfm-strikethrough@2.1.0: dependencies: devlop: 1.1.0 micromark-util-chunked: 2.0.0 @@ -9473,7 +3888,7 @@ snapshots: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-extension-gfm-table@2.0.0: + micromark-extension-gfm-table@2.1.0: dependencies: devlop: 1.1.0 micromark-factory-space: 2.0.0 @@ -9485,7 +3900,7 @@ snapshots: dependencies: micromark-util-types: 2.0.0 - micromark-extension-gfm-task-list-item@2.0.1: + micromark-extension-gfm-task-list-item@2.1.0: dependencies: devlop: 1.1.0 micromark-factory-space: 2.0.0 @@ -9495,35 +3910,36 @@ snapshots: micromark-extension-gfm@3.0.0: dependencies: - micromark-extension-gfm-autolink-literal: 2.0.0 - micromark-extension-gfm-footnote: 2.0.0 - micromark-extension-gfm-strikethrough: 2.0.0 - micromark-extension-gfm-table: 2.0.0 + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.0 micromark-extension-gfm-tagfilter: 2.0.0 - micromark-extension-gfm-task-list-item: 2.0.1 + micromark-extension-gfm-task-list-item: 2.1.0 micromark-util-combine-extensions: 2.0.0 micromark-util-types: 2.0.0 micromark-extension-mdx-expression@3.0.0: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 devlop: 1.1.0 - micromark-factory-mdx-expression: 2.0.1 + micromark-factory-mdx-expression: 2.0.2 micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 micromark-util-events-to-acorn: 2.0.2 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-extension-mdx-jsx@3.0.0: + micromark-extension-mdx-jsx@3.0.1: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 - micromark-factory-mdx-expression: 2.0.1 + micromark-factory-mdx-expression: 2.0.2 micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 + micromark-util-events-to-acorn: 2.0.2 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 vfile-message: 4.0.2 @@ -9534,7 +3950,7 @@ snapshots: micromark-extension-mdxjs-esm@3.0.0: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 micromark-util-character: 2.1.0 @@ -9546,10 +3962,10 @@ snapshots: micromark-extension-mdxjs@3.0.0: dependencies: - acorn: 8.11.3 - acorn-jsx: 5.3.2(acorn@8.11.3) + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) micromark-extension-mdx-expression: 3.0.0 - micromark-extension-mdx-jsx: 3.0.0 + micromark-extension-mdx-jsx: 3.0.1 micromark-extension-mdx-md: 2.0.0 micromark-extension-mdxjs-esm: 3.0.0 micromark-util-combine-extensions: 2.0.0 @@ -9568,10 +3984,11 @@ snapshots: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-factory-mdx-expression@2.0.1: + micromark-factory-mdx-expression@2.0.2: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 devlop: 1.1.0 + micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 micromark-util-events-to-acorn: 2.0.2 micromark-util-symbol: 2.0.0 @@ -9579,11 +3996,6 @@ snapshots: unist-util-position-from-estree: 2.0.0 vfile-message: 4.0.2 - micromark-factory-space@1.1.0: - dependencies: - micromark-util-character: 1.2.0 - micromark-util-types: 1.1.0 - micromark-factory-space@2.0.0: dependencies: micromark-util-character: 2.1.0 @@ -9603,11 +4015,6 @@ snapshots: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-util-character@1.2.0: - dependencies: - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - micromark-util-character@2.1.0: dependencies: micromark-util-symbol: 2.0.0 @@ -9644,8 +4051,8 @@ snapshots: micromark-util-events-to-acorn@2.0.2: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.5 - '@types/unist': 3.0.2 + '@types/estree': 1.0.6 + '@types/unist': 3.0.3 devlop: 1.1.0 estree-util-visit: 2.0.0 micromark-util-symbol: 2.0.0 @@ -9675,18 +4082,14 @@ snapshots: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - micromark-util-symbol@1.1.0: {} - micromark-util-symbol@2.0.0: {} - micromark-util-types@1.1.0: {} - micromark-util-types@2.0.0: {} micromark@4.0.0: dependencies: '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.3.7 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -9705,198 +4108,85 @@ snapshots: transitivePeerDependencies: - supports-color - micromatch@4.0.5: - dependencies: - braces: 3.0.3 - picomatch: 2.3.1 - - micromatch@4.0.7: + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 - mime-db@1.33.0: {} - - mime-db@1.52.0: {} - - mime-types@2.1.18: - dependencies: - mime-db: 1.33.0 - - mime-types@2.1.35: - dependencies: - mime-db: 1.52.0 - - mime@1.6.0: {} - - mimic-fn@2.1.0: {} - - mimic-response@3.1.0: {} - - mimic-response@4.0.0: {} - - mini-css-extract-plugin@2.9.0(webpack@5.91.0): - dependencies: - schema-utils: 4.2.0 - tapable: 2.2.1 - webpack: 5.91.0 - - minimalistic-assert@1.0.1: {} - - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.11 - - minimatch@5.1.6: - dependencies: - brace-expansion: 2.0.1 - - minimist@1.2.8: {} + mimic-function@5.0.1: {} mrmime@2.0.0: {} - ms@2.0.0: {} - - ms@2.1.2: {} - ms@2.1.3: {} - multicast-dns@7.2.5: - dependencies: - dns-packet: 5.6.1 - thunky: 1.1.0 + muggle-string@0.4.1: {} nanoid@3.3.7: {} - negotiator@0.6.3: {} - - neo-async@2.6.2: {} - - no-case@3.0.4: - dependencies: - lower-case: 2.0.2 - tslib: 2.6.2 - - node-emoji@2.1.3: - dependencies: - '@sindresorhus/is': 4.6.0 - char-regex: 1.0.2 - emojilib: 2.4.0 - skin-tone: 2.0.0 - - node-forge@1.3.1: {} + neotraverse@0.6.18: {} - node-releases@2.0.14: {} - - normalize-path@3.0.0: {} - - normalize-range@0.1.2: {} - - normalize-url@8.0.1: {} - - npm-run-path@4.0.1: + nlcst-to-string@4.0.0: dependencies: - path-key: 3.1.1 + '@types/nlcst': 2.0.3 - nprogress@0.2.0: {} + node-releases@2.0.18: {} nth-check@2.1.1: dependencies: boolbase: 1.0.0 - object-assign@4.1.1: {} - - object-inspect@1.13.1: {} - - object-keys@1.1.1: {} - - object.assign@4.1.5: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - - obuf@1.1.2: {} - - on-finished@2.4.1: - dependencies: - ee-first: 1.1.1 - - on-headers@1.0.2: {} - - once@1.4.0: + onetime@7.0.0: dependencies: - wrappy: 1.0.2 + mimic-function: 5.0.1 - onetime@5.1.2: + oniguruma-to-js@0.4.3: dependencies: - mimic-fn: 2.1.0 + regex: 4.3.3 - open@8.4.2: + ora@8.1.0: dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 - - opener@1.5.2: {} - - p-cancelable@3.0.0: {} + chalk: 5.3.0 + cli-cursor: 5.0.0 + cli-spinners: 2.9.2 + is-interactive: 2.0.0 + is-unicode-supported: 2.1.0 + log-symbols: 6.0.0 + stdin-discarder: 0.2.2 + string-width: 7.2.0 + strip-ansi: 7.1.0 p-limit@2.3.0: dependencies: p-try: 2.2.0 - p-limit@3.1.0: - dependencies: - yocto-queue: 0.1.0 - - p-limit@4.0.0: + p-limit@6.1.0: dependencies: - yocto-queue: 1.0.0 + yocto-queue: 1.1.1 - p-locate@3.0.0: + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - - p-locate@6.0.0: - dependencies: - p-limit: 4.0.0 - - p-map@4.0.0: + p-queue@8.0.1: dependencies: - aggregate-error: 3.1.0 + eventemitter3: 5.0.1 + p-timeout: 6.1.3 - p-retry@4.6.2: - dependencies: - '@types/retry': 0.12.0 - retry: 0.13.1 + p-timeout@6.1.3: {} p-try@2.2.0: {} - package-json@8.1.1: - dependencies: - got: 12.6.1 - registry-auth-token: 5.0.2 - registry-url: 6.0.1 - semver: 7.6.2 - - param-case@3.0.4: - dependencies: - dot-case: 3.0.4 - tslib: 2.6.2 - - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 + pagefind@1.1.1: + optionalDependencies: + '@pagefind/darwin-arm64': 1.1.1 + '@pagefind/darwin-x64': 1.1.1 + '@pagefind/linux-arm64': 1.1.1 + '@pagefind/linux-x64': 1.1.1 + '@pagefind/windows-x64': 1.1.1 parse-entities@4.0.1: dependencies: - '@types/unist': 2.0.10 + '@types/unist': 2.0.11 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -9905,589 +4195,155 @@ snapshots: is-decimal: 2.0.1 is-hexadecimal: 2.0.1 - parse-json@5.2.0: - dependencies: - '@babel/code-frame': 7.24.6 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - - parse-numeric-range@1.3.0: {} - - parse5-htmlparser2-tree-adapter@7.0.0: + parse-latin@7.0.0: dependencies: - domhandler: 5.0.3 - parse5: 7.1.2 + '@types/nlcst': 2.0.3 + '@types/unist': 3.0.3 + nlcst-to-string: 4.0.0 + unist-util-modify-children: 4.0.0 + unist-util-visit-children: 3.0.0 + vfile: 6.0.3 - parse5@7.1.2: + parse5@7.2.1: dependencies: entities: 4.5.0 - parseurl@1.3.3: {} - - pascal-case@3.1.2: - dependencies: - no-case: 3.0.4 - tslib: 2.6.2 - - path-exists@3.0.0: {} + path-browserify@1.0.1: {} path-exists@4.0.0: {} - path-exists@5.0.0: {} - - path-is-absolute@1.0.1: {} - - path-is-inside@1.0.2: {} - - path-key@3.1.1: {} - - path-parse@1.0.7: {} - - path-to-regexp@0.1.7: {} - - path-to-regexp@1.8.0: - dependencies: - isarray: 0.0.1 - - path-to-regexp@2.2.1: {} - - path-type@4.0.0: {} - - path-type@5.0.0: {} - - periscopic@3.1.0: - dependencies: - '@types/estree': 1.0.5 - estree-walker: 3.0.3 - is-reference: 3.0.2 - - picocolors@1.0.1: {} + picocolors@1.1.1: {} picomatch@2.3.1: {} - pkg-dir@7.0.0: - dependencies: - find-up: 6.3.0 - - pkg-up@3.1.0: - dependencies: - find-up: 3.0.0 - - possible-typed-array-names@1.0.0: {} - - postcss-calc@9.0.1(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - postcss-value-parser: 4.2.0 - - postcss-colormin@6.1.0(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-convert-values@6.1.0(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-discard-comments@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss-discard-duplicates@6.0.3(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss-discard-empty@6.0.3(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss-discard-overridden@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss-discard-unused@6.0.5(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - - postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.4.5)(webpack@5.91.0): - dependencies: - cosmiconfig: 8.3.6(typescript@5.4.5) - jiti: 1.21.0 - postcss: 8.4.38 - semver: 7.6.2 - webpack: 5.91.0 - transitivePeerDependencies: - - typescript - - postcss-merge-idents@6.0.3(postcss@8.4.38): - dependencies: - cssnano-utils: 4.0.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-merge-longhand@6.0.5(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - stylehacks: 6.1.1(postcss@8.4.38) - - postcss-merge-rules@6.1.1(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - caniuse-api: 3.0.0 - cssnano-utils: 4.0.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - - postcss-minify-font-values@6.1.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-minify-gradients@6.0.3(postcss@8.4.38): - dependencies: - colord: 2.9.3 - cssnano-utils: 4.0.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-minify-params@6.1.0(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - cssnano-utils: 4.0.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-minify-selectors@6.0.4(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - - postcss-modules-extract-imports@3.1.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss-modules-local-by-default@4.0.5(postcss@8.4.38): - dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - postcss-value-parser: 4.2.0 - - postcss-modules-scope@3.2.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - - postcss-modules-values@4.0.0(postcss@8.4.38): - dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - postcss: 8.4.38 - - postcss-normalize-charset@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss-normalize-display-values@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-normalize-positions@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-normalize-repeat-style@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-normalize-string@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-normalize-timing-functions@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-normalize-unicode@6.1.0(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-normalize-url@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-normalize-whitespace@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - - postcss-ordered-values@6.0.2(postcss@8.4.38): - dependencies: - cssnano-utils: 4.0.2(postcss@8.4.38) - postcss: 8.4.38 - postcss-value-parser: 4.2.0 + picomatch@4.0.2: {} - postcss-reduce-idents@6.0.3(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 + pify@4.0.1: {} - postcss-reduce-initial@6.1.0(postcss@8.4.38): + pkg-dir@4.2.0: dependencies: - browserslist: 4.23.0 - caniuse-api: 3.0.0 - postcss: 8.4.38 + find-up: 4.1.0 - postcss-reduce-transforms@6.0.2(postcss@8.4.38): + postcss-nested@6.2.0(postcss@8.4.47): dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 + postcss: 8.4.47 + postcss-selector-parser: 6.1.2 - postcss-selector-parser@6.1.0: + postcss-selector-parser@6.1.2: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-sort-media-queries@5.2.0(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - sort-css-media-queries: 2.2.0 - - postcss-svgo@6.0.3(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-value-parser: 4.2.0 - svgo: 3.3.2 - - postcss-unique-selectors@6.0.4(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - - postcss-value-parser@4.2.0: {} - - postcss-zindex@6.0.2(postcss@8.4.38): - dependencies: - postcss: 8.4.38 - - postcss@8.4.38: + postcss@8.4.47: dependencies: nanoid: 3.3.7 - picocolors: 1.0.1 - source-map-js: 1.2.0 + picocolors: 1.1.1 + source-map-js: 1.2.1 - pretty-bytes@5.6.0: {} - - pretty-error@4.0.0: + preferred-pm@4.0.0: dependencies: - lodash: 4.17.21 - renderkid: 3.0.0 + find-up-simple: 1.0.0 + find-yarn-workspace-root2: 1.2.16 + which-pm: 3.0.0 - pretty-time@1.1.0: {} - - prism-react-renderer@2.3.1(react@18.3.1): - dependencies: - '@types/prismjs': 1.26.4 - clsx: 2.1.1 - react: 18.3.1 + prettier@2.8.7: + optional: true prismjs@1.29.0: {} - process-nextick-args@2.0.1: {} - prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - prop-types@15.8.1: - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react-is: 16.13.1 - property-information@6.5.0: {} - proto-list@1.2.4: {} - - proxy-addr@2.0.7: - dependencies: - forwarded: 0.2.0 - ipaddr.js: 1.9.1 - - punycode.js@2.3.1: {} - - punycode@1.4.1: {} - - punycode@2.3.1: {} - - pupa@3.1.0: - dependencies: - escape-goat: 4.0.0 - - qs@6.11.0: - dependencies: - side-channel: 1.0.6 - queue-microtask@1.2.3: {} - queue@6.0.2: - dependencies: - inherits: 2.0.4 - - quick-lru@5.1.1: {} - - randombytes@2.1.0: - dependencies: - safe-buffer: 5.2.1 - - range-parser@1.2.0: {} - - range-parser@1.2.1: {} - - raw-body@2.5.2: - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - - rc@1.2.8: - dependencies: - deep-extend: 0.6.0 - ini: 1.3.8 - minimist: 1.2.8 - strip-json-comments: 2.0.1 + readdirp@4.0.2: {} - react-animation-on-scroll@5.1.0(react@18.3.1): + recma-build-jsx@1.0.0: dependencies: - lodash.throttle: 4.1.1 - react: 18.3.1 + '@types/estree': 1.0.6 + estree-util-build-jsx: 3.0.1 + vfile: 6.0.3 - react-dev-utils@12.0.1(typescript@5.4.5)(webpack@5.91.0): + recma-jsx@1.0.0(acorn@8.14.0): dependencies: - '@babel/code-frame': 7.24.6 - address: 1.2.2 - browserslist: 4.23.0 - chalk: 4.1.2 - cross-spawn: 7.0.3 - detect-port-alt: 1.1.6 - escape-string-regexp: 4.0.0 - filesize: 8.0.7 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(typescript@5.4.5)(webpack@5.91.0) - global-modules: 2.0.0 - globby: 11.1.0 - gzip-size: 6.0.0 - immer: 9.0.21 - is-root: 2.1.0 - loader-utils: 3.2.1 - open: 8.4.2 - pkg-up: 3.1.0 - prompts: 2.4.2 - react-error-overlay: 6.0.11 - recursive-readdir: 2.2.3 - shell-quote: 1.8.1 - strip-ansi: 6.0.1 - text-table: 0.2.0 - webpack: 5.91.0 - optionalDependencies: - typescript: 5.4.5 + acorn-jsx: 5.3.2(acorn@8.14.0) + estree-util-to-js: 2.0.0 + recma-parse: 1.0.0 + recma-stringify: 1.0.0 + unified: 11.0.5 transitivePeerDependencies: - - eslint - - supports-color - - vue-template-compiler - - react-dom@18.3.1(react@18.3.1): - dependencies: - loose-envify: 1.4.0 - react: 18.3.1 - scheduler: 0.23.2 - - react-error-overlay@6.0.11: {} - - react-fast-compare@3.2.2: {} - - react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@babel/runtime': 7.24.6 - invariant: 2.2.4 - prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-fast-compare: 3.2.2 - shallowequal: 1.1.0 - - react-helmet-async@2.0.5(react@18.3.1): - dependencies: - invariant: 2.2.4 - react: 18.3.1 - react-fast-compare: 3.2.2 - shallowequal: 1.1.0 - - react-is@16.13.1: {} - - react-json-view-lite@1.4.0(react@18.3.1): - dependencies: - react: 18.3.1 - - react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.91.0): - dependencies: - '@babel/runtime': 7.24.6 - react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' - webpack: 5.91.0 - - react-router-config@5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1): - dependencies: - '@babel/runtime': 7.24.6 - react: 18.3.1 - react-router: 5.3.4(react@18.3.1) - - react-router-dom@5.3.4(react@18.3.1): - dependencies: - '@babel/runtime': 7.24.6 - history: 4.10.1 - loose-envify: 1.4.0 - prop-types: 15.8.1 - react: 18.3.1 - react-router: 5.3.4(react@18.3.1) - tiny-invariant: 1.3.3 - tiny-warning: 1.0.3 - - react-router@5.3.4(react@18.3.1): - dependencies: - '@babel/runtime': 7.24.6 - history: 4.10.1 - hoist-non-react-statics: 3.3.2 - loose-envify: 1.4.0 - path-to-regexp: 1.8.0 - prop-types: 15.8.1 - react: 18.3.1 - react-is: 16.13.1 - tiny-invariant: 1.3.3 - tiny-warning: 1.0.3 - - react@18.3.1: - dependencies: - loose-envify: 1.4.0 - - readable-stream@2.3.8: - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 - - readable-stream@3.6.2: - dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 - - readdirp@3.6.0: - dependencies: - picomatch: 2.3.1 - - reading-time@1.5.0: {} + - acorn - rechoir@0.6.2: + recma-parse@1.0.0: dependencies: - resolve: 1.22.8 + '@types/estree': 1.0.6 + esast-util-from-js: 2.0.1 + unified: 11.0.5 + vfile: 6.0.3 - recursive-readdir@2.2.3: + recma-stringify@1.0.0: dependencies: - minimatch: 3.1.2 - - regenerate-unicode-properties@10.1.1: - dependencies: - regenerate: 1.4.2 - - regenerate@1.4.2: {} - - regenerator-runtime@0.14.1: {} - - regenerator-transform@0.15.2: - dependencies: - '@babel/runtime': 7.24.6 + '@types/estree': 1.0.6 + estree-util-to-js: 2.0.0 + unified: 11.0.5 + vfile: 6.0.3 - regexp.prototype.flags@1.5.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-errors: 1.3.0 - set-function-name: 2.0.2 + regenerator-runtime@0.14.1: {} - regexpu-core@5.3.2: - dependencies: - '@babel/regjsgen': 0.8.0 - regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 - regjsparser: 0.9.1 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + regex@4.3.3: {} - registry-auth-token@5.0.2: + rehype-expressive-code@0.35.6: dependencies: - '@pnpm/npm-conf': 2.2.2 + expressive-code: 0.35.6 - registry-url@6.0.1: + rehype-format@5.0.1: dependencies: - rc: 1.2.8 + '@types/hast': 3.0.4 + hast-util-format: 1.1.0 - regjsparser@0.9.1: + rehype-parse@9.0.1: dependencies: - jsesc: 0.5.0 + '@types/hast': 3.0.4 + hast-util-from-html: 2.0.3 + unified: 11.0.5 rehype-raw@7.0.0: dependencies: '@types/hast': 3.0.4 - hast-util-raw: 9.0.3 - vfile: 6.0.1 - - relateurl@0.2.7: {} + hast-util-raw: 9.0.4 + vfile: 6.0.3 - remark-directive@3.0.0: + rehype-recma@1.0.0: dependencies: - '@types/mdast': 4.0.4 - mdast-util-directive: 3.0.0 - micromark-extension-directive: 3.0.0 - unified: 11.0.4 + '@types/estree': 1.0.6 + '@types/hast': 3.0.4 + hast-util-to-estree: 3.1.0 transitivePeerDependencies: - supports-color - remark-emoji@4.0.1: + rehype-stringify@10.0.1: dependencies: - '@types/mdast': 4.0.4 - emoticon: 4.0.1 - mdast-util-find-and-replace: 3.0.1 - node-emoji: 2.1.3 - unified: 11.0.4 + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.3 + unified: 11.0.5 + + rehype@13.0.2: + dependencies: + '@types/hast': 3.0.4 + rehype-parse: 9.0.1 + rehype-stringify: 10.0.1 + unified: 11.0.5 - remark-frontmatter@5.0.0: + remark-directive@3.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-frontmatter: 2.0.1 - micromark-extension-frontmatter: 2.0.0 - unified: 11.0.4 + mdast-util-directive: 3.0.0 + micromark-extension-directive: 3.0.2 + unified: 11.0.5 transitivePeerDependencies: - supports-color @@ -10498,11 +4354,11 @@ snapshots: micromark-extension-gfm: 3.0.0 remark-parse: 11.0.0 remark-stringify: 11.0.0 - unified: 11.0.4 + unified: 11.0.5 transitivePeerDependencies: - supports-color - remark-mdx@3.0.1: + remark-mdx@3.1.0: dependencies: mdast-util-mdx: 3.0.0 micromark-extension-mdxjs: 3.0.0 @@ -10512,339 +4368,173 @@ snapshots: remark-parse@11.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.1 + mdast-util-from-markdown: 2.0.2 micromark-util-types: 2.0.0 - unified: 11.0.4 + unified: 11.0.5 transitivePeerDependencies: - supports-color - remark-rehype@11.1.0: + remark-rehype@11.1.1: dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - mdast-util-to-hast: 13.1.0 - unified: 11.0.4 - vfile: 6.0.1 + mdast-util-to-hast: 13.2.0 + unified: 11.0.5 + vfile: 6.0.3 - remark-stringify@11.0.0: + remark-smartypants@3.0.2: dependencies: - '@types/mdast': 4.0.4 - mdast-util-to-markdown: 2.1.0 - unified: 11.0.4 + retext: 9.0.0 + retext-smartypants: 6.2.0 + unified: 11.0.5 + unist-util-visit: 5.0.0 - renderkid@3.0.0: + remark-stringify@11.0.0: dependencies: - css-select: 4.3.0 - dom-converter: 0.2.0 - htmlparser2: 6.1.0 - lodash: 4.17.21 - strip-ansi: 6.0.1 + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.1 + unified: 11.0.5 - require-from-string@2.0.2: {} + request-light@0.5.8: {} - require-like@0.1.2: {} + request-light@0.7.0: {} - requires-port@1.0.0: {} + require-directory@2.1.1: {} - resolve-alpn@1.2.1: {} + require-from-string@2.0.2: {} - resolve-from@4.0.0: {} + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 - resolve-pathname@3.0.0: {} + retext-latin@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + parse-latin: 7.0.0 + unified: 11.0.5 - resolve@1.22.8: + retext-smartypants@6.2.0: dependencies: - is-core-module: 2.13.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unist-util-visit: 5.0.0 - responselike@3.0.0: + retext-stringify@4.0.0: dependencies: - lowercase-keys: 3.0.0 + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unified: 11.0.5 - retry@0.13.1: {} + retext@9.0.0: + dependencies: + '@types/nlcst': 2.0.3 + retext-latin: 4.0.0 + retext-stringify: 4.0.0 + unified: 11.0.5 reusify@1.0.4: {} - rimraf@3.0.2: + rollup@4.24.3: dependencies: - glob: 7.2.3 - - rollup@2.79.1: + '@types/estree': 1.0.6 optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.24.3 + '@rollup/rollup-android-arm64': 4.24.3 + '@rollup/rollup-darwin-arm64': 4.24.3 + '@rollup/rollup-darwin-x64': 4.24.3 + '@rollup/rollup-freebsd-arm64': 4.24.3 + '@rollup/rollup-freebsd-x64': 4.24.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.24.3 + '@rollup/rollup-linux-arm-musleabihf': 4.24.3 + '@rollup/rollup-linux-arm64-gnu': 4.24.3 + '@rollup/rollup-linux-arm64-musl': 4.24.3 + '@rollup/rollup-linux-powerpc64le-gnu': 4.24.3 + '@rollup/rollup-linux-riscv64-gnu': 4.24.3 + '@rollup/rollup-linux-s390x-gnu': 4.24.3 + '@rollup/rollup-linux-x64-gnu': 4.24.3 + '@rollup/rollup-linux-x64-musl': 4.24.3 + '@rollup/rollup-win32-arm64-msvc': 4.24.3 + '@rollup/rollup-win32-ia32-msvc': 4.24.3 + '@rollup/rollup-win32-x64-msvc': 4.24.3 fsevents: 2.3.3 - rtl-detect@1.1.2: {} - - rtlcss@4.1.1: - dependencies: - escalade: 3.1.2 - picocolors: 1.0.1 - postcss: 8.4.38 - strip-json-comments: 3.1.1 - run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - safe-array-concat@1.1.2: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 - isarray: 2.0.5 - - safe-buffer@5.1.2: {} - - safe-buffer@5.2.1: {} - - safe-regex-test@1.0.3: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-regex: 1.1.4 - - safer-buffer@2.1.2: {} - - sax@1.3.0: {} - - scheduler@0.23.2: - dependencies: - loose-envify: 1.4.0 - - schema-utils@2.7.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - - schema-utils@3.3.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - - schema-utils@4.2.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 8.14.0 - ajv-formats: 2.1.1(ajv@8.14.0) - ajv-keywords: 5.1.0(ajv@8.14.0) - - search-insights@2.14.0: {} + sax@1.4.1: {} section-matter@1.0.0: dependencies: extend-shallow: 2.0.1 kind-of: 6.0.3 - select-hose@2.0.0: {} - - selfsigned@2.4.1: - dependencies: - '@types/node-forge': 1.3.11 - node-forge: 1.3.1 - - semver-diff@4.0.0: - dependencies: - semver: 7.6.2 - semver@6.3.1: {} - semver@7.6.2: {} - - send@0.18.0: - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color - - serialize-javascript@6.0.2: - dependencies: - randombytes: 2.1.0 - - serve-handler@6.1.5: - dependencies: - bytes: 3.0.0 - content-disposition: 0.5.2 - fast-url-parser: 1.1.3 - mime-types: 2.1.18 - minimatch: 3.1.2 - path-is-inside: 1.0.2 - path-to-regexp: 2.2.1 - range-parser: 1.2.0 - - serve-index@1.9.1: - dependencies: - accepts: 1.3.8 - batch: 0.6.1 - debug: 2.6.9 - escape-html: 1.0.3 - http-errors: 1.6.3 - mime-types: 2.1.35 - parseurl: 1.3.3 - transitivePeerDependencies: - - supports-color - - serve-static@1.15.0: - dependencies: - encodeurl: 1.0.2 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 0.18.0 - transitivePeerDependencies: - - supports-color - - set-function-length@1.2.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - - set-function-name@2.0.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.2 - - setprototypeof@1.1.0: {} - - setprototypeof@1.2.0: {} + semver@7.6.3: {} - shallow-clone@3.0.1: + sharp@0.33.5: dependencies: - kind-of: 6.0.3 - - shallowequal@1.1.0: {} - - shebang-command@2.0.0: - dependencies: - shebang-regex: 3.0.0 - - shebang-regex@3.0.0: {} - - shell-quote@1.8.1: {} - - shelljs@0.8.5: - dependencies: - glob: 7.2.3 - interpret: 1.4.0 - rechoir: 0.6.2 - - side-channel@1.0.6: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - object-inspect: 1.13.1 + color: 4.2.3 + detect-libc: 2.0.3 + semver: 7.6.3 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.33.5 + '@img/sharp-darwin-x64': 0.33.5 + '@img/sharp-libvips-darwin-arm64': 1.0.4 + '@img/sharp-libvips-darwin-x64': 1.0.4 + '@img/sharp-libvips-linux-arm': 1.0.5 + '@img/sharp-libvips-linux-arm64': 1.0.4 + '@img/sharp-libvips-linux-s390x': 1.0.4 + '@img/sharp-libvips-linux-x64': 1.0.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + '@img/sharp-linux-arm': 0.33.5 + '@img/sharp-linux-arm64': 0.33.5 + '@img/sharp-linux-s390x': 0.33.5 + '@img/sharp-linux-x64': 0.33.5 + '@img/sharp-linuxmusl-arm64': 0.33.5 + '@img/sharp-linuxmusl-x64': 0.33.5 + '@img/sharp-wasm32': 0.33.5 + '@img/sharp-win32-ia32': 0.33.5 + '@img/sharp-win32-x64': 0.33.5 + + shiki@1.22.2: + dependencies: + '@shikijs/core': 1.22.2 + '@shikijs/engine-javascript': 1.22.2 + '@shikijs/engine-oniguruma': 1.22.2 + '@shikijs/types': 1.22.2 + '@shikijs/vscode-textmate': 9.3.0 + '@types/hast': 3.0.4 - signal-exit@3.0.7: {} + signal-exit@4.1.0: {} - sirv@2.0.4: + simple-swizzle@0.2.2: dependencies: - '@polka/url': 1.0.0-next.25 - mrmime: 2.0.0 - totalist: 3.0.1 + is-arrayish: 0.3.2 sisteransi@1.0.5: {} - sitemap@7.1.2: + sitemap@8.0.0: dependencies: '@types/node': 17.0.45 '@types/sax': 1.2.7 arg: 5.0.2 - sax: 1.3.0 - - skin-tone@2.0.0: - dependencies: - unicode-emoji-modifier-base: 1.0.0 - - slash@3.0.0: {} + sax: 1.4.1 - slash@4.0.0: {} - - slash@5.1.0: {} - - smob@1.5.0: {} - - snake-case@3.0.4: - dependencies: - dot-case: 3.0.4 - tslib: 2.6.2 - - sockjs@0.3.24: - dependencies: - faye-websocket: 0.11.4 - uuid: 8.3.2 - websocket-driver: 0.7.4 - - sort-css-media-queries@2.2.0: {} - - source-map-js@1.2.0: {} - - source-map-support@0.5.21: - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 - - source-map@0.6.1: {} + source-map-js@1.2.1: {} source-map@0.7.4: {} - source-map@0.8.0-beta.0: - dependencies: - whatwg-url: 7.1.0 - - sourcemap-codec@1.4.8: {} - space-separated-tokens@2.0.2: {} - spdy-transport@3.0.0: - dependencies: - debug: 4.3.4 - detect-node: 2.1.0 - hpack.js: 2.1.6 - obuf: 1.1.2 - readable-stream: 3.6.2 - wbuf: 1.7.3 - transitivePeerDependencies: - - supports-color - - spdy@4.0.2: - dependencies: - debug: 4.3.4 - handle-thing: 2.0.1 - http-deceiver: 1.2.7 - select-hose: 2.0.0 - spdy-transport: 3.0.0 - transitivePeerDependencies: - - supports-color - sprintf-js@1.0.3: {} - srcset@4.0.0: {} - - statuses@1.5.0: {} - - statuses@2.0.1: {} + stdin-discarder@0.2.2: {} - std-env@3.7.0: {} + stream-replace-string@2.0.0: {} string-width@4.2.3: dependencies: @@ -10852,694 +4542,338 @@ snapshots: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@5.1.2: + string-width@7.2.0: dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 + emoji-regex: 10.4.0 + get-east-asian-width: 1.3.0 strip-ansi: 7.1.0 - string.prototype.matchall@4.0.11: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - get-intrinsic: 1.2.4 - gopd: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.7 - regexp.prototype.flags: 1.5.2 - set-function-name: 2.0.2 - side-channel: 1.0.6 - - string.prototype.trim@1.2.9: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 - - string.prototype.trimend@1.0.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - - string.prototype.trimstart@1.0.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - - string_decoder@1.1.1: - dependencies: - safe-buffer: 5.1.2 - - string_decoder@1.3.0: - dependencies: - safe-buffer: 5.2.1 - stringify-entities@4.0.4: dependencies: character-entities-html4: 2.1.0 character-entities-legacy: 3.0.0 - stringify-object@3.3.0: - dependencies: - get-own-enumerable-property-symbols: 3.0.2 - is-obj: 1.0.1 - is-regexp: 1.0.0 - strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 strip-bom-string@1.0.0: {} - strip-comments@2.0.1: {} - - strip-final-newline@2.0.0: {} - - strip-json-comments@2.0.1: {} - - strip-json-comments@3.1.1: {} + strip-bom@3.0.0: {} style-to-object@0.4.4: dependencies: inline-style-parser: 0.1.1 - style-to-object@1.0.6: - dependencies: - inline-style-parser: 0.2.3 - - stylehacks@6.1.1(postcss@8.4.38): - dependencies: - browserslist: 4.23.0 - postcss: 8.4.38 - postcss-selector-parser: 6.1.0 - - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - - supports-color@8.1.1: - dependencies: - has-flag: 4.0.0 - - supports-preserve-symlinks-flag@1.0.0: {} - - svg-parser@2.0.4: {} - - svgo@3.3.2: - dependencies: - '@trysound/sax': 0.2.0 - commander: 7.2.0 - css-select: 5.1.0 - css-tree: 2.3.1 - css-what: 6.1.0 - csso: 5.0.5 - picocolors: 1.0.1 - - tapable@1.1.3: {} - - tapable@2.2.1: {} - - temp-dir@2.0.0: {} - - tempy@0.6.0: - dependencies: - is-stream: 2.0.1 - temp-dir: 2.0.0 - type-fest: 0.16.0 - unique-string: 2.0.0 - - terser-webpack-plugin@5.3.10(webpack@5.91.0): + style-to-object@1.0.8: dependencies: - '@jridgewell/trace-mapping': 0.3.25 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.2 - terser: 5.31.0 - webpack: 5.91.0 - - terser@5.31.0: - dependencies: - '@jridgewell/source-map': 0.3.6 - acorn: 8.11.3 - commander: 2.20.3 - source-map-support: 0.5.21 - - text-table@0.2.0: {} + inline-style-parser: 0.2.4 - thunky@1.1.0: {} - - tiny-invariant@1.3.3: {} - - tiny-warning@1.0.3: {} - - to-fast-properties@2.0.0: {} + tinyexec@0.3.1: {} to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - toidentifier@1.0.1: {} - - totalist@3.0.1: {} - - tr46@1.0.1: - dependencies: - punycode: 2.3.1 - trim-lines@3.0.1: {} trough@2.2.0: {} - tslib@2.6.2: {} - - type-fest@0.16.0: {} - - type-fest@1.4.0: {} - - type-fest@2.19.0: {} - - type-is@1.6.18: - dependencies: - media-typer: 0.3.0 - mime-types: 2.1.35 - - typed-array-buffer@1.0.2: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-typed-array: 1.1.13 - - typed-array-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - - typed-array-byte-offset@1.0.2: - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - - typed-array-length@1.0.6: - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - possible-typed-array-names: 1.0.0 - - typedarray-to-buffer@3.1.5: - dependencies: - is-typedarray: 1.0.0 - - typescript@5.4.5: {} - - ua-parser-js@1.0.37: {} - - uc.micro@2.1.0: {} - - unbox-primitive@1.0.2: - dependencies: - call-bind: 1.0.7 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 + tsconfck@3.1.4(typescript@5.6.3): + optionalDependencies: + typescript: 5.6.3 - undici-types@5.26.5: {} + tslib@2.8.0: + optional: true - unicode-canonical-property-names-ecmascript@2.0.0: {} + type-fest@4.26.1: {} - unicode-emoji-modifier-base@1.0.0: {} + typesafe-path@0.2.2: {} - unicode-match-property-ecmascript@2.0.0: + typescript-auto-import-cache@0.3.5: dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.1.0 - - unicode-match-property-value-ecmascript@2.1.0: {} + semver: 7.6.3 - unicode-property-aliases-ecmascript@2.1.0: {} + typescript@5.6.3: {} - unicorn-magic@0.1.0: {} - - unified@11.0.4: + unified@11.0.5: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 bail: 2.0.2 devlop: 1.1.0 extend: 3.0.2 is-plain-obj: 4.1.0 trough: 2.2.0 - vfile: 6.0.1 + vfile: 6.0.3 - unique-string@2.0.0: + unist-util-find-after@5.0.0: dependencies: - crypto-random-string: 2.0.0 + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 - unique-string@3.0.0: + unist-util-is@6.0.0: dependencies: - crypto-random-string: 4.0.0 + '@types/unist': 3.0.3 - unist-util-is@6.0.0: + unist-util-modify-children@4.0.0: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 + array-iterate: 2.0.1 unist-util-position-from-estree@2.0.0: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 unist-util-position@5.0.0: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 unist-util-remove-position@5.0.0: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 unist-util-visit: 5.0.0 unist-util-stringify-position@4.0.0: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 + + unist-util-visit-children@3.0.0: + dependencies: + '@types/unist': 3.0.3 unist-util-visit-parents@6.0.1: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 unist-util-is: 6.0.0 unist-util-visit@5.0.0: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - universalify@2.0.1: {} - - unpipe@1.0.0: {} - - upath@1.2.0: {} - - update-browserslist-db@1.0.16(browserslist@4.23.0): - dependencies: - browserslist: 4.23.0 - escalade: 3.1.2 - picocolors: 1.0.1 - - update-notifier@6.0.2: + update-browserslist-db@1.1.1(browserslist@4.24.2): dependencies: - boxen: 7.1.1 - chalk: 5.3.0 - configstore: 6.0.0 - has-yarn: 3.0.0 - import-lazy: 4.0.0 - is-ci: 3.0.1 - is-installed-globally: 0.4.0 - is-npm: 6.0.0 - is-yarn-global: 0.4.1 - latest-version: 7.0.0 - pupa: 3.1.0 - semver: 7.6.2 - semver-diff: 4.0.0 - xdg-basedir: 5.1.0 - - uri-js@4.4.1: - dependencies: - punycode: 2.3.1 - - url-loader@4.1.1(file-loader@6.2.0(webpack@5.91.0))(webpack@5.91.0): - dependencies: - loader-utils: 2.0.4 - mime-types: 2.1.35 - schema-utils: 3.3.0 - webpack: 5.91.0 - optionalDependencies: - file-loader: 6.2.0(webpack@5.91.0) + browserslist: 4.24.2 + escalade: 3.2.0 + picocolors: 1.1.1 util-deprecate@1.0.2: {} - utila@0.4.0: {} - - utility-types@3.11.0: {} - - utils-merge@1.0.1: {} - - uuid@8.3.2: {} - - value-equal@1.0.1: {} - - vary@1.1.2: {} - - vfile-location@5.0.2: + vfile-location@5.0.3: dependencies: - '@types/unist': 3.0.2 - vfile: 6.0.1 + '@types/unist': 3.0.3 + vfile: 6.0.3 vfile-message@4.0.2: dependencies: - '@types/unist': 3.0.2 + '@types/unist': 3.0.3 unist-util-stringify-position: 4.0.0 - vfile@6.0.1: + vfile@6.0.3: dependencies: - '@types/unist': 3.0.2 - unist-util-stringify-position: 4.0.0 + '@types/unist': 3.0.3 vfile-message: 4.0.2 - watchpack@2.4.1: - dependencies: - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - - wbuf@1.7.3: + vite@5.4.10: dependencies: - minimalistic-assert: 1.0.1 + esbuild: 0.21.5 + postcss: 8.4.47 + rollup: 4.24.3 + optionalDependencies: + fsevents: 2.3.3 - web-namespaces@2.0.1: {} + vitefu@1.0.3(vite@5.4.10): + optionalDependencies: + vite: 5.4.10 - webidl-conversions@4.0.2: {} - - webpack-bundle-analyzer@4.10.2: - dependencies: - '@discoveryjs/json-ext': 0.5.7 - acorn: 8.11.3 - acorn-walk: 8.3.2 - commander: 7.2.0 - debounce: 1.2.1 - escape-string-regexp: 4.0.0 - gzip-size: 6.0.0 - html-escaper: 2.0.2 - opener: 1.5.2 - picocolors: 1.0.1 - sirv: 2.0.4 - ws: 7.5.10 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - webpack-dev-middleware@5.3.4(webpack@5.91.0): - dependencies: - colorette: 2.0.20 - memfs: 3.5.3 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.2.0 - webpack: 5.91.0 - - webpack-dev-server@4.15.2(webpack@5.91.0): - dependencies: - '@types/bonjour': 3.5.13 - '@types/connect-history-api-fallback': 1.5.4 - '@types/express': 4.17.21 - '@types/serve-index': 1.9.4 - '@types/serve-static': 1.15.7 - '@types/sockjs': 0.3.36 - '@types/ws': 8.5.10 - ansi-html-community: 0.0.8 - bonjour-service: 1.2.1 - chokidar: 3.6.0 - colorette: 2.0.20 - compression: 1.7.4 - connect-history-api-fallback: 2.0.0 - default-gateway: 6.0.3 - express: 4.19.2 - graceful-fs: 4.2.11 - html-entities: 2.5.2 - http-proxy-middleware: 2.0.6(@types/express@4.17.21) - ipaddr.js: 2.2.0 - launch-editor: 2.6.1 - open: 8.4.2 - p-retry: 4.6.2 - rimraf: 3.0.2 - schema-utils: 4.2.0 - selfsigned: 2.4.1 - serve-index: 1.9.1 - sockjs: 0.3.24 - spdy: 4.0.2 - webpack-dev-middleware: 5.3.4(webpack@5.91.0) - ws: 8.17.0 + volar-service-css@0.0.62(@volar/language-service@2.4.8): + dependencies: + vscode-css-languageservice: 6.3.1 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 optionalDependencies: - webpack: 5.91.0 - transitivePeerDependencies: - - bufferutil - - debug - - supports-color - - utf-8-validate - - webpack-merge@5.10.0: - dependencies: - clone-deep: 4.0.1 - flat: 5.0.2 - wildcard: 2.0.1 - - webpack-sources@3.2.3: {} - - webpack@5.91.0: - dependencies: - '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 - acorn: 8.11.3 - acorn-import-assertions: 1.9.0(acorn@8.11.3) - browserslist: 4.23.0 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.16.1 - es-module-lexer: 1.5.3 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(webpack@5.91.0) - watchpack: 2.4.1 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js + '@volar/language-service': 2.4.8 - webpackbar@5.0.2(webpack@5.91.0): + volar-service-emmet@0.0.62(@volar/language-service@2.4.8): dependencies: - chalk: 4.1.2 - consola: 2.15.3 - pretty-time: 1.1.0 - std-env: 3.7.0 - webpack: 5.91.0 + '@emmetio/css-parser': 0.4.0 + '@emmetio/html-matcher': 1.3.0 + '@vscode/emmet-helper': 2.9.3 + vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.8 - websocket-driver@0.7.4: + volar-service-html@0.0.62(@volar/language-service@2.4.8): dependencies: - http-parser-js: 0.5.8 - safe-buffer: 5.2.1 - websocket-extensions: 0.1.4 + vscode-html-languageservice: 5.3.1 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.8 - websocket-extensions@0.1.4: {} + volar-service-prettier@0.0.62(@volar/language-service@2.4.8): + dependencies: + vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.8 - whatwg-url@7.1.0: + volar-service-typescript-twoslash-queries@0.0.62(@volar/language-service@2.4.8): dependencies: - lodash.sortby: 4.7.0 - tr46: 1.0.1 - webidl-conversions: 4.0.2 + vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.8 - which-boxed-primitive@1.0.2: + volar-service-typescript@0.0.62(@volar/language-service@2.4.8): dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 + path-browserify: 1.0.1 + semver: 7.6.3 + typescript-auto-import-cache: 0.3.5 + vscode-languageserver-textdocument: 1.0.12 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 + optionalDependencies: + '@volar/language-service': 2.4.8 - which-typed-array@1.1.15: + volar-service-yaml@0.0.62(@volar/language-service@2.4.8): dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.2 + vscode-uri: 3.0.8 + yaml-language-server: 1.15.0 + optionalDependencies: + '@volar/language-service': 2.4.8 - which@1.3.1: + vscode-css-languageservice@6.3.1: dependencies: - isexe: 2.0.0 + '@vscode/l10n': 0.0.18 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-uri: 3.0.8 - which@2.0.2: + vscode-html-languageservice@5.3.1: dependencies: - isexe: 2.0.0 + '@vscode/l10n': 0.0.18 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-uri: 3.0.8 - widest-line@4.0.1: + vscode-json-languageservice@4.1.8: dependencies: - string-width: 5.1.2 + jsonc-parser: 3.3.1 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 - wildcard@2.0.1: {} + vscode-jsonrpc@6.0.0: {} - workbox-background-sync@7.1.0: - dependencies: - idb: 7.1.1 - workbox-core: 7.1.0 + vscode-jsonrpc@8.2.0: {} - workbox-broadcast-update@7.1.0: + vscode-languageserver-protocol@3.16.0: dependencies: - workbox-core: 7.1.0 + vscode-jsonrpc: 6.0.0 + vscode-languageserver-types: 3.16.0 - workbox-build@7.1.0: + vscode-languageserver-protocol@3.17.5: dependencies: - '@apideck/better-ajv-errors': 0.3.6(ajv@8.14.0) - '@babel/core': 7.24.6 - '@babel/preset-env': 7.24.6(@babel/core@7.24.6) - '@babel/runtime': 7.24.6 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.6)(rollup@2.79.1) - '@rollup/plugin-node-resolve': 15.2.3(rollup@2.79.1) - '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) - '@rollup/plugin-terser': 0.4.4(rollup@2.79.1) - '@surma/rollup-plugin-off-main-thread': 2.2.3 - ajv: 8.14.0 - common-tags: 1.8.2 - fast-json-stable-stringify: 2.1.0 - fs-extra: 9.1.0 - glob: 7.2.3 - lodash: 4.17.21 - pretty-bytes: 5.6.0 - rollup: 2.79.1 - source-map: 0.8.0-beta.0 - stringify-object: 3.3.0 - strip-comments: 2.0.1 - tempy: 0.6.0 - upath: 1.2.0 - workbox-background-sync: 7.1.0 - workbox-broadcast-update: 7.1.0 - workbox-cacheable-response: 7.1.0 - workbox-core: 7.1.0 - workbox-expiration: 7.1.0 - workbox-google-analytics: 7.1.0 - workbox-navigation-preload: 7.1.0 - workbox-precaching: 7.1.0 - workbox-range-requests: 7.1.0 - workbox-recipes: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 - workbox-streams: 7.1.0 - workbox-sw: 7.1.0 - workbox-window: 7.1.0 - transitivePeerDependencies: - - '@types/babel__core' - - supports-color + vscode-jsonrpc: 8.2.0 + vscode-languageserver-types: 3.17.5 - workbox-cacheable-response@7.1.0: - dependencies: - workbox-core: 7.1.0 + vscode-languageserver-textdocument@1.0.12: {} - workbox-core@7.1.0: {} + vscode-languageserver-types@3.16.0: {} - workbox-expiration@7.1.0: - dependencies: - idb: 7.1.1 - workbox-core: 7.1.0 + vscode-languageserver-types@3.17.5: {} - workbox-google-analytics@7.1.0: + vscode-languageserver@7.0.0: dependencies: - workbox-background-sync: 7.1.0 - workbox-core: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 + vscode-languageserver-protocol: 3.16.0 - workbox-navigation-preload@7.1.0: + vscode-languageserver@9.0.1: dependencies: - workbox-core: 7.1.0 + vscode-languageserver-protocol: 3.17.5 - workbox-precaching@7.1.0: - dependencies: - workbox-core: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 + vscode-nls@5.2.0: {} - workbox-range-requests@7.1.0: - dependencies: - workbox-core: 7.1.0 + vscode-uri@2.1.2: {} - workbox-recipes@7.1.0: - dependencies: - workbox-cacheable-response: 7.1.0 - workbox-core: 7.1.0 - workbox-expiration: 7.1.0 - workbox-precaching: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 + vscode-uri@3.0.8: {} - workbox-routing@7.1.0: - dependencies: - workbox-core: 7.1.0 + web-namespaces@2.0.1: {} - workbox-strategies@7.1.0: - dependencies: - workbox-core: 7.1.0 + which-pm-runs@1.1.0: {} - workbox-streams@7.1.0: + which-pm@3.0.0: dependencies: - workbox-core: 7.1.0 - workbox-routing: 7.1.0 + load-yaml-file: 0.2.0 - workbox-sw@7.1.0: {} + widest-line@5.0.0: + dependencies: + string-width: 7.2.0 - workbox-window@7.1.0: + wrap-ansi@7.0.0: dependencies: - '@types/trusted-types': 2.0.7 - workbox-core: 7.1.0 + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 - wrap-ansi@8.1.0: + wrap-ansi@9.0.0: dependencies: ansi-styles: 6.2.1 - string-width: 5.1.2 + string-width: 7.2.0 strip-ansi: 7.1.0 - wrappy@1.0.2: {} + xxhash-wasm@1.0.2: {} + + y18n@5.0.8: {} - write-file-atomic@3.0.3: + yallist@3.1.1: {} + + yaml-language-server@1.15.0: dependencies: - imurmurhash: 0.1.4 - is-typedarray: 1.0.0 - signal-exit: 3.0.7 - typedarray-to-buffer: 3.1.5 + ajv: 8.17.1 + lodash: 4.17.21 + request-light: 0.5.8 + vscode-json-languageservice: 4.1.8 + vscode-languageserver: 7.0.0 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 + yaml: 2.2.2 + optionalDependencies: + prettier: 2.8.7 - ws@7.5.10: {} + yaml@2.2.2: {} - ws@8.17.0: {} + yaml@2.6.0: {} - xdg-basedir@5.1.0: {} + yargs-parser@21.1.1: {} - xml-js@1.6.11: + yargs@17.7.2: dependencies: - sax: 1.3.0 + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 - yallist@3.1.1: {} + yocto-queue@1.1.1: {} - yaml@1.10.2: {} + zod-to-json-schema@3.23.5(zod@3.23.8): + dependencies: + zod: 3.23.8 - yocto-queue@0.1.0: {} + zod-to-ts@1.2.0(typescript@5.6.3)(zod@3.23.8): + dependencies: + typescript: 5.6.3 + zod: 3.23.8 - yocto-queue@1.0.0: {} + zod@3.23.8: {} zwitch@2.0.4: {} diff --git a/docs/public/favicon.svg b/docs/public/favicon.svg new file mode 100644 index 00000000000..cba5ac140a2 --- /dev/null +++ b/docs/public/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/sidebars.js b/docs/sidebars.js deleted file mode 100644 index 3592d971697..00000000000 --- a/docs/sidebars.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * Creating a sidebar enables you to: - - create an ordered group of docs - - render a sidebar for each doc of that group - - provide next/previous navigation - - The sidebars can be generated from the filesystem, or explicitly defined here. - - Create as many sidebars as you want. - */ - -module.exports = { - // By default, Docusaurus generates a sidebar from the docs folder structure - tutorialSidebar: [{type: 'autogenerated', dirName: '.'}], - - // But you can create a sidebar manually - /* - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', - items: ['hello'], - }, - ], - */ -}; diff --git a/docs/sidebarsCommunity.js b/docs/sidebarsCommunity.js deleted file mode 100644 index 0b862c9095c..00000000000 --- a/docs/sidebarsCommunity.js +++ /dev/null @@ -1,45 +0,0 @@ -/** - * Creating a sidebar enables you to: - - create an ordered group of docs - - render a sidebar for each doc of that group - - provide next/previous navigation - - The sidebars can be generated from the filesystem, or explicitly defined here. - - Create as many sidebars as you want. - */ - -module.exports = { - // By default, Docusaurus generates a sidebar from the docs folder structure - sidebar: [ - 'community', - 'changelog', - 'contributing', - 'code-of-conduct', - 'faq', - 'versions', - 'nightly', - 'privacypolicy', - { - type: 'link', - href: 'https://discord.linwood.dev', - label: 'Discord' - }, - { - type: 'link', - href: 'https://github.com/LinwoodDev/Flow', - label: 'GitHub' - } - ], - - // But you can create a sidebar manually - /* - tutorialSidebar: [ - { - type: 'category', - label: 'Tutorial', - items: ['hello'], - }, - ], - */ -}; \ No newline at end of file diff --git a/docs/src/assets/houston.webp b/docs/src/assets/houston.webp new file mode 100644 index 00000000000..930c164974a Binary files /dev/null and b/docs/src/assets/houston.webp differ diff --git a/docs/src/components/DownloadButton.tsx b/docs/src/components/DownloadButton.tsx deleted file mode 100644 index 4c8b7754595..00000000000 --- a/docs/src/components/DownloadButton.tsx +++ /dev/null @@ -1,84 +0,0 @@ -import Link from '@docusaurus/Link'; -import Translate from '@docusaurus/Translate'; -import clsx from 'clsx'; -import React from 'react' -import UAParser from 'ua-parser-js'; - -export function DownloadAppButton({ className }: { className?: string }) { - const [platform, setPlatform] = React.useState(''); - React.useEffect(() => { - const parser = new UAParser(); - const uaPlatform = parser.getOS().name; - // Test if it is a linux distro - if (['Raspbian', 'Debian', 'Ubuntu', 'Linux Mint', 'Fedora', 'Arch', 'CentOS', 'Red Hat', 'Manjaro'].includes(uaPlatform)) { - setPlatform('Linux'); - } else { - setPlatform(uaPlatform); - } - }, []); - return (
- Download -
    -
  • - {platform === 'Windows' && - - - Download for Windows - - - } - {platform === 'Linux' && - - - Download for Linux - - - } - {platform === 'Android' && - - - Download for Android - - - } -
  • -
  • - - - Open the web app - - -
  • -
  • - - - Downloads - - -
  • -
-
); -} - -export default function DownloadButton({ className, href, children, after }) { - function onClick() { - // Open thank you page after download - console.log('Downloading...') - setTimeout(() => { - window.location.href = after ?? "/downloads/thank-you"; - }, 500); - } - return ( - {children} - ); -} \ No newline at end of file diff --git a/docs/src/components/HomepageFeatures.module.css b/docs/src/components/HomepageFeatures.module.css deleted file mode 100644 index 9dcb82c3548..00000000000 --- a/docs/src/components/HomepageFeatures.module.css +++ /dev/null @@ -1,13 +0,0 @@ -/* stylelint-disable docusaurus/copyright-header */ - -.features { - display: flex; - align-items: center; - padding: 2rem 0; - width: 100%; -} - -.featureSvg { - height: 200px; - width: 200px; -} diff --git a/docs/src/components/HomepageFeatures.tsx b/docs/src/components/HomepageFeatures.tsx deleted file mode 100644 index 56c7b46259a..00000000000 --- a/docs/src/components/HomepageFeatures.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import React from 'react'; -import clsx from 'clsx'; -import styles from './HomepageFeatures.module.css'; -import Translate from '@docusaurus/Translate'; - -const FeatureList = [ - { - title: (Time management), - Svg: require('../../static/img/undraw_time_management_30iu.svg').default, - description: ( - - Manage the time efficiency and automate it. - - ), - }, - { - title: (Event management), - Svg: require('../../static/img/undraw_Schedule_re_2vro.svg').default, - description: ( - - Schedule events, assign users to it and give tasks to them - - ), - }, - { - title: (Your data), - Svg: require('../../static/img/undraw_personal_data_29co.svg').default, - description: ( - - Everyone can create their own server and have your data on it. - - ), - }, - { - title: (Open source), - Svg: require('../../static/img/undraw_open_source_1qxw.svg').default, - description: ( - - The app and the server are all open source. Everyone can contribute! - - ), - }, -]; - -function Feature({Svg, title, description}) { - return ( -
-
- -
-
-

{title}

-

{description}

-
-
- ); -} - -export default function HomepageFeatures() { - return ( -
-
-
- {FeatureList.map((props, idx) => ( - - ))} -
-
-
- ); -} diff --git a/docs/community/changelog.md b/docs/src/content/community/changelog.md similarity index 100% rename from docs/community/changelog.md rename to docs/src/content/community/changelog.md diff --git a/docs/community/code-of-conduct.md b/docs/src/content/community/code-of-conduct.md similarity index 100% rename from docs/community/code-of-conduct.md rename to docs/src/content/community/code-of-conduct.md diff --git a/docs/community/contributing.md b/docs/src/content/community/contributing.md similarity index 100% rename from docs/community/contributing.md rename to docs/src/content/community/contributing.md diff --git a/docs/community/downloads/_category_.json b/docs/src/content/community/downloads/_category_.json similarity index 100% rename from docs/community/downloads/_category_.json rename to docs/src/content/community/downloads/_category_.json diff --git a/docs/community/downloads/android.md b/docs/src/content/community/downloads/android.md similarity index 100% rename from docs/community/downloads/android.md rename to docs/src/content/community/downloads/android.md diff --git a/docs/community/downloads/build-your-own.md b/docs/src/content/community/downloads/build-your-own.md similarity index 100% rename from docs/community/downloads/build-your-own.md rename to docs/src/content/community/downloads/build-your-own.md diff --git a/docs/community/downloads/download.md b/docs/src/content/community/downloads/download.md similarity index 100% rename from docs/community/downloads/download.md rename to docs/src/content/community/downloads/download.md diff --git a/docs/community/downloads/linux.md b/docs/src/content/community/downloads/linux.md similarity index 100% rename from docs/community/downloads/linux.md rename to docs/src/content/community/downloads/linux.md diff --git a/docs/community/downloads/macos.md b/docs/src/content/community/downloads/macos.md similarity index 100% rename from docs/community/downloads/macos.md rename to docs/src/content/community/downloads/macos.md diff --git a/docs/community/downloads/post-windows.md b/docs/src/content/community/downloads/post-windows.md similarity index 100% rename from docs/community/downloads/post-windows.md rename to docs/src/content/community/downloads/post-windows.md diff --git a/docs/community/downloads/selfhosting.md b/docs/src/content/community/downloads/selfhosting.md similarity index 100% rename from docs/community/downloads/selfhosting.md rename to docs/src/content/community/downloads/selfhosting.md diff --git a/docs/community/downloads/thank-you.md b/docs/src/content/community/downloads/thank-you.md similarity index 100% rename from docs/community/downloads/thank-you.md rename to docs/src/content/community/downloads/thank-you.md diff --git a/docs/community/downloads/web.md b/docs/src/content/community/downloads/web.md similarity index 100% rename from docs/community/downloads/web.md rename to docs/src/content/community/downloads/web.md diff --git a/docs/community/downloads/windows.md b/docs/src/content/community/downloads/windows.md similarity index 100% rename from docs/community/downloads/windows.md rename to docs/src/content/community/downloads/windows.md diff --git a/docs/community/faq.md b/docs/src/content/community/faq.md similarity index 100% rename from docs/community/faq.md rename to docs/src/content/community/faq.md diff --git a/docs/community/intro.md b/docs/src/content/community/intro.md similarity index 100% rename from docs/community/intro.md rename to docs/src/content/community/intro.md diff --git a/docs/community/nightly.md b/docs/src/content/community/nightly.md similarity index 100% rename from docs/community/nightly.md rename to docs/src/content/community/nightly.md diff --git a/docs/community/privacypolicy.md b/docs/src/content/community/privacypolicy.md similarity index 100% rename from docs/community/privacypolicy.md rename to docs/src/content/community/privacypolicy.md diff --git a/docs/community/versions.md b/docs/src/content/community/versions.md similarity index 100% rename from docs/community/versions.md rename to docs/src/content/community/versions.md diff --git a/docs/src/content/config.ts b/docs/src/content/config.ts new file mode 100644 index 00000000000..45f60b01542 --- /dev/null +++ b/docs/src/content/config.ts @@ -0,0 +1,6 @@ +import { defineCollection } from 'astro:content'; +import { docsSchema } from '@astrojs/starlight/schema'; + +export const collections = { + docs: defineCollection({ schema: docsSchema() }), +}; diff --git a/docs/docs/event.md b/docs/src/content/docs/event.md similarity index 100% rename from docs/docs/event.md rename to docs/src/content/docs/event.md diff --git a/docs/docs/intro.md b/docs/src/content/docs/intro.md similarity index 100% rename from docs/docs/intro.md rename to docs/src/content/docs/intro.md diff --git a/docs/docs/server/errors.md b/docs/src/content/docs/server/errors.md similarity index 100% rename from docs/docs/server/errors.md rename to docs/src/content/docs/server/errors.md diff --git a/docs/docs/todo.md b/docs/src/content/docs/todo.md similarity index 100% rename from docs/docs/todo.md rename to docs/src/content/docs/todo.md diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css deleted file mode 100644 index 8e08342e5c0..00000000000 --- a/docs/src/css/custom.css +++ /dev/null @@ -1,456 +0,0 @@ -/* stylelint-disable docusaurus/copyright-header */ -/** - * Any CSS included here will be global. The classic template - * bundles Infima by default. Infima is a CSS framework designed to - * work well for content-centric websites. - */ - - @font-face { - font-family: "Comfortaa"; - font-weight: 300; - font-style: normal; - src: url("/fonts/Comfortaa-Light.ttf") format("truetype"); - } - - @font-face { - font-family: "Comfortaa"; - font-weight: 400; - font-style: normal; - src: url("/fonts/Comfortaa-Regular.ttf") format("truetype"); - } - - @font-face { - font-family: "Comfortaa"; - font-weight: 500; - font-style: normal; - src: url("/fonts/Comfortaa-Medium.ttf") format("truetype"); - } - - @font-face { - font-family: "Comfortaa"; - font-weight: 600; - font-style: normal; - src: url("/fonts/Comfortaa-SemiBold.ttf") format("truetype"); - } - - @font-face { - font-family: "Comfortaa"; - font-weight: 700; - font-style: normal; - src: url("/fonts/Comfortaa-Bold.ttf") format("truetype"); - } - - /* You can override the default Infima variables here. */ - :root { - --ifm-link-hover-decoration: none; - --ifm-link-hover-color: var(--ifm-color-emphasis-900); - --ifm-color-primary: #7c4dff; - --ifm-color-primary-dark: #642cff; - --ifm-color-primary-darker: #571bff; - --ifm-color-primary-darkest: #3d00e8; - --ifm-color-primary-light: #946eff; - --ifm-color-primary-lighter: #a17fff; - --ifm-color-primary-lightest: #c5b1ff; - --ifm-code-font-size: 95%; - --ifm-font-family-base: "Comfortaa", sans-serif; - --ifm-menu-color-background-active: var(--ifm-color-primary-darkest); - --ifm-menu-link-padding-vertical: 0.75rem; - --ifm-menu-color-active: var(--ifm-color-gray-100); - --custom-border-radius: 8px; - --custom-border-radius-md: 12px; - --ifm-code-border-radius: var(--custom-border-radius); - --ifm-button-border-radius: var(--custom-border-radius); - --ifm-font-weight-bold: 500; - scroll-behavior: smooth; - } - - img { - border-radius: 12px; - } - - .DocSearch-Button { - border-radius: var(--custom-border-radius-md) !important; - } - .menu__list-item-collapsible { - --ifm-menu-color-active: var(--ifm-color-emphasis-900); - } - .menu__list-item-collapsible--active { - --ifm-menu-color-active: var(--ifm-color-gray-100); - } - .footer { - --ifm-footer-background-color: var(--ifm-color-emphasis-900); - --ifm-footer-link-color: var(--ifm-color-emphasis-700); - } - .footer--dark { - --ifm-footer-title-color: var(--ifm-color-primary-darkest); - --ifm-footer-background-color: var(--ifm-color-emphasis-100); - --ifm-footer-color: inherit; - } - .navbar__item { - margin: 0; - padding: 0; - } - .navbar__link { - border-radius: 0.25rem; - padding: 0.4rem 0.8rem; - margin: 0.25rem; - transition: background 0.2s ease-in-out; - display: flex; - align-items: center; - --ifm-navbar-link-hover-color: var(--ifm-color-emphasis-900); - } - @media (max-width: 996px) { - .navbar__link { - display: none; - } - } - .navbar__link:hover { - background: var(--ifm-color-emphasis-300); - } - .navbar__link--active { - font-weight: bold; - background: var(--ifm-color-primary-dark); - color: var(--ifm-color-white); - } - .navbar__link--active:hover { - background: var(--ifm-color-primary-darkest); - color: var(--ifm-color-white); - } - .docusaurus-highlight-code-line { - background-color: rgb(72, 77, 91); - display: block; - margin: 0 calc(-1 * var(--ifm-pre-padding)); - padding: 0 var(--ifm-pre-padding); - } - - html[data-theme="light"] .DocSearch { - /* --docsearch-primary-color: var(--ifm-color-primary); */ - /* --docsearch-text-color: var(--ifm-font-color-base); */ - --docsearch-muted-color: var(--ifm-color-secondary-darkest); - --docsearch-container-background: rgba(94, 100, 112, 0.7); - /* Modal */ - --docsearch-modal-background: var(--ifm-color-secondary-lighter); - /* Search box */ - --docsearch-searchbox-background: var(--ifm-color-secondary); - --docsearch-searchbox-focus-background: var(--ifm-color-white); - /* Hit */ - --docsearch-hit-color: var(--ifm-font-color-base); - --docsearch-hit-active-color: var(--ifm-color-white); - --docsearch-hit-background: var(--ifm-color-white); - /* Footer */ - --docsearch-footer-background: var(--ifm-color-white); - } - - html[data-theme="dark"] .DocSearch { - --docsearch-text-color: var(--ifm-font-color-base); - --docsearch-muted-color: var(--ifm-color-secondary-darkest); - --docsearch-container-background: rgba(47, 55, 69, 0.7); - /* Modal */ - --docsearch-modal-background: var(--ifm-background-color); - /* Search box */ - --docsearch-searchbox-background: var(--ifm-background-color); - --docsearch-searchbox-focus-background: var(--ifm-color-black); - /* Hit */ - --docsearch-hit-color: var(--ifm-font-color-base); - --docsearch-hit-active-color: var(--ifm-color-white); - --docsearch-hit-background: var(--ifm-color-emphasis-100); - /* Footer */ - --docsearch-footer-background: var(--ifm-background-surface-color); - --docsearch-key-gradient: linear-gradient( - -26.5deg, - var(--ifm-color-emphasis-200) 0%, - var(--ifm-color-emphasis-100) 100% - ); - } - - .DocSearch-Button { - border-radius: 10px; - } - - .dropdown__link { - padding: 0.5rem 1rem; - display: flex; - align-items: center; - } - .dropdown__link p { - margin: 0; - } - .button p { - margin: 0; - } - - .menu__list-item-collapsible { - text-transform: uppercase; - font-weight: bold; - padding: 0.5rem 0rem; - } - .menu__list-item-collapsible--active { - background-color: var(--ifm-color-primary-dark); - color: var(--ifm-color-white); - } - .menu__list-item-collapsible--active:hover { - background-color: var(--ifm-color-primary-darkest); - color: var(--ifm-color-white); - } - - .menu__link--active:not(.menu__link--sublist) { - background-color: var(--ifm-color-primary-dark); - font-weight: bold; - transition: background 0.2s ease-in-out; - } - .menu__link--active:not(.menu__link--sublist):hover { - background-color: var(--ifm-color-primary-darkest); - } - - /* -- Checkbox -- */ - .checkbox { - display: block; - position: relative; - padding-left: 35px; - margin-bottom: 12px; - cursor: pointer; - font-size: 22px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - } - - /* Hide the browser's default checkbox */ - .checkbox input { - position: absolute; - opacity: 0; - cursor: pointer; - height: 0; - width: 0; - } - - /* Create a custom checkbox */ - .checkbox-checkmark { - position: absolute; - top: 50%; - transform: translateY(-50%); - left: 0; - height: 25px; - width: 25px; - background-color: var(--ifm-color-emphasis-200); - } - - /* On mouse-over, add a grey background color */ - .checkbox:hover input ~ .checkbox-checkmark { - background-color: var(--ifm-color-emphasis-300); - } - - /* When the checkbox is checked, add a blue background */ - .checkbox input:checked ~ .checkbox-checkmark { - background-color: var(--ifm-color-primary); - } - - /* Create the checkmark/indicator (hidden when not checked) */ - .checkbox-checkmark:after { - content: ""; - position: absolute; - display: none; - } - - /* Show the checkmark when checked */ - .checkbox input:checked ~ .checkbox-checkmark:after { - display: block; - } - - /* Style the checkmark/indicator */ - .checkbox .checkbox-checkmark:after { - left: 9px; - top: 5px; - width: 5px; - height: 10px; - border: solid white; - border-width: 0 3px 3px 0; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); - } - - .input { - display: block; - width: 100%; - flex: 1; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: var(--ifm-font-color-base); - background-color: var(--ifm-background-color); - background-clip: padding-box; - border: 1px solid var(--ifm-color-primary); - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - margin: 0.5rem 1rem; - } - .input:focus { - outline: none; - border-color: var(--ifm-color-primary); - } - .input-group { - display: flex; - flex-wrap: wrap; - align-items: center; - width: 100%; - } - - .icon-button { - display: inline-flex; - align-items: center; - } - .icon-button svg { - fill: var(--ifm-button-color); - stroke: var(--ifm-button-color) 1em; - width: 1.5rem; - height: 1.5rem; - margin-right: 0.5rem; - } - /* Hover */ - .icon-button:hover svg { - fill: var(--ifm-link-hover-color); - stroke: var(--ifm-link-hover-color); - } - - .grid-button:hover svg { - fill: var(--ifm-link-hover-color); - stroke: var(--ifm-link-hover-color) 1em; - } - - .button { - --ifm-link-hover-color: var(--ifm-button-color); - border-radius: 0.75rem; - } - .dropdown > .button:hover { - outline: var(--ifm-button-background-color) solid 2px; - } - - :where(.button--windows) { - --ifm-button-background-color: #0078d6; - --ifm-button-border-color: #0078d6; - } - - :where(.button--linux) { - --ifm-button-background-color: #fcc624; - --ifm-button-border-color: #fcc624; - } - :where(.button--android) { - --ifm-button-background-color: #3ddc84; - --ifm-button-border-color: #3ddc84; - } - :where(.button--pwa) { - --ifm-button-background-color: #5a0fc8; - --ifm-button-border-color: #5a0fc8; - } - :where(.button--macos) { - --ifm-button-background-color: #000000; - --ifm-button-border-color: #000000; - } - - .text-center { - text-align: center; - } - - .flex-center { - justify-content: center; - } - - ::-webkit-scrollbar-thumb { - background-color: var(--ifm-color-emphasis-200); - border-radius: 8px; - opacity: 0.5; - } - - ::-webkit-scrollbar { - width: 0.6rem; - } - - ::-webkit-scrollbar-track { - background-color: var(--ifm-background-surface-color); - } - - ::-webkit-scrollbar-thumb:hover { - background-color: var(--ifm-color-primary-darkest); - } - - html { - scrollbar-color: var(--ifm-color-primary-darkest) - var(--ifm-color-emphasis-200); - } - - .grid { - display: flex; - flex-wrap: wrap; - align-items: stretch; - justify-content: center; - gap: 1rem; - } - .grid-button { - background-color: var(--ifm-button-background-color); - color: var(--ifm-button-color); - padding: 0.5rem 1rem; - border-radius: 0.75rem; - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-between; - text-align: center; - gap: 1rem; - margin: 0.5rem; - transition: background-color 0.25s ease-in-out; - } - .grid-button p { - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-between; - gap: 1rem; - margin: 0; - } - .button--panel { - background-color: transparent; - --ifm-button-color: var(--ifm-color-emphasis-900); - outline: var(--ifm-button-border-color) solid 4px; - } - .button--panel:hover { - background-color: var(--ifm-button-background-color); - --ifm-link-hover-color: var(--ifm-color-emphasis-100); - } - .grid-button svg { - fill: var(--ifm-button-color); - stroke: var(--ifm-button-color) 1em; - width: 5em; - } - - main .clean-btn, - .navbar-sidebar__back { - color: var(--ifm-color-gray-100); - } - - .table-of-contents__link { - color: var(--ifm-color-gray-100); - } - - .table-of-contents__link:hover { - color: var(--ifm-color-gray-500); - } - - .vertical-center { - display: flex; - flex-direction: column; - justify-content: center; - } - - .text-large { - font-size: 2rem; - } - - @media (max-width: 996px) { - .text-large { - font-size: 1.25rem; - } - } \ No newline at end of file diff --git a/docs/src/env.d.ts b/docs/src/env.d.ts new file mode 100644 index 00000000000..acef35f175a --- /dev/null +++ b/docs/src/env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css deleted file mode 100644 index 09c5875f481..00000000000 --- a/docs/src/pages/index.module.css +++ /dev/null @@ -1,44 +0,0 @@ -/* stylelint-disable docusaurus/copyright-header */ -/** - * CSS files with the .module.css suffix will be treated as CSS modules - * and scoped locally. - */ - -.heroBanner { - padding: 4rem 0; - position: relative; -} - -@media screen and (max-width: 966px) { - .heroBanner { - padding: 2rem; - } -} - -.buttons { - display: flex; - align-items: center; - justify-content: center; -} - -.indexCtas { - display: flex; - flex-wrap: wrap; -} - -.screenshot { - width: 100%; - max-width: 50em; - margin: 5em auto; - text-align: center; - display: block; -} - -.button { - margin: 10px 8px; -} -.center { - display: flex; - flex-direction: column; - justify-content: center; -} \ No newline at end of file diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx deleted file mode 100644 index 0b696110c9d..00000000000 --- a/docs/src/pages/index.tsx +++ /dev/null @@ -1,69 +0,0 @@ -import React from 'react'; -import clsx from 'clsx'; -import Layout from '@theme/Layout'; -import Link from '@docusaurus/Link'; -import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; -import styles from './index.module.css'; -import HomepageFeatures from "../components/HomepageFeatures"; -import Translate from '@docusaurus/Translate'; -import "animate.css/animate.min.css"; -import UAParser from 'ua-parser-js'; -import { useDocsVersionCandidates } from '@docusaurus/theme-common/internal'; -import { AnimationOnScroll } from 'react-animation-on-scroll'; -import { DownloadAppButton } from '../components/DownloadButton'; - -function HomepageHeader({ - docsPluginId }) { - const { siteConfig } = useDocusaurusContext(); - const version = useDocsVersionCandidates(docsPluginId)[0]; - return ( -
-
-
-
-

- {siteConfig.title} -

-

- {siteConfig.tagline} -

-
- - - - - - - Getting started - - - -
-
-
- Screenshot -
-
-
-
- ); -} - -export default function Home({ docsPluginId }) { - const { siteConfig } = useDocusaurusContext(); - return ( - -
- - -
-
- ); -} diff --git a/docs/src/theme/MDXComponents.js b/docs/src/theme/MDXComponents.js deleted file mode 100644 index aa559e25b4e..00000000000 --- a/docs/src/theme/MDXComponents.js +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react'; -// Import the original mapper -import MDXComponents from '@theme-original/MDXComponents'; -import Link from '@docusaurus/Link'; -import DownloadButton from '@site/src/components/DownloadButton'; - -export default { - // Re-use the default mapping - ...MDXComponents, - Link, - DownloadButton, -}; \ No newline at end of file diff --git a/docs/static/.nojekyll b/docs/static/.nojekyll deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/docs/static/CNAME b/docs/static/CNAME deleted file mode 100644 index eb0bc1446d4..00000000000 --- a/docs/static/CNAME +++ /dev/null @@ -1 +0,0 @@ -docs.flow.linwood.dev diff --git a/docs/static/Raleway-LICENSE.txt b/docs/static/Raleway-LICENSE.txt deleted file mode 100644 index 24072b5f1a7..00000000000 --- a/docs/static/Raleway-LICENSE.txt +++ /dev/null @@ -1,93 +0,0 @@ -Copyright 2010 The Raleway Project Authors (impallari@gmail.com), with Reserved Font Name "Raleway". - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/docs/static/Raleway.ttf b/docs/static/Raleway.ttf deleted file mode 100644 index d57fecc1fd1..00000000000 Binary files a/docs/static/Raleway.ttf and /dev/null differ diff --git a/docs/static/fonts/Comfortaa-Bold.ttf b/docs/static/fonts/Comfortaa-Bold.ttf deleted file mode 100644 index bf6aff455d7..00000000000 Binary files a/docs/static/fonts/Comfortaa-Bold.ttf and /dev/null differ diff --git a/docs/static/fonts/Comfortaa-LICENSE.txt b/docs/static/fonts/Comfortaa-LICENSE.txt deleted file mode 100644 index d0b83feb33b..00000000000 --- a/docs/static/fonts/Comfortaa-LICENSE.txt +++ /dev/null @@ -1,93 +0,0 @@ -Copyright 2011 The Comfortaa Project Authors (https://github.com/alexeiva/comfortaa), with Reserved Font Name "Comfortaa". - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/docs/static/fonts/Comfortaa-Light.ttf b/docs/static/fonts/Comfortaa-Light.ttf deleted file mode 100644 index a99c563f23f..00000000000 Binary files a/docs/static/fonts/Comfortaa-Light.ttf and /dev/null differ diff --git a/docs/static/fonts/Comfortaa-Medium.ttf b/docs/static/fonts/Comfortaa-Medium.ttf deleted file mode 100644 index 7db7f74a8d6..00000000000 Binary files a/docs/static/fonts/Comfortaa-Medium.ttf and /dev/null differ diff --git a/docs/static/fonts/Comfortaa-Regular.ttf b/docs/static/fonts/Comfortaa-Regular.ttf deleted file mode 100644 index 77d2e6ee075..00000000000 Binary files a/docs/static/fonts/Comfortaa-Regular.ttf and /dev/null differ diff --git a/docs/static/fonts/Comfortaa-SemiBold.ttf b/docs/static/fonts/Comfortaa-SemiBold.ttf deleted file mode 100644 index 5249cff41ad..00000000000 Binary files a/docs/static/fonts/Comfortaa-SemiBold.ttf and /dev/null differ diff --git a/docs/static/img/favicon.ico b/docs/static/img/favicon.ico deleted file mode 100644 index 82d924620cb..00000000000 Binary files a/docs/static/img/favicon.ico and /dev/null differ diff --git a/docs/static/img/logo.svg b/docs/static/img/logo.svg deleted file mode 100644 index aa5a82884fe..00000000000 --- a/docs/static/img/logo.svg +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/main.png b/docs/static/img/main.png deleted file mode 100644 index fe9826e95ac..00000000000 Binary files a/docs/static/img/main.png and /dev/null differ diff --git a/docs/static/img/powered-by-vercel.svg b/docs/static/img/powered-by-vercel.svg deleted file mode 100644 index 1e7f91c8ad1..00000000000 --- a/docs/static/img/powered-by-vercel.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/docs/static/img/smart-screen-more-info.png b/docs/static/img/smart-screen-more-info.png deleted file mode 100644 index 267641a08ec..00000000000 Binary files a/docs/static/img/smart-screen-more-info.png and /dev/null differ diff --git a/docs/static/img/smart-screen.png b/docs/static/img/smart-screen.png deleted file mode 100644 index 169b605b74d..00000000000 Binary files a/docs/static/img/smart-screen.png and /dev/null differ diff --git a/docs/static/img/undraw_Schedule_re_2vro.svg b/docs/static/img/undraw_Schedule_re_2vro.svg deleted file mode 100644 index 71d528c1a73..00000000000 --- a/docs/static/img/undraw_Schedule_re_2vro.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/static/img/undraw_open_source_1qxw.svg b/docs/static/img/undraw_open_source_1qxw.svg deleted file mode 100644 index e62f6d3b84a..00000000000 --- a/docs/static/img/undraw_open_source_1qxw.svg +++ /dev/null @@ -1 +0,0 @@ -open source \ No newline at end of file diff --git a/docs/static/img/undraw_personal_data_29co.svg b/docs/static/img/undraw_personal_data_29co.svg deleted file mode 100644 index 6d3325a80ba..00000000000 --- a/docs/static/img/undraw_personal_data_29co.svg +++ /dev/null @@ -1 +0,0 @@ -personal data \ No newline at end of file diff --git a/docs/static/img/undraw_teamwork_hpdk.svg b/docs/static/img/undraw_teamwork_hpdk.svg deleted file mode 100644 index 6400afa7d0b..00000000000 --- a/docs/static/img/undraw_teamwork_hpdk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/static/img/undraw_time_management_30iu.svg b/docs/static/img/undraw_time_management_30iu.svg deleted file mode 100644 index 91ea2ef2822..00000000000 --- a/docs/static/img/undraw_time_management_30iu.svg +++ /dev/null @@ -1 +0,0 @@ -time management \ No newline at end of file diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 8c1d50e4e46..bcbf8b50906 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -1,12 +1,3 @@ { - "extends": "@docusaurus/tsconfig", - "compilerOptions": { - "moduleResolution": "node", - "baseUrl": ".", - "paths": { - "@/*": ["src/*"], - "@docusaurus/theme-common/internal": ["node_modules/@docusaurus/theme-common/src/internal.ts"] - } - }, - "include": ["./src/**/*.ts","./src/**/*.tsx", "src/theme/MDXComponents.js"] + "extends": "astro/tsconfigs/strict" } diff --git a/docs/vercel.json b/docs/vercel.json deleted file mode 100644 index 38ea27fed5f..00000000000 --- a/docs/vercel.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://openapi.vercel.sh/vercel.json", - "github": { - "silent": true - } -} \ No newline at end of file diff --git a/tools/pubspec.lock b/tools/pubspec.lock index 3dad6134b45..f2f85248171 100644 --- a/tools/pubspec.lock +++ b/tools/pubspec.lock @@ -5,26 +5,26 @@ packages: dependency: "direct main" description: name: args - sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a" + sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6 url: "https://pub.dev" source: hosted - version: "2.5.0" + version: "2.6.0" clock: dependency: transitive description: name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.1.2" collection: dependency: transitive description: name: collection - sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" url: "https://pub.dev" source: hosted - version: "1.18.0" + version: "1.19.1" intl: dependency: "direct main" description: @@ -45,18 +45,18 @@ packages: dependency: transitive description: name: meta - sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 + sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c url: "https://pub.dev" source: hosted - version: "1.15.0" + version: "1.16.0" path: dependency: transitive description: name: path - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" url: "https://pub.dev" source: hosted - version: "1.9.0" + version: "1.9.1" source_span: dependency: transitive description: @@ -69,10 +69,10 @@ packages: dependency: transitive description: name: string_scanner - sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + sha256: "0bd04f5bb74fcd6ff0606a888a30e917af9bd52820b178eaa464beb11dca84b6" url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.4.0" term_glyph: dependency: transitive description: @@ -90,4 +90,4 @@ packages: source: hosted version: "3.1.2" sdks: - dart: ">=3.1.0 <4.0.0" + dart: ">=3.4.0 <4.0.0"